Error after repackaging

2001-07-27 Thread Richard .
791: [1] In HTTPUtil:post, start... Jul 27, 2001 11:40:07:871: [3] In HTTPUtils:post, call doPost with HTTP 1.0. Jul 27, 2001 11:40:07:921: [1] In HTTPUtil:post, end... Ouch, the call failed: Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.NoSuchMethodError . Thanks, Richard _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

RE: problem please give me some solution

2001-06-06 Thread Hansen, Richard
>From the FAQ in the docs for soap 2.2: 1.5 Help! The Samples won't work. Every time I run a sample client I get this response: "Fault String = java.lang.NoSuchMethodError" Ensure that: (a) You have deployed the sample service you want to use. (b) Xerces.jar is the very first entry in your clas

RE: SOAP Interoperability question

2001-06-07 Thread Hansen, Richard
Yes, it is possible, but a bit painful. Which is very ironic since the point of SOAP is interop. Apache SOAP does not need or use WSDL. But that does not mean that you can't have a WSDL file describing your services for clients that can make use of WSDL. With MS you can also use the low level api

RE: Problem with getting Response

2001-06-07 Thread Hansen, Richard
If you are just looking for a debugging tool check out the TCPTunnel in the docs. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 07, 2001 1:48 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Problem with getting Response > > >

RE: No deserializer...

2001-06-21 Thread Hansen, Richard
Apache SOAP 2.1 and 2.2 do require xs:type attributes. You can get around this by adding QNames for your parameters in the type mapping registry. This is covered in the docs for Apache SOAP 2.1 Rick Hansen > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent:

RE: an example of the transport of Array

2001-06-28 Thread Hansen, Richard
This is a SOAP response I captured recently. http://schemas.xmlsoap.org/soap/encoding/"; xsi:type="ns3:Array" ns3:arrayType="xsd:string[3]"> MN-CS WI-CS IA-CS > Can someone please send me an example of how an array is > represented in the > XML? > I want to write a small C client the send

RE: potential performance improvements

2001-06-29 Thread Hansen, Richard
I tried the 7-29 nightly build. My simple test showed that running locally in Tomcat, the average time to make 100 SOAP calls dropped from 3.1 to 2.9 seconds. Not huge but measurable. Rick Hansen > -Original Message- > From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]] > Sent: Thursday

RE: Handling Faults

2001-07-05 Thread Hansen, Richard
"Unable to resolve target" normally means the service class can not be found. Normally, the class name would follow. I got "null" when my service class was found but could not be constructed. Rick Hansen > -Original Message- > From: Brett McLaughlin [mailto:[EMAIL PROTECTED]] > Sent: Wed

XMLParser throws out NullPointerException with a normal InputSource

2001-07-23 Thread Richard Wu
://xml.org/sax/features/namespaces",true ); saxParser.setFeature( "http://apache.org/xml/features/validation/schema",true ); saxParser.parse(inputSource); Thanks! Richard Wu

RE: XMLParser throws out NullPointerException with a normal InputSour ce

2001-07-23 Thread Richard Wu
My own code caused the problem. Sorry for the spam. Now I have a lot of faith in xerces parser now. BTW: anyone knows when xerces-j-2 is available for a big time? -Original Message- From: Richard Wu [mailto:[EMAIL PROTECTED]] Sent: July 23, 2001 2:55 PM To: '[EMAIL PROTECTED]

RE: Unable to resolve namespace URI for 'ns2'. | not a classpath problem

2001-07-24 Thread Hansen, Richard
If you would pay closer attention to the post it does not say you have a classpath problem. It say you might have a Tomcat problem. Have you done what was suggested? This is a well known and well documented problem with tomcat startup. It makes no difference where you have xerces in your system cl

RE: Unable to resolve namespace URI for 'ns2'. | not a classpath problem

2001-07-24 Thread Hansen, Richard
> > set CP=I:\Misc\dev\xerces-1_3_1\xerces.jar;%TOMCAT_HOME%\classes As I recall xerces 1.31 does not work. Try an earlier or later version. > But still i am getting the same error. >

RE: response contains zero when should be a value in my Apache Java c lient to a MS server

2001-07-24 Thread Hansen, Richard
Is "test_AddThemResult" the correct name of the XML element the response is comming back in? Have you used the TCPTunnelGui to verify the XML that is comming back? That's all I can think of. Rick Hansen

RE: soap and xerces jars

2001-07-24 Thread Richard Wu
did you look into crimson? -Original Message- From: Alfred [mailto:[EMAIL PROTECTED]] Sent: July 24, 2001 12:49 PM To: [EMAIL PROTECTED] Subject: RE: soap and xerces jars Hi Matt, Thanks for the tip. Do you or anyone else know where I can find smaller JAXP compliant parsers. Thanks

RE: response from method is zero in my Apache Java client

2001-07-26 Thread Hansen, Richard
> enough about XML > to understand why the Apache libraries are generating this XML. > > Does anyone know of a fix for this? If someone knows how to > use the Apache > SOAP libraries to not add that "ns1" that would be great. If > there are any > other solu

Re: Deployment Descriptor file

2001-08-06 Thread Richard Boehme
y(String id) throws SOAPException ; search through DeploymentDescriptors to find the service } --Richard On Mon, 6 Aug 2001, Anvita Johri wrote: > I am trying to figure out if it is possible to use multiple > DeployedServices.ds files in a soap client-server call. > > I

Re: Problem with services

2001-08-15 Thread Richard Boehme
If you are running Tomcat, undeploy the service, restart Tomcat, and redeploy it. The changes should then be visible. Tomcat doesn't refresh it's copy of the classes, even if you undeploy and redeploy the service without restarting Tomcat. --Richard On Wed, 15 Aug 2001, Ravi Natar

RE: <119> InterOperability within Server-side(Apache-Java) and C lient-side(MS-VB)

2001-08-15 Thread Richard Whitcomb
Don't know for sure, but I thought there were some issues between MS SOAP and Apache SOAP.  You may want to double check the Apach SOAP docs I think I remember something in there about this.   Regards,   Richard -Original Message-From: chihongkim [mailto:[EMAIL PROTECTED]

SOAP and Tomcat 4.0

2001-08-16 Thread Richard Boehme
When I try to deploy SOAP using Tomcat 4.0, I can sometimes bring up the SOAP admin client (http://localhost:8080/soap), but when I try to list, deploy, undeploy, etc. services using the ServiceManagerClient, it says that the RPCRouterServlet isn't a servlet. I'm currently running SOAP 2.2 under L

DateSerializer bug?

2001-08-17 Thread Hansen, Richard
Before I dive into any code changes, has anyone else had problems with the DateSerialzier? I have a SOAP method that has a Date as one of the params. When it gets two simultaneous calls the dates seem to be wrong, not the same as what was passed to call.invoke(). As far as I can tell good dates ar

DateSerializer bug fix

2001-08-17 Thread Hansen, Richard
It appears that the DateSerializer does need some synchronized blocks. I verified that the Date output from unmarshall() is not always equivalent to the string value input to unmarshall(). So, I placed synchronized blocks around the SimpleDateFormat.format() calls. This seems to have fixed the pro

Re: SOAP and Tomcat 4.0

2001-08-17 Thread Richard Boehme
d with the soap.jar in my classpath, with the same results as I indicated below. This is really puzzling, as I would figure if it was a change in the servlet.jar that did it, then Tomcat 3.2.2 wouldn't like it either, but it's fine. Thanks. --Richard On Thu, 16 Aug 2001, Scott Nic

RE: How to handle multiple request in "Application" scope

2001-09-27 Thread Hansen, Richard
No, it means that SOAP server calls the service methods of the single instance as many times as it needs to handle the number of client requests. Your service code must be thread safe. Rick Hansen > -Original Message- > From: Naresh Agarwal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, Se

Node.appendChild(Node node)

2001-10-25 Thread Richard Wu
ibute = targetDocument.createAttribute(sourceAttribute.getNodeName()); targetAttribute.setNodeValue(sourceAattribute.getNodeValue()); targetNode.appendChild(targetAttribute); Any idea of what's happening here? Thanks for any hint or suggestion! Richard Wu

How to convert an XML dom to a string again

2001-09-28 Thread Richard Wu
Hi, we can convert an XML document text string to an XML dom via StingReader/InputStream but can we convert an XML dom to an XML document text string via StringWriter/OutputStream? I tried to figure this out but not sure where to start. Really any suggestion or idea! Richard Wu

RE: Bug with DOM2Writer

2001-09-28 Thread Hansen, Richard
I must say that I am enjoying this thread immensely. :-) But I have an odd sense of humor and love a friendly and spirited argument. Rick Hansen > -Original Message- > From: Sam Ruby [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 28, 2001 2:51 PM > To: [EMAIL PROTECTED] > Subject:

RE: Heavy loads on SOAP RPC

2002-04-22 Thread Richard Bolen
What is the upper limit for connections with a non-server version of the microsoft OS? I'm having some performance problems as well and I'm testing on Win2K workstation. How is this connection limit enforced? At the TCP/IP stack level or the socket level (or some other way)? Rich -Orig

Re: cvs commit: xml-soap/java/src/org/apache/soap/server/httpMessageRouterServlet.java RPCRouterServlet.java

2002-05-02 Thread Richard Sitze
catch". ******* Richard A. Sitze [EMAIL

Use of Apache SOAP with Java Plugin

2002-12-02 Thread Kellogg, Richard
Greetings! After much trouble shooting, I have successfully used the Apache SOAP Toolkit under the Java Plugin 1.3.1_02. To do so, you need to add the following to your client applet jar: activation.jar, soap.jar, mail.jar and crimson.jar. Then you will need to sign your jar. The use of crim

Base64 --> Base64Serializer - Why?

2003-06-23 Thread Richard Bolen
I recently tried upgrading to the latest nightly build of SOAP (June 20, 2003) from 2.2. I needed this to support HTTPS over a proxy server. The problem I had was that it suddenly started using a different SOAP serializer type for byte[] content (Base64Serializer instead of Base64). I had to chan

RE: Base64 --> Base64Serializer - Why?

2003-06-23 Thread Richard Bolen
4 type? -Original Message- From: Richard Bolen Sent: Monday, June 23, 2003 9:46 AM To: [EMAIL PROTECTED] Subject: Base64 --> Base64Serializer - Why? I recently tried upgrading to the latest nightly build of SOAP (June 20, 2003) from 2.2. I needed this to support HTTPS over a proxy serv

RE: Base64 --> Base64Serializer - Why?

2003-06-23 Thread Richard Bolen
SOAP could sense older clients (specifically, ones using the 1999 schema) and use older the older schema for serialization, but the current code does not do that. On 23 Jun 2003 at 10:38, Richard Bolen wrote: > Perhaps more to the point is what the xsi:type attribute is set to for >

case sensitive return type

2001-06-07 Thread Richard S Hendershot
is it possible to make the return type Upper case? 123456789A ..where I would like 'OrderID' to reflect the return object type as well as the runtime value? Like so: 123456789A I'm using BeanSerializer and mapping: ...Constants.NS_URI_SOAP_ENC, new QName("[snip]","OrderID")... It's worki