RE: using XML Schemas with SOAP

2002-03-18 Thread Harnish, Michael
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 3:54 PM To: [EMAIL PROTECTED] Subject: using XML Schemas with SOAP Hi: I've been able to deploy my service which accepts an object as a parameter. Now I want to relay that information to my client by providing them

Re: using XML Schemas with SOAP

2002-03-18 Thread James Yegerlehner
: Monday, March 18, 2002 1:53 PM Subject: using XML Schemas with SOAP Hi: I've been able to deploy my service which accepts an object as a parameter. Now I want to relay that information to my client by providing them with a descriptor of some sort. From the docs I know Apache SOAP (which I am

RE: xml schemas?

2001-12-26 Thread Ding, Chengmin
3:30 PM To: [EMAIL PROTECTED] Subject: RE: xml schemas? Craig, Just for clarification, If I am not using the BeanSerializer then I will have to encode and decode the message by creating my own code, right? Are there any standard libraries out there for this or do you just create you own? Thanks

RE: xml schemas?

2001-12-13 Thread Wilkins, Craig
To: [EMAIL PROTECTED] Subject: Re: xml schemas? What data types are the parameters to the methods? If they are just a set of strings, I advise you not to use the BeanSerializer, as that would require that your client either use the BeanSerializer or know how to encode/decode the SOAP body

RE: xml schemas?

2001-12-13 Thread Bryan Field
, Craig [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 6:42 AM To: '[EMAIL PROTECTED]' Subject: RE: xml schemas? You make a good point. I was thinking that unless you had the Apache SOAP using BeanSerializer on both client and server, it would be real tough. The email that followed yours

RE: xml schemas?

2001-12-13 Thread Bryan Field
Guy, Where is the code that encodes the method call into an xml document and decodes the xml document into a method call? Thanks, Bryan -Original Message- From: Guy McArthur [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 5:35 PM To: [EMAIL PROTECTED] Subject: Re: xml

RE: xml schemas?

2001-12-13 Thread Guy McArthur
Where is the code that encodes the method call into an xml document and decodes the xml document into a method call? It's the BeanSerializer from apache soap. I followed the outline from this article: http://www.javaworld.com/javaworld/jw-04-2001/jw-0427-soap.html And for the perl client,

RE: xml schemas?

2001-12-13 Thread Wilkins, Craig
PM To: [EMAIL PROTECTED] Subject: RE: xml schemas? Craig, Just for clarification, If I am not using the BeanSerializer then I will have to encode and decode the message by creating my own code, right? Are there any standard libraries out there for this or do you just create you own? Thanks

Re: xml schemas?

2001-12-13 Thread John Mani
You make a good point. I was thinking that unless you had the Apache SOAP using BeanSerializer on both client and server, it would be real tough. The email that followed yours from Guy, cleared up that confusion as he does it with SOAP Lite. However, can your bean contain other beans and

xml schemas?

2001-12-12 Thread Bryan Field
I am trying to implement a soap service that has 20 or so methods. I have defined the data that is needed to invoke each of these methods. I am doing the server implementation and another party is doing the client side implementation. Do I need to create a schema for each of my commands in

RE: xml schemas?

2001-12-12 Thread Wilkins, Craig
Message- From: Bryan Field [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 7:50 PM To: [EMAIL PROTECTED] Subject: xml schemas? I am trying to implement a soap service that has 20 or so methods. I have defined the data that is needed to invoke each of these methods. I am doing

RE: xml schemas?

2001-12-12 Thread Bryan Field
: Wednesday, December 12, 2001 1:55 PM To: '[EMAIL PROTECTED]' Subject: RE: xml schemas? How complex are your inputs/outputs to these methods? The best thing that you could do is to create a WSDL file that describes all of your services, inputs, outputs, bindings, etc. for the client. The quick

RE: xml schemas?

2001-12-12 Thread Wilkins, Craig
- From: Bryan Field [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 10:05 PM To: [EMAIL PROTECTED] Subject: RE: xml schemas? Craig, My inputs are not that complex. The methods are basically to create records in database tables, like createBusiness, createListing, etc... I am

Re: xml schemas?

2001-12-12 Thread John Mani
What data types are the parameters to the methods? If they are just a set of strings, I advise you not to use the BeanSerializer, as that would require that your client either use the BeanSerializer or know how to encode/decode the SOAP body in such a way that the BeanSerializer knows how

Re: xml schemas?

2001-12-12 Thread Guy McArthur
Perl's SOAP::Lite can deserialize beans. Example: A very simple bean class: // Temperature.java package test; public class Temperature { private double temp; public Temperature() { temp = 0d; } public double getTemperature() { return temp; } public void

RE: xml schemas?

2001-12-12 Thread Bryan Field
, December 12, 2001 4:41 PM To: '[EMAIL PROTECTED]' Subject: RE: xml schemas? What data types are the parameters to the methods? If they are just a set of strings, I advise you not to use the BeanSerializer, as that would require that your client either use the BeanSerializer or know how to encode