RE: Serializer/deserializer problem.....

2003-06-11 Thread Henk Schipper
Scott, I would like to try the messaging, but whenever i try, i get :'(org.apache.soap.Envelope,org.apache.soap.rpc.SOAPContext,org.apache.soap. rpc.SOAPContext) -- no signature match' And ... it finds the class it includes the method (here a snippit of the source: public String MyMethod(

Beginner question

2003-06-11 Thread michael_sobczak
Hi, I have experience with Java and XML, but am pretty new to SOAP and WSDL. I've been able to invoke the demo web services provided at xmethods.com using the Java client code provided with no problem. I've been trying to invoke the Unisys Weather web service using the Currency Exchange Servi

Re: Beginner question

2003-06-11 Thread Anne Thomas Manes
I suggest that you use Apache Axis (http://ws.apache.org/axis) rather than Apache SOAP. Apache Axis provides much better support for document/literal. Apache Axis is Apache's strategic Web services implementation. Apache SOAP has been on life support for more than 2 years, and there's no plan to u

RE: Serializer/deserializer problem.....

2003-06-11 Thread Scott Nichol
With messaging, each method in your service must have a parameter list like public void purchaseOrder (Envelope env, SOAPContext reqCtx, SOAPContext resCtx) i.e. and Envelope and two SOAPContext. You then extract information from the envelope and i

RE: Beginner question

2003-06-11 Thread Wei Li
If you use the following code, it will show you more details about exception: if (resp.generatedFault()) { Fault fault = resp.getFault(); call.setFullTargetObjectURI(targetObjectURI); throw new SOAPException(fault.getFaultCode(), fault.getFaultString()); } -- wei -

RE: Trusted certificates with Java 1.4.1

2003-06-11 Thread armstpat
I apologize if this has already been answered. I lost a bunch of email today. If you are sure your app is finding the keystore and certificate, your problem might be with the incompatibility between JDK/JRE 1.3 and JDK/JRE 1.4. If you are trying to talk between the two, you might need to set a t

JAX-RPC info from JavaOne

2003-06-11 Thread Frank Cohen
I'm at JavaOne this week learning all the new stuff about Java and Web Services. So far, there's little talk about Apache SOAP and Apache Axis, but that's to be expected at a Sun-centered conference I suppose. The JAX-RPC birds of a feather session covered Sun JAX-RPC group's planned support fo

RE: Serializer/deserializer problem.....

2003-06-11 Thread Henk Schipper
Hi Scott, Thanks for the first step. I got some response. Only the header and body info, not the fields themselves. (the elements). I am sorry for being such a newby... but how do i get the elements as well? I read about marshalling. how? I hope you can help me? Thanks. Henk. -Original

RE: Serializer/deserializer problem.....

2003-06-11 Thread Vishal Shah
Henk,   You can try this... public void purchaseOrder (Envelope requestEnvelope, SOAPContext reqCtx,SOAPContext resCtx) {  try { Body b = requestEnvelope.getBody();Vector entries = b.getBodyEntries();//interrogate this vector that contains elements for(int i=0; i Element e = (Element) entries.ele

RE: Serializer/deserializer problem.....

2003-06-11 Thread Henk Schipper
Thanks for your reply   Unfortunately, I create a message from a microsoft client. Interop problem probably. I remeber reading about putting the namespace qualifiers in front of every element belonging to it. This client cannot do that. In the java program 'transportMessage.java' I can print