RE: Populate WSDL2Java object from XML file.

2004-06-18 Thread Anne Thomas Manes
created object. Anne -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, June 18, 2004 8:58 AM To: [EMAIL PROTECTED] Subject: RE: Populate WSDL2Java object from XML file. Hmmm... That's not QUITE what I was looking for, but it may work. Rather

RE: Populate WSDL2Java object from XML file.

2004-06-18 Thread jasenj1
Hmmm... That's not QUITE what I was looking for, but it may work. Rather than populate the WSDL2Java created object, just stuff the XML document in the SOAP body and punt. I need to change a few of the values in the document, but I can do that via DOM calls. And just to clarify, this IS the clie

RE: Populate WSDL2Java object from XML file.

2004-06-17 Thread Anderson Jonathan
Ever looked into Axis MSG style calls? This is client code, but you can do the same thing on the server side as well, assuming you've built a MSG style service. Check out the Axis docs for more information. Service service = new Service(); Call call = (Call) service.createCall(); call.setSOAPAct

Re: Populate WSDL2Java object from XML file.

2004-06-17 Thread Matt Payne
Jasen - Since classes generated by wsdl2java are just POJOs you can use Java's built in XMLEncoder class. There are a few pointers about this here: http://mattpayne.org/b.cgi/Programming/Java/XMLEncoder.pf -Matt On Thu, 17 Jun 2004 14:39:52 -0400, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >