Re: Passing XML Documents

2004-09-30 Thread Jeff Greif
t" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 30, 2004 7:42 AM Subject: Passing XML Documents > I need to create a web service where the payload will be an industry > standard xml document. What's the best way to have the client package > the

RE: Passing XML Documents

2004-09-30 Thread Anne Thomas Manes
be defined as the root element of the document. Anne -Original Message- From: Jason Nesbitt [mailto:[EMAIL PROTECTED] Sent: Thursday, September 30, 2004 4:43 PM To: [EMAIL PROTECTED] Subject: Passing XML Documents I need to create a web service where the payload will be an industry stan

Passing XML Documents

2004-09-30 Thread Jason Nesbitt
I need to create a web service where the payload will be an industry standard xml document. What's the best way to have the client package the xml doc into the soap message? Sun says that there are three ways to do this. See http://java.sun.com/blueprints/guidelines/designing_webservices/html/we

Re: passing xml documents

2002-07-25 Thread Andrew Vardeman
ve a web service(running on Axis-- I am not using .NET) that reads in > > > an XML doc and returns it as an Element. However, when the SOAP response > > > is generated all of the >'s, &'s, etc are not escaped. > > > > > >You mention xml encoding--what i

Re: passing xml documents

2002-07-25 Thread Eric Roberts
L doc and returns it as an Element. However, when the SOAP response > > is generated all of the >'s, &'s, etc are not escaped. > > > >You mention xml encoding--what is the proper way to do this? I want to > >encode > >a String (which is XML to begin

Re: passing xml documents

2002-07-25 Thread Andrew Vardeman
n Element. However, when the SOAP response is >generated all of the >'s, &'s, etc are not escaped. > >You mention xml encoding--what is the proper way to do this? I want to >encode >a String (which is XML to begin with) to preserve the XML structure. > >Th

Re: passing xml documents

2002-07-24 Thread Murray Spork
al Message- >> From: Andrew Vardeman [mailto:[EMAIL PROTECTED]] >> Sent: Wednesday, July 24, 2002 3:03 PM >> To: [EMAIL PROTECTED] >> Subject: RE: passing xml documents >> >> >> public Element[] process(Vector elems) throws Exception{} >> >&g

Re: passing xml documents

2002-07-24 Thread Eric Roberts
ml encoding--what is the proper way to do this? I want to encode a String (which is XML to begin with) to preserve the XML structure. Thanks in advance Eric > I'm passing XML documents back and forth between Axis and .NET using > doc/lit (message style). I figured it was the most n

RE: passing xml documents

2002-07-24 Thread Sullivan, Mark E
besides the sample application, is there any documentation for this approach anywhere? -Original Message- From: Andrew Vardeman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 3:19 PM To: [EMAIL PROTECTED] Subject: RE: passing xml documents I think I've heard other p

RE: passing xml documents

2002-07-24 Thread Hurst, Cyrus
--Original Message- From: yong fu [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 4:19 PM To: [EMAIL PROTECTED] Subject: Re: passing xml documents Mark: The following code will send the xml as a msg. What I don't know is what is this setTargetService call for. without it the call

RE: passing xml documents

2002-07-24 Thread Andrew Vardeman
>Sent: Wednesday, July 24, 2002 3:03 PM >To: [EMAIL PROTECTED] >Subject: RE: passing xml documents > > >public Element[] process(Vector elems) throws Exception{} > >It takes an array of DOM Elements because the SOAP body can have more than >one child element. If you'

Re: passing xml documents

2002-07-24 Thread yong fu
--- Original Message - From: "Sullivan, Mark E" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 24, 2002 4:03 PM Subject: RE: passing xml documents > It seems like this is a rather unintuitive way of doing it. I thought i read > somewhere that the fu

RE: passing xml documents

2002-07-24 Thread Sullivan, Mark E
, July 24, 2002 3:03 PM To: [EMAIL PROTECTED] Subject: RE: passing xml documents public Element[] process(Vector elems) throws Exception{} It takes an array of DOM Elements because the SOAP body can have more than one child element. If you're just passing an XML document, it'll only

RE: passing xml documents

2002-07-24 Thread Andrew Vardeman
document? > >-Original Message- >From: Andrew Vardeman [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, July 24, 2002 2:52 PM >To: [EMAIL PROTECTED] >Subject: Re: passing xml documents > > >I'm passing XML documents back and forth between Axis and .NET using >doc/l

Re: passing xml documents

2002-07-24 Thread Les Gerads
n" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 24, 2002 12:51 PM Subject: Re: passing xml documents > I'm passing XML documents back and forth between Axis and .NET using > doc/lit (message style). I figured it was the most natural way to go since >

RE: passing xml documents

2002-07-24 Thread Sullivan, Mark E
thanks for the reply. What does your method signature look like for the method that recieves the document? -Original Message- From: Andrew Vardeman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: Re: passing xml documents I'm pa

Re: passing xml documents

2002-07-24 Thread Andrew Vardeman
I'm passing XML documents back and forth between Axis and .NET using doc/lit (message style). I figured it was the most natural way to go since the SOAP envelope is XML. Axis makes doc/lit really easy; .NET is so bent on serializing and deserializing everything for you that it took some

passing xml documents

2002-07-24 Thread Sullivan, Mark E
i'm trying to figure out the best way to do this. Has anyone implemented a web service with axis where you pass an entire xml document as the payload? if so, did you use a rpc style or a message style service? thanks! mark