Re: cvs commit: xml-soap/java/src/org/apache/soap/encoding/soapencParameterSerializer.java

2002-07-22 Thread Scott Nichol
Bhushan, The change has been committed to CVS. Thanks for bringing this to my attention. Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 22, 2002 5:20 PM Subject: cvs commit: xml-soap/java/src/org/apache/soap/encoding/soapenc Param

cvs commit: xml-soap/java/src/org/apache/soap/encoding/soapenc ParameterSerializer.java

2002-07-22 Thread snichol
snichol 2002/07/22 14:20:39 Modified:java/src/org/apache/soap/encoding/soapenc ParameterSerializer.java Log: Use just the local part of the XML element name as the parameter name and for lookups, rather than the full tag name. Revision ChangesPath

Re: More on QName problem

2002-07-22 Thread Scott Nichol
I will make the fix within the next few days. Scott Nichol - Original Message - From: "Bhushan Khanal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 22, 2002 2:49 PM Subject: RE: More on QName problem > Thanks, I will look at these. Are we in agreement that the getTagN

RE: Questions on new SOAP services

2002-07-22 Thread Chris Francis
You can also set the directory in which deployedservices.ds is found by setting up a soapconfig.xml file as follows: (maybe this was the file you were thinking of below? > - From the source code I found that the list is stored as "myconfig.xml" > but I could not fi

RE: More on QName problem

2002-07-22 Thread Bhushan Khanal
Thanks, I will look at these. Are we in agreement that the getTagName() should be replaced with getLocalName()? If so what is the best way to have this fixed? Thanks again, Bhushan -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:47 AM To:

Re: More on QName problem

2002-07-22 Thread Scott Nichol
Also, http://www.apache.org/~rubys/ApacheClientInterop.html has wire dumps of messages from interop tests using the Axis client against a variety of servers. This helps you see in practice how people are constructing messages. Scott Nichol - Original Message - From: "Bhushan Khanal" <[E

Re: More on QName problem

2002-07-22 Thread Scott Nichol
I think the best thing is to refer you to the spec at http://www.w3.org/TR/SOAP/. This shows many valid messages, and the section on SOAP Encoding gets into how to specify data types for parameters. I believe that your messages are valid. If you supply WSDL for your SOAP services, those message

RE: More on QName problem

2002-07-22 Thread Bhushan Khanal
Just to give you some background, I using my own soap implementation to create the message. I trying to write a non servlet container to implement SOAP services and I was creating mock messages that represented incoming requests. In addition, I am not using Tomcat or Axis(have my own http and tcp

Re: Questions on new SOAP services

2002-07-22 Thread Scott Nichol
The deployed services can be found in deployedservices.ds. This is in the root of the web app, e.g. for me it is j:\jakarta-tomcat-4.0.1\webapps\soap\deployedservices.ds. For deployment, you just drop soap.war in Tomcat's webapps directory, which for me is j:\jakarta-tomcat-4.0.1. Tomcat will u

cvs commit: xml-soap/java/src/org/apache/soap/rpc Call.java

2002-07-22 Thread sanjiva
sanjiva 2002/07/22 10:59:06 Modified:java/src/org/apache/soap/rpc Call.java Log: made it so that a parser is created only when needed. The Call() object was creating a parser even when the Call was being used on the server side. Revision ChangesPath 1.15 +6 -1

Re: Anything other than Dom?

2002-07-22 Thread Scott Nichol
I still don't quite understand your question, probably because I do not understand what it is you want to do, but let me throw out a few thoughts. Since your message is on this list, I assume your question relates to SOAP and not XML in general. If you want to use SOAP to do remote procedure cal

RE: Anything other than Dom?

2002-07-22 Thread Johnson, Michael1 [IT]
A am new to xml so please pardon me if I have mistaken this but I thought that using DOM I could pass it data and have it format an XML document. I was wondering if there are any alternatives to DOM. -MJ -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Monday, July

Re: Anything other than Dom?

2002-07-22 Thread dswanson1
You could use SAX, create a content handler and load some sort of object up with the values(hashmap works ok for this) as the SAX parses the document...then you just pass around your object instead of the DOMI guess we only use DOM if we need to manipulate a document...otherwise it seems like

Re: Anything other than Dom?

2002-07-22 Thread Scott Nichol
Michael, I don't really understand your question. It would help me if you could expand on this, either with an example or more of an explanation, e.g. if there is something you *wish* Apache SOAP could do. Scott Nichol - Original Message - From: "Johnson, Michael1 [IT]" <[EMAIL PROTECT

Questions on new SOAP services

2002-07-22 Thread root
Hello everybody, I am still quite new in this SOAP Apache environment so that I have several beginner questions : - Where actually does the SOAP package store its service list as we can see through the admin page ? It seems it must be stored somewhere as a persistent data (as a file) - From the so