RE: regd Soap messages from client and server in Apache SOAP

2001-08-02 Thread Jyothi K
Hi, What should the ACTION_URI and OBJECT_URI be? Can it be blank. And even the OBJECT_URI, can that be http://www.w3.org/1999/XMLSchema. Please let me know. Thanks, Jyothi -Original Message- From: Steeve Gilbert [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 6:40 PM

SV: WSDL parser?

2001-08-02 Thread kim . schjefstad
I was looking for this WSDL4J project at (http://www-106.ibm.com/developerworks/), but could not find any reference to it. Is it part of the WSTK 2.3? cheers, -kims- -Opprinnelig melding- Fra: James Higginbotham [mailto:[EMAIL PROTECTED]] Sendt: 1. august 2001 19:51 Til: [EMAIL

RE: Session Tracking question.

2001-08-02 Thread Christian Cerny
Hi, If I got your Problem now, this might help you: i. you could use the ContextPropagation Feature of Apache Soap to access the HttpSession-Object if you use the JavaProvider of AP-Soap. If you add a SOAPContext Object as first Parameter in the signature of your java-method, a

RE: error running the messaging sample

2001-08-02 Thread Pete Roth
I can't answer your first question since I'm not writing the Server Side components for our setup, but I can help with the second. Check out this link to apache's site. http://xml.apache.org/soap/docs/index.html Then go to Users Guide, then Interoperability. Then scroll down to the

Re: error running the messaging sample

2001-08-02 Thread Steeve Gilbert
For question 1: How is your server? Normally, the server isn't suppose to know it's been called thru soap. So why do you want to play in the Body of the Envelope? The server should look like any other method. No difference from a normal method. bye! Steeve... Kavitha Srinivasan

RE: Xerces XML parsing SOAP response problem

2001-08-02 Thread Steeve Gilbert
That code sample didn't print the data I wanted from the response XML (I dunno if you even meant it to) Nope. ;-) I just tought you would be able to do the rest. Maybe that node is just the name and attributes of that XML element? Not really. Attributes and name are get with

RE: regd Soap messages from client and server in Apache SOAP

2001-08-02 Thread Steeve Gilbert
Did you create a WSDL file for your C++ client? I don't know if it needs one anyway, it's just that it work that way with Ms Soap Toolkit. I don't know about the Scott Seely's simple soap library. Steeve... Jyothi K [EMAIL PROTECTED] on 02/08/2001 07:15:03 AM Please respond to [EMAIL

RE: Xerces XML parsing SOAP response problem

2001-08-02 Thread Pete Roth
Ok, I checked out the tutorial below, which helped a lot, yet it doesn't deal with schemas, only DTDs. I am getting blank text nodes in my DOM document since I am not using a DTD when parsing my XML (listed below). Since the WSDL file defines the XML returned from the Service (this is the XML

Re: Working with Xerces

2001-08-02 Thread Steeve Gilbert
If you're exchanging XML instead of playing with conversion String-XML try sending Element thru soap with call.setEncodingStyleURI (Constants.NS_URI_LITERAL_XML); You won't need to do the convertion at each end. That will be done automatically. Thanks to Craig for opening my eyes on this.

Writing my own deserializer

2001-08-02 Thread Wilkins, Craig
I am looking for some advice on how to write my own deserializer. At the very least I am looking for some high-level guidance or steps on how to write my own deserializer for XML Elements, but if you think that you can help with my problem, please offer additional suggestions. My Problem: Our

RE: regd Soap messages from client and server in Apache SOAP

2001-08-02 Thread Steeve Gilbert
The OBJECT_URI cannot be blank. OBJECT_URI indicate the namespace in which your service is. Yes you can use http://www.w3.org/1999/XMLSchema; but I would not recommend you since it already means something else (XML Schema version). Use something like urn:MyWebService. The ACTION_URI can be

RE: Xerces XML parsing SOAP response problem

2001-08-02 Thread Steeve Gilbert
I don't think you can use your WSDL to validate your XML. However you can surely validate it with a XML Schema. I've never done it but look here... http://xml.apache.org/xerces-j/schema.html I guess it's possible. Good luck! Steeve... Pete Roth [EMAIL PROTECTED] on 02/08/2001 12:07:33 PM

Re: SV: WSDL parser?

2001-08-02 Thread keith.watt
Hi Just to pick up on this again. Is there an open source Java2WSDL implementation which allows access to the Java source code? cheers, Keith [EMAIL PROTECTED] on 02/08/2001 07:32:02 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: Keith Watt/LON/WLB) Subject:

Re: Xerces XML parsing SOAP response problem

2001-08-02 Thread Steeve Gilbert
Using this code I've reach the last node. Good luck. Steeve... parser = new DOMParser(); String xmlString = ?xml version=\1.0\ encoding=\utf-8\? + soap:Envelope xmlns:soap=\http://schemas.xmlsoap.org/soap/envelope/\; +

RE: ant task to deploy Apache SOAP service

2001-08-02 Thread Daryl Beattie
This is what I use: !-- Deploys the SOAP service. -- target name=deploysoap depends=compile java classname=org.apache.soap.server.ServiceManagerClient fork=yes arg value=http://localhost:8080/soap/servlet/rpcrouter/ arg value=deploy/

Re: SV: WSDL parser?

2001-08-02 Thread Nirmal Mukhi
Hi, You can find it at http://oss.software.ibm.com/developerworks/projects/wsdl4j/ (accessible via developerworks by following the link to Open Source Projects from the main page). Nirmal.