I have a doc-lit service that mostly uses WSDL2Java-generated classes.
However, for a parameter to one method I use Castor instead of the
Axis-generated
classes. That parameter is defined in a large (1000+ lines), third-party
schema. Let's
call that parameter "BigParam".
To make things easier
nd it back to the server for another purpose!
(NOTE: I need both WebServices and JMS between the client and the server)
Thanks
Fady
- Original Message -
From: "Paul Callahan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, September 14, 2004 2:40 PM
S
: Re: WSDL2Java issue
whats in SomeXObject? what is being generated--in addition to what
should be there?
- Original Message -
From: Fady Kaddoum <[EMAIL PROTECTED]>
Date: Tue, 14 Sep 2004 09:15:56 +0200
Subject: WSDL2Java issue
To: [EMAIL PROTECTED]
Hello everybody!
I 've
whats in SomeXObject? what is being generated--in addition to what
should be there?
- Original Message -
From: Fady Kaddoum <[EMAIL PROTECTED]>
Date: Tue, 14 Sep 2004 09:15:56 +0200
Subject: WSDL2Java issue
To: [EMAIL PROTECTED]
Hello everybody!
I 've developped so
Hello everybody!
I 've developped some services that have the
following format in general:
public SomeXObject[] getAllXObjects()
{
...
}
I generate the client Stub using WSDL2Java and
everythings works fine. On the other hand, on the client side, I get a different
implementation of
I finally figured out why WSDL2Java fails on this example. The key is to
(carefully!) examine this line in the deployment descriptor:
I created a wsdl file and stubs for this example. There appears to be a
problem. On line 3 below, we have *interface* BeanService. On line 4 below
we have *class* BeanService.Order. This will not compile. To make this
work, I put Order class into same package as everything else, and made a
co
If you guys are working on WSDL2Java emitter next week, you might want to
look at this example. I was able to create wsdl file from the service, but
WSDL2Java produces IOException below. Maybe the problem is with the
Java2WSDL emitter (which I used to create the wsdl file), I dunno.
Cheers.
Stan