RE: Fix for Element must contain a:'faultcode' element problem

2002-06-13 Thread Matthew J. Duftler
Hi Nedim, Node.getNamespaceURI() is not supposed to return an empty string. It is supposed to return a namespace URI, or null if none was specified. This behavior is described by both the actual DOM Level 2 Core specification

ANNOUNCE: Apache SOAP v2.3.1 posted...

2002-06-10 Thread Matthew J. Duftler
Hi Folks, Due to a significant interoperability bug, we just posted a new release (at http://xml.apache.org/soap/). The bug was: the xsi:null attribute was still being used with the 2001 Schema namespaces, instead of the xsi:nil attribute which is specified. Thanks, The Apache SOAP team...

RE: exception while sending the message

2001-08-07 Thread Matthew J. Duftler
Hi Jyothi, Please try one of the nightly builds (or the latest CVS tree). I believe this was a bug which has been fixed. Thanks, -Matt -Original Message- From: Jyothi K [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 5:23 AM To: [EMAIL PROTECTED] Subject: exception while

RE: acriotURI

2001-08-06 Thread Matthew J. Duftler
Hi Rich, That is where you can specify the URI to be used for the value of the SOAPAction header (see: http://www.w3.org/TR/2000/NOTE-SOAP-2508/#_Toc478383528). Here's the JavaDoc comment from that method: * @param actionURI the value of the SOAPAction header Thanks, -Matt -Original

RE: expcetion: java.lang.AbstractMethodError

2001-07-30 Thread Matthew J. Duftler
Your client is finding an incorrect implementation of the org.w3c.dom interfaces. Make sure your classpath is set correctly, and make sure you remove any jars that may contain DOM impls from your \jre\lib\ext directory. Thanks, -Matt -Original Message-From: systek

RE: unable to deploy my application.

2001-07-30 Thread Matthew J. Duftler
You need to remove the old versions of Apache SOAP from your Tomcat installation. This may include removing the %tomcat_home%\work directory, since that's where the JSPs will be compiled to. Thanks, -Matt -Original Message- From: Jaspreet Singh [mailto:[EMAIL PROTECTED]] Sent:

RE: unable to deploy my application.

2001-07-30 Thread Matthew J. Duftler
org.apache.soap.Constants. org.apache.soap.Constants.NS_URI_BML_ENC}; ^ 1 error -Original Message- From: Matthew J. Duftler [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 7:13 PM To: [EMAIL PROTECTED] Subject

RE: SOAP 2.2. doesn't return the float and double values correctly

2001-07-30 Thread Matthew J. Duftler
Title: RE: Using soap over ssl Please capture the response using the TcpTunnelGui tool, and post the response here. Thanks, -Matt -Original Message-From: Liaw, Wan-Bih [mailto:[EMAIL PROTECTED]]Sent: Monday, July 30, 2001 2:27 PMTo: [EMAIL PROTECTED]Subject: SOAP 2.2.

RE: SOAP 2.2. doesn't return the float and double values correctly

2001-07-30 Thread Matthew J. Duftler
Hi Matthew, I am still new in this group. What's TcpTunnelGui and how can I get it ? Looks like it's a monitoring tool , isn't it ? rgds, sunento - Original Message - From: Matthew J. Duftler To: [EMAIL PROTECTED] Sent: Tuesday

RE: Apache SOAP 2.2 and the illusive AbstractMethod - error

2001-07-30 Thread Matthew J. Duftler
Hi Raynier, There is a mechanism within Apache SOAP thit will allow you to explicitly specify which JAXP-compliant parser to use. It sort of defeats the purpose of JAXP, but when you are stuck, it seems a reasonable temporary fix. Try adding the following: init-param

RE: return args in examples don't work

2001-07-30 Thread Matthew J. Duftler
Hi Richard, From reading your note: stackTracejava.lang.ClassNotFoundException: samples.stockquote.StockQuoteService it appears as if your server can't resolve the samples.stockquote.StockQuoteService class. Did you add the soap-2_2 directory to your classpath as described in the

RE: deploying services

2001-07-29 Thread Matthew J. Duftler
Title: RE: deploying services Hi Brian and Rich, A WebApp can read files from its own WAR. ServletContext has a getRealPath(String) method which can be used toresolve files relative to the servlet's docBase. We use this method to retrieve the configuration file, soap.xml. Since servers

RE: Soap 2.2: Fault String = java.lang.AbstractMethodError

2001-07-29 Thread Matthew J. Duftler
Hi Richard, Use the TcpTunnelGui tool as described in the docs to see what is being sent back. There is most likely a stack-track in the details section of the fault. Thanks, -Matt -Original Message- From: Richard Heintze [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 28, 2001

RE: Vector of parameters as a parameter

2001-07-24 Thread Matthew J. Duftler
rs is itself a vector of parameters, so I'm sending a Vectorthat has a element that is an vector of parameters. When I read the vector from the method that is being called,thevector is a vector of Strings. -Original Message-From: Matthew J. Duftler [mailt

RE: rpcrouter

2001-07-24 Thread Matthew J. Duftler
In the original version (or two, I can't remember) we had RPCRouter as a jsp. We eventually changes to using a servlet. Thanks, -Matt -Original Message- From: Andreas Ullmann [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 12:09 PM To: [EMAIL PROTECTED] Subject: Re:

RE: Request next version of Apache Soap

2001-07-24 Thread Matthew J. Duftler
Hi Adrian, Caught SOAPException (SOAP-ENV:Client): Unable to retrieve PropertyDescriptor for property 'Symbol' of class 'class QuoteResult'. This error message is correct, since your class QuoteResult does not have a property Symbol, it has a property symbol. According to the JavaBeans spec,

RE: NoSuchMethodError

2001-07-24 Thread Matthew J. Duftler
Hi Stephan, The JSPs which make up the web-based admin interface work because they don't have to parse the incoming request. That is, they don't hit the non-namespace-aware implementation of the DOM interfaces. Thanks, -Matt -Original Message- From: Stephan Wiesner [mailto:[EMAIL

RE: String Index Out of Bounds in HTTPUtils

2001-07-23 Thread Matthew J. Duftler
Hi Dylan, Please try one of the nightly builds. I believe this bug was fixed in the latest CVS tree. Thanks, -Matt -Original Message- From: Dylan J Browne [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 4:51 AM To: soap Subject: String Index Out of Bounds in HTTPUtils

RE: Vector of parameters as a parameter

2001-07-23 Thread Matthew J. Duftler
Hi Luis, Can you please provide some more details. I don't believe that the types of the items in the Vector was changed from Parameter to String. Can you please show why you think this is the case? Thanks, -Matt -Original Message-From: Luis Pinho (EST) [mailto:[EMAIL

RE: Request next version of Apache Soap

2001-07-23 Thread Matthew J. Duftler
Hi Adrian, I'm assuming you're talking about the BeanSerializer. If you are, the BeanSerializer uses the Java introspection mechanisms to manipulate (i.e. read/write) properties. The names of those properties are case-sensitive. If the BeanSerializer is giving an error message which says it

RE: Fault Code = SOAP-ENV:Server.Exception: Fault String: java.lang.NoSuchMethodError

2001-07-23 Thread Matthew J. Duftler
Hi Rebekah, Please use the TcpTunnelGui tool, as described in the docs, to capture the response from the server. Then post the captured response here. The stack-trace is most likely being sent back in the Fault Details, which are not being displayed on the command-line. Thanks, -Matt

RE: C# and Apache SOAP interoperability... - response vs result

2001-07-05 Thread Matthew J. Duftler
Go to: http://xml.apache.org/soap/mail and (assuming you have your browser set up to handle your email) click on the Unsubscribe link. I doubt that sending messages along the lines of please do not send email to me. will have much effect. Thanks, -Matt -Original Message- From: Liaw,

RE: I'm having trouble compiling SOAP

2001-07-05 Thread Matthew J. Duftler
Hi Gerald, Take a look in Ant's lib directory (i.e. %ant_home%\lib) and see if there are 2 jars named jaxp.jar and parser.jar. If there are, move them into a bak directory, so that ant.jar can't find them. Then give it a shot. Thanks, -Matt -Original Message- From: [EMAIL PROTECTED]

RE: C# and Apache SOAP interoperability... - response vs result

2001-07-05 Thread Matthew J. Duftler
interoperability... - response vs result i have done what it needed to unsubscribe, but it didn't seem to work, that's why i posted it to the list, with the hope that the admin of apache will unsubscribe me when its programs won't. -Original Message- From: Matthew J. Duftler [mailto

RE: Can multiple encodings be used in a single SOAP request?

2001-07-04 Thread Matthew J. Duftler
Title: Can multiple encodings be used in a single SOAP request? Hi Brian, Simply set the encoding style of each Parameter as you instantiate them. The last argument is the encodingStyle URI. Thanks, -Matt -Original Message-From: Brian Levine [mailto:[EMAIL PROTECTED]]Sent:

RE: Exception while calling ServiceManagerClient

2001-07-04 Thread Matthew J. Duftler
Hi Ralf, Line 80 of QName contains a call to Node.getNamespaceURI(). Make sure that the first set of org.w3c.dom.* interfaces found on your classpath are namespace-aware. Try: javap org.w3c.dom.Node and see if the getNamespaceURI() method is there. Thanks, -Matt -Original Message-

RE: deploy problem

2001-07-04 Thread Matthew J. Duftler
Hi Fanyun, Make sure you are not using Xerces v1.3.1. That version of Xerces has known namespace-handling problems. Thanks, -Matt -Original Message- From: fanyun [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 04, 2001 12:06 PM To: Soap-User Subject: RE: deploy problem Hi:

RE: can't run StockQuote example. Please HELP!!!

2001-06-26 Thread Matthew J. Duftler
Hi Hoang, Did you deploy the service? Try running the sample by entering using the soap-2_2\samples\stockquote\testit.cmd batch file. Thanks, -Matt -Original Message- From: Truong,Hoang C. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 2:58 PM To: [EMAIL PROTECTED]

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Matthew J. Duftler
Hi Rosh, Try running the TcpTunnelGui tool, as described in the documentation, to see what the details of the Fault are. Thanks, -Matt -Original Message- From: Rosh R Nair [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 1:34 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Matthew J. Duftler
class files to the /webapps/web-inf/classes directory of Apache or any webserver context that we have created. Please clarify my doubts. Thanks Rosh Nair -Original Message- From: Matthew J. Duftler [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 11:23 AM To: [EMAIL

RE: new to soap

2001-06-21 Thread Matthew J. Duftler
Hi Rich, What happens if you just put in: http://localhost:port or http://localhost:port/soap Do you still get the gibberish? Are you sure it is Tomcat you're speaking to, and not some other server running? Thanks, -Matt -Original Message- From: Rich Catlett [mailto:[EMAIL

RE: long Parameter won't compile

2001-06-21 Thread Matthew J. Duftler
Hi Mark, You must pass primitive arguments in the same manner as you would when making reflection-based invocations: use the wrapper types. So your code should look like: params.addElement (new Parameter(time, long.class, new Long(time), null)); Thanks, -Matt -Original Message-

RE: What jar files do I need to provide for Apache SOAP clients ?

2001-06-21 Thread Matthew J. Duftler
Hi Rahul, The client-side dependencies are described on the web-site, in the Installation section, under the Client-Side Instructions heading. Thanks, -Matt -Original Message- From: Rahul Kirthivasan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 9:09 AM To: [EMAIL

RE: apache-soap with tomcat on redhat 7.1

2001-06-21 Thread Matthew J. Duftler
Hi Steve, This issue is addressed in the Troubleshooting table on the web-site. In short, a non-namespace-aware parser is being encountered by your server before a namespace-aware parser. Thanks, -Matt -Original Message- From: Steve McKay [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: no signature match

2001-06-21 Thread Matthew J. Duftler
Hi Pravin, Try running: javap samples.texttospeech.SoapClientUsingProxy from the shell where you will start your server from, and see if you can find the method with the signature you desire. Thanks, -Matt -Original Message- From: pravin pachbhai [mailto:[EMAIL PROTECTED]] Sent:

RE: SOAP-ENV:Client Unable to retrieve PropertyDescriptor for property 'checkMustUnderstands'

2001-06-21 Thread Matthew J. Duftler
Hi Sundar, Make sure that you have removed all previous versions of Apache SOAP from your classpath. Thanks, -Matt -Original Message- From: Sundar Narayanasamy [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 21, 2001 3:39 PM To: [EMAIL PROTECTED] Subject: SOAP-ENV:Client Unable to

RE: Soap Problem

2001-06-21 Thread Matthew J. Duftler
Hi Janesh, Same problem as before. Don't use Xerces v1.3.1. This is covered in the FAQs. Thanks, -Matt -Original Message-From: Janesh Vasudeva [mailto:[EMAIL PROTECTED]]Sent: Thursday, June 21, 2001 7:53 AMTo: [EMAIL PROTECTED]; [EMAIL PROTECTED]Subject: Soap Problem

RE: .invoke(...) returns null from JSP

2001-06-21 Thread Matthew J. Duftler
Hi Troy, Please post the wire-dumps so we can see what is coming back. Thanks, -Matt -Original Message- From: Troy Beacleay [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 4:47 PM To: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]' Subject: .invoke(...) returns null from JSP

RE: Problems with SMTP

2001-06-19 Thread Matthew J. Duftler
Hi Pravin, The SMTP FAQ on the web-site explains how to set it up: http://xml.apache.org/soap/faq/faq_chawke_smtp.html The necessary jar files are in the same location as the distribution: http://xml.apache.org/dist/soap/version-2.2/ Thanks, -Matt -Original Message- From: pravin

RE: User defined object as a request, literal XML as a response. Poss ible?!

2001-06-19 Thread Matthew J. Duftler
Hi Dirck, You were right. It turns out there was a bug in the BeanSerializer that prevented the client from using a BeanSerializer to serialize SOAP-encoded parameters within a Call labeled with the literalXML encoding style. Since the bug was in the BeanSerializer, it only came up when the user

RE: Installation question

2001-06-13 Thread Matthew J. Duftler
Hi Jan, Please use the TcpTunnelGui tool (as described in the docs) to see what is being sent back, and post the wire-dump here. Thanks, -Matt -Original Message- From: Serfontein, Jan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 13, 2001 8:13 AM To: '[EMAIL PROTECTED]'

RE: compatibility with weblogic 6.1 beta

2001-06-13 Thread Matthew J. Duftler
Title: RE: compatibility with weblogic 6.1 beta Hi Steve, Ed, Stefan, If you guys want to write this up in an HTML file, I'll merge it into the FAQs hosted on the web-site (and the install docs for WL). Thanks, -Matt -Original Message-From: Steve Livingston [mailto:[EMAIL

Apache SOAP added to BugZilla...

2001-06-10 Thread Matthew J. Duftler
Hi Folks, Apache SOAP has been added to BugZilla at: http://nagoya.apache.org/bugzilla/ A link to the Bugzilla page has also been added to the Apache SOAP page at: http://xml.apache.org/soap/ Thanks, -Matt - To unsubscribe,

RE: is Bytes.class for bytes[]

2001-06-08 Thread Matthew J. Duftler
, byte[].class, xml, null)); params.addElement(new Parameter(xslFile, byte[].class, xml, null)); call.setParams(params); Why can't the method be called? Thanks, Kai -Ursprüngliche Nachricht- Von: Matthew J. Duftler [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 7. Juni 2001 23:59

RE: DeployedServices.ds - IS there a way to forcibly remove a Webservice ?

2001-06-08 Thread Matthew J. Duftler
Hi Rahul, And what was the error? Thanks, -Matt -Original Message- From: Rahul Kirthivasan [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 5:57 AM To: [EMAIL PROTECTED] Subject: DeployedServices.ds - IS there a way to forcibly remove a Webservice ? Hi all, I am

RE: List.jsp error

2001-06-08 Thread Matthew J. Duftler
Hi Lee, Make sure that you have removed any older version of Apache SOAP. You may have to remove a Tomcat's work directory also. Thanks, -Matt -Original Message- From: Lee J. Willwerth [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 9:03 AM To: soap Subject: List.jsp error

RE: ConfigManager can not read DeployedServices.ds

2001-06-08 Thread Matthew J. Duftler
Hi Shinta, Java serialization is probably not the best choice for this format. However, the DefaultConfigManager that uses this format is just one implementation of the ConfigManager interface (albeit the default). One can use the included XMLConfigManager, or author their own that uses the

RE: a question about different between soap 2.1 and soap 2.2 - CDATA

2001-06-07 Thread Matthew J. Duftler
Hi Omer, Whatever String you send as a parameter is exactly what you should get on the server-side. Try it without the CDATA section. Thanks, -Matt -Original Message- From: Omer Czerniak [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 7:06 AM To: [EMAIL PROTECTED]

RE: reading return parameters

2001-06-07 Thread Matthew J. Duftler
Hi Srinivas, Response extends RPCMessage which has a method getParams(), which returns a vector of Parameters. Thanks, -Matt -Original Message- From: Sampige, Srinivas [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 6:17 PM To: 'Vishweshwar, Ghanakota' Cc: '[EMAIL

RE: is Bytes.class for bytes[]

2001-06-07 Thread Matthew J. Duftler
Hi Kai, If the type of the object you are trying to pass is byte[], then you should use byte[].class. Thanks, -Matt -Original Message- From: Kai Donker [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 5:55 PM To: [EMAIL PROTECTED] Subject: is Bytes.class for bytes[] Hi

RE: cannot get past install problems

2001-06-01 Thread Matthew J. Duftler
After you start Tomcat, it shows you the classpath it is using. Is activation.jar listed in the classpath it says it is using in that shell? -Original Message- From: James Cooper [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 1:57 PM To: [EMAIL PROTECTED] Subject: RE: cannot

RE: no signature match Error

2001-05-30 Thread Matthew J. Duftler
Hi Laurent, Try packaging the testClass, and deploying and running it again. Then you can make sure that the server is really finding the right class. Another thing you can try is writing a JSP which instantiates an object of that class, and invokes the method you want. That would show that it

RE: msSOAPclient to apacheSOAPserver: StringDeserializer could not be resolved as a serializer

2001-05-29 Thread Matthew J. Duftler
Hi Innes, Remove the javaType="java.lang.String" and java2XMLClassName="org.apache.soap.encoding.soapenc.StringDeserializer" attributes from your map element. Only the values relevant to deserialization need to be specified. See the "Interoperability" section in the User's Guide for a

RE: Help wanted !!! Parameter types.....

2001-05-29 Thread Matthew J. Duftler
Hi Kuntal, I don't think I understand your question. Does: params.addElement(new Parameter(acctId, java.lang.int.class, new Integer(12345), Constants.NS_URI_SOAP_ENC)); not work? You can pass any object or primitive you want. With primitives, remember that