RE: ant task to deploy Apache SOAP service

2001-08-02 Thread HariNam Singh
See http://jakarta.apache.org/ant It's a build tool. Compared to make, it's more platform independant, and java friendly. It's a very cool tool, and easy to use. -Original Message- From: Steeve Gilbert [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 2:03 PM To: [EMAIL PROTECTE

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.

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

2001-08-02 Thread Steeve Gilbert
I've checked your code but I never did JavaScript before so can't really tell what's going wrong. Did you try to put a TcpTunnel between your browser and the soap service? Maybe if you see the soap request that they are exchanging that could give you some clue. Good luck! Steeve... "Liaw

RE: ant task to deploy Apache SOAP service

2001-08-02 Thread Daryl Beattie
This is what I use: http://localhost:8080/soap/servlet/rpcrouter"/>

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 = "" + "http://schemas.xmlsoap.org/soap/envelope/\"; " + "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"; " + "xmlns:xsd=\"htt

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
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 P

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 b

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: 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

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

2001-08-02 Thread Liaw, Wan-Bih
Yes, I did try to use TcpTunnel to reveal more insights but it didn't help much. I had also tried to log the stuff into a file but this part didn't work with the web service, although it works in the regular Java codes. I just think that SOAP isn't ready for anything serious. Any objections on

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: 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: boolean value interpretation by Apache SOAP

2001-08-02 Thread Sam Ruby
Fixed in the latest CVS. You can find prebuilt binaries at http://xml.apache.org/dist/soap/nightly/. - Sam Ruby

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 getAttribute

Re: SV: WSDL parser?

2001-08-02 Thread James M Snell
Go to the developerWorks Open Source Zone and you'll find the link. - James Snell Software Engineer, Emerging Technologies, IBM James M Snell/Fresno/IBM - [EMAIL PROTECTED] "No, 'being created in God's image' does not mean I'll have this project done in seven days!" - Anon. Please

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: 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 sec

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 'SOAPContext

Re: WSDL parser?

2001-08-02 Thread Tim Blake
Once the rest of us on JSR 110 have had our "input" and "suggestions" incorporated, that is. ;-) Isn't the JCP a wonderful thing! Thanks, Tim James M Snell wrote: > There is also the WSDL4J project at developerWorks, which will eventually > serve as the reference implementation for the WSDL J

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