RE: Wsdl2Java

2007-05-09 Thread David Elliott
isaddressed. If you have received this email message in error, please notifythe sender immediately by telephone or email and destroy the originalmessage without making a copy. Thank you. - Original Message - From: David Elliott To: axis Sent: Monday, May 07, 2007 9:19 AM Subject

Wsdl2Java

2007-05-07 Thread David Elliott
I am trying to have all the namespaces in the Webservice to get its own package name. Namespace Package === urn:emp:data emp.data urn:emp:serviceemp.service When I run Wsdl2Java everything gets put in org.tempuri In looking at the documentation at:

Sending Derived types to Webservice doesn't work

2007-03-06 Thread David Elliott
This note is a continuation of Issue with Axis when sending abstract class to .NET webservice I have change my .NET Web Service and no longer has any abstracts. It looks like public class Person{ public string name; public Address address;} public class Address{ } public class

RE: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread David Elliott
:Address / /ns1:person /GetAdmin /soapenv:Body /soapenv:Envelope On 3/2/07, David Elliott [EMAIL PROTECTED] wrote: I am sending a concrete type: HomeAddress that is derived from Address. The place holder in the class is the abstract type. This is the Java Client code being performed

RE: Issue with Axis when sending abstract class to .NET webservice

2007-03-02 Thread David Elliott
when sending abstract class to .NET webservice David, You cannot send an element of an abstract type. Your choices: - don't send the Address/ element (requires minOccurs=0) - define it as a concrete type Anne On 3/1/07, David Elliott [EMAIL PROTECTED] wrote: I am testing some

Issue with Axis when sending abstract class to .NET webservice

2007-03-01 Thread David Elliott
I am testing some interoperability between a Java Client using Axis and a .NET ASMX Webservice and am experiencing a problem and was wondering if anyone has an idea of what is going on. If I have a class that contains a data member that is abstract and try to pass a derived class type into