Re: Java2WSDL ant task

2005-02-19 Thread Hollywood
Nevermind on this. Copy/Paste error I finally found! :( - Original Message - From: "Hollywood" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 19, 2005 9:30 AM Subject: Java2WSDL ant task > I have the following sni

Java2WSDL ant task

2005-02-19 Thread Hollywood
I have the following snippet in my build.xml file: However, it claims it can not find the class file to generate the WSDL from. Anyone have any thoughts? Thanks!

Re: Problem with java2wsdl ant task for document/literal (was Re: webservice won't deploy at all)

2005-02-17 Thread Sebastien Mayemba Mbokoso
In the documentation, they say you can juste have either LITERAL or ENCODED for the Axis 'use' option. On Thu, 17 Feb 2005 12:47:05 -0500, James Black <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I removed > > style="wrapped" > use="literal" > > from my ant

re: Problem with java2wsdl ant task for document/literal (was Re: webservice won't deploy at all)

2005-02-17 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I removed style="wrapped" use="literal" from my ant task, java2wsdl, and now I can deploy my webservice. If I want to use the ant task to generate my files, how do I tell it to use document/literal wrapped. Thanx. - -- "Love is mutual self-giving that e

Re: java2wsdl ant task for document/literal

2005-01-05 Thread Bill Keese
Michael -after you hand code the WSDL file (and presumably link the WSDD file to the WSDL file as specified in http://www.osmoticweb.com/axis-wsdd/wsdlFile.htm), how do you get the java files? For example, assuming that you have a web service to look up employee information, you would want at

Re: java2wsdl ant task for document/literal

2004-12-29 Thread Anne Thomas Manes
Just to clarify: On Wed, 22 Dec 2004 09:52:19 +0100, WAJSBERG Julien RD-BIZZ <[EMAIL PROTECTED]> wrote: > Ephemeris Lappis a écrit : > > >Despite my problems with the java2wsdl task, i have finally use a 'wrapped' > >axis wsdl to generate my client stubs for a single operation service that > >ta

Re: java2wsdl ant task for document/literal

2004-12-22 Thread WAJSBERG Julien RD-BIZZ
Basic Profile compliance... Philippe Maseres <<>> -Message d'origine- <<>> De : Jeff Greif [mailto:[EMAIL PROTECTED] <<>> Envoyé : mardi 21 décembre 2004 17:07 <<>> À : [EMAIL PROTECTED] <<>> Objet : Re: java2wsdl ant task for documen

Re: java2wsdl ant task for document/literal

2004-12-22 Thread WAJSBERG Julien RD-BIZZ
Ephemeris Lappis a écrit : Hello. I'm not sure i have understood it all. Sincerly, i remember, years ago, i had a look at the CORBA/GIOP/IIOP marshalling protocols, and finished the day with the same headache ! But, once more, we were lucky : we had IDL to write our interfaces... As i understand, w

RE: java2wsdl ant task for document/literal

2004-12-21 Thread Ephemeris Lappis
Philippe Maseres <<>> -Message d'origine- <<>> De : Jeff Greif [mailto:[EMAIL PROTECTED] <<>> Envoyé : mardi 21 décembre 2004 17:07 <<>> À : [EMAIL PROTECTED] <<>> Objet : Re: java2wsdl ant task for document/literal <<>&g

RE: java2wsdl ant task for document/literal

2004-12-21 Thread Michael Merz
al Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 12:38 PM To: [EMAIL PROTECTED] Subject: Re: java2wsdl ant task for document/literal Michael, I do advocate starting from WSDL, but i do find it convenient to start from a java skeleton code and then

Re: java2wsdl ant task for document/literal

2004-12-21 Thread Jeff Greif
Beland" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 21, 2004 12:53 AM Subject: Re: java2wsdl ant task for document/literal > > > In fact, to be more precise, it means that there is a schema element, with > the same name as the operation, that co

Re: java2wsdl ant task for document/literal

2004-12-21 Thread WAJSBERG Julien RD-BIZZ
Daniel Beland a écrit : In fact, to be more precise, it means that there is a schema element, with the same name as the operation, that contains (wraps) the actual document element representing all the parameters. ie: wrapped (of type X) document (of type X) I believe this is not part of WS-I

Re: java2wsdl ant task for document/literal

2004-12-21 Thread Daniel Beland
In fact, to be more precise, it means that there is a schema element, with the same name as the operation, that contains (wraps) the actual document element representing all the parameters. ie: wrapped (of type X) document (of type X) I believe this is not part of WS-I and was defined

Re: java2wsdl ant task for document/literal

2004-12-21 Thread WAJSBERG Julien RD-BIZZ
Ephemeris Lappis a écrit : I'm not a SOAP expert ! I think i had understood the difference between document and wrapped styles, and i suppose tools that will process the repective wsdl files will not generate similar codes : both use xml messages without soap encoding, but in document mode the java

RE: java2wsdl ant task for document/literal

2004-12-20 Thread Ephemeris Lappis
tax ! Your suggestion about alternative methods and tools to mkae wsdl first are welcome... Regards. Philippe Maseres <<>> -Message d'origine- <<>> De : Michael Schuerig [mailto:[EMAIL PROTECTED] <<>> Envoyé : lundi 20 décembre 2004 21:32 <<>

Re: java2wsdl ant task for document/literal

2004-12-20 Thread Davanum Srinivas
Michael, I do advocate starting from WSDL, but i do find it convenient to start from a java skeleton code and then tweak the wsdl using the wsdl editors like XMLSPY. thanks, dims On Mon, 20 Dec 2004 21:31:33 +0100, Michael Schuerig <[EMAIL PROTECTED]> wrote: > > One thing that didn't become cl

Re: java2wsdl ant task for document/literal

2004-12-20 Thread Michael Schuerig
One thing that didn't become clear for me during this thread is why people are using java2wsdl at all. When I started with Axis and web services, I, too, had the idea of making Axis generate the "right" WSDL for me automagically. I've given up on this idea since. I don't object to generating w

Re: java2wsdl ant task for document/literal

2004-12-20 Thread Vy Ho
Use wrapped style, and it works with document/literal webservices (that is what it is, with a spin on how you program it). Ephemeris Lappis wrote: I'm not a SOAP expert ! I think i had understood the difference between document and wrapped styles, and i suppose tools that will process the repecti

RE: java2wsdl ant task for document/literal

2004-12-20 Thread Ephemeris Lappis
ith literal use"... Ideas are welcome... <<>> -Message d'origine- <<>> De : WAJSBERG Julien RD-BIZZ <<>> [mailto:[EMAIL PROTECTED] <<>> Envoyé : lundi 20 décembre 2004 09:14 <<>> À : [EMAIL PROTECTED] <<>

RE: java2wsdl ant task for document/literal

2004-12-20 Thread Ephemeris Lappis
I have open a new bug report this morning (in France), with the a simple example: AXIS-1734. We will appreciate help... <<>> -Message d'origine- <<>> De : V D [mailto:[EMAIL PROTECTED] <<>> Envoyé : lundi 20 décembre 2004 14:37 <<>>

Re: java2wsdl ant task for document/literal

2004-12-20 Thread V D
Good question. I assume that this problem was talked about so many times up here, someone must listen. However, I am wrong to assume forum can replace bug report (probably some laziness kick in too), and I should have file the bug report instead. I'll do that and post a link here later. Tha

Re: java2wsdl ant task for document/literal

2004-12-20 Thread Davanum Srinivas
VD, Do you have a open bug? thanks, dims On Mon, 20 Dec 2004 08:01:56 -0500, V D <[EMAIL PROTECTED]> wrote: > WAJSBERG Julien RD-BIZZ wrote: > > > Ephemeris Lappis a écrit : > > > >> Thanks for your feedback. Bad news !... > >> I'd like to have a point of view from the Axis team about this iss

Re: java2wsdl ant task for document/literal

2004-12-20 Thread V D
WAJSBERG Julien RD-BIZZ wrote: Ephemeris Lappis a écrit : Thanks for your feedback. Bad news !... I'd like to have a point of view from the Axis team about this issue. I'm not currently working a lot in web services domains, but according to what i've been reading in this list and others, documen

Re: java2wsdl ant task for document/literal

2004-12-20 Thread WAJSBERG Julien RD-BIZZ
Ephemeris Lappis a écrit : Thanks for your feedback. Bad news !... I'd like to have a point of view from the Axis team about this issue. I'm not currently working a lot in web services domains, but according to what i've been reading in this list and others, document/literal seems to be often requi

Re: java2wsdl ant task for document/literal

2004-12-19 Thread Davanum Srinivas
<<>> -Message d'origine- > <<>> De : Henry Lu [mailto:[EMAIL PROTECTED] > <<>> Envoye : vendredi 17 decembre 2004 21:39 > <<>> A : [EMAIL PROTECTED]; [EMAIL PROTECTED] > <<>> Objet : Re: java2wsdl ant task for documen

RE: java2wsdl ant task for document/literal

2004-12-17 Thread Ephemeris Lappis
sage d'origine- <<>> De : Henry Lu [mailto:[EMAIL PROTECTED] <<>> Envoye : vendredi 17 decembre 2004 21:39 <<>> A : [EMAIL PROTECTED]; [EMAIL PROTECTED] <<>> Objet : Re: java2wsdl ant task for document/literal <<>> <<>> <&

Re: java2wsdl ant task for document/literal

2004-12-17 Thread Henry Lu
I studied Axis 1.2 since it started and java2wsdl NEVER worked for D/L. I think the problem is in both of axis.jar and wsdl4j.jar. Specially wsdl4j.jar because it does no generate correct wsdl file for D/L (WS-I compliant). I am still waiting for the Axis development group to fix the problem. -Hen

java2wsdl ant task for document/literal

2004-12-17 Thread Ephemeris Lappis
As many people before i have the same problem with axis 1.2 to generate my wsdl for javabeans or exceptions. I've been trying some of the solutions that have been proposed on this list, such as adding complextype or mapping tags, but the task failed with ClassNotFoundException, although the classes

RE: Java2WSDL ant task not keeping method param names

2004-10-12 Thread mmosttler
-From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 8:55 AMTo: [EMAIL PROTECTED]Subject: RE: Java2WSDL ant task not keeping method param names Can you elaborate on this please.    I face the same problem.  In a message earlier, I was told that

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Curt P. Stanton
[mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 1:37 PM To: [EMAIL PROTECTED] Subject: RE: Java2WSDL ant task not keeping method param names   Hi,   I use the following command to get the wsdl.  I don’t see parameter names in wsdl when I use this command.         <target n

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Sagar Pidaparthi
nt     Do I need to change this in some way to get parameter names in my wsdl.     Thanks   Sagar   -Original Message- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 10:19 AM To: [EMAIL PROTECTED] Subject: RE: Java2WSDL ant task not keeping method pa

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Sagar Pidaparthi
a command line command    I would appreciate any help.   Regards   Sagar   -Original Message- From: Curt P. Stanton [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 10:15 AM To: [EMAIL PROTECTED] Subject: RE: Java2WSDL ant task not keeping method param names   Thanks

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Curt P. Stanton
- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 11:55 AM To: [EMAIL PROTECTED] Subject: RE: Java2WSDL ant task not keeping method param names   Can you elaborate on this please.    I face the same problem.  In a message earlier, I was told that I can see the

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Sagar Pidaparthi
, October 08, 2004 8:47 AM To: [EMAIL PROTECTED] Subject: RE: Java2WSDL ant task not keeping method param names   To have java2wsdl use the method parameter names you need to supply the implementation class.  It reads the param names from the implementation.   marcus -Original

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread mmosttler
AMTo: AxisListSubject: Java2WSDL ant task not keeping method param names I am using ant 1.6.1 in eclipse 3.0   Here is the task I am running   I have tried this with axis 1.1 and 1.2alpha It seems that no matter what I try, I cannot get the method names to be supplied

Java2WSDL ant task not keeping method param names

2004-10-08 Thread Curt P. Stanton
I am using ant 1.6.1 in eclipse 3.0   Here is the task I am running   I have tried this with axis 1.1 and 1.2alpha It seems that no matter what I try, I cannot get the method names to be supplied.  I am not sure if it is no storing the debug info properly when compiling or if the jav

Re: problem getting java2wsdl ant task to be created

2004-10-07 Thread Peter Smith
IL PROTECTED]> Sent: Friday, October 08, 2004 4:34 AM Subject: re: problem getting java2wsdl ant task to be created > I don't know what I am doing wrong, so I thought I would ask, and > hopefully someone can help me understand what may have happened. Thanx. > > I get this erro

re: problem getting java2wsdl ant task to be created

2004-10-07 Thread James Black
I don't know what I am doing wrong, so I thought I would ask, and hopefully someone can help me understand what may have happened. Thanx. I get this error: BUILD FAILED /export2/home/jblack/src/java/build.xml:82: Could not create task or type of type: java2wsdl. When I ran it with -verbose here

RE: java2wsdl ant task ignores its tag

2004-04-14 Thread Rob Jellinghaus
JIRA issue filed: http://nagoya.apache.org/jira/browse/AXIS-1315 Sorry for the long lines in the issue :-( Cheers, Rob -Original Message- From: Rob Jellinghaus [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 3:16 PM To: [EMAIL PROTECTED] Subject: java2wsdl ant task ignores

java2wsdl ant task ignores its tag

2004-04-14 Thread Rob Jellinghaus
I am trying to get started with java2wsdl. I am working with the EJB sample in the latest Axis nightly CVS (the first 20040414 one). As delivered, ws-axis/java/samples/ejb/ant-build.xml cannot actually run the java2wsdl targets. The README in that directory says to specify a classpath which incl

Java2WSDL Ant task question

2004-03-31 Thread Adhamh Findlay
This might be more of an ant specific question but this case is specifically about the Java2WSDL task... I have this task: http://localhost:8080/axis/services/DialogListener"; output="${impl.build}/dsoap.wsdl" namespace="com.adhamh..DialogSOAP" style="rpc" useinheri

RE: AW: usage of java2wsdl ant task

2003-03-26 Thread Davanum Srinivas
> >output="${gen.dir}" url="${wsdl}" verbose="true"> > > > > > > > > > > > > > > > > > > > > >token="

RE: AW: usage of java2wsdl ant task

2003-03-26 Thread Volkmann, Mark
Title: RE: AW: usage of java2wsdl ant task Here are snippets of my Ant bulid file that uses the custom tasks in axis-ant.jar.  Many properties referenced in these targets need to be defined in order for them to work.  I hope this helps.                   description

Re: AW: usage of java2wsdl ant task

2003-03-26 Thread Prakash G.R.
dm.bla.data=urn:data.bla.sdm.de"/> > > > > > > Any tips for improvement are welcome. > > Best regards, > Matthias > > > -Ursprüngliche Nachricht----- > Von: Prakash G.R. [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 2

AW: usage of java2wsdl ant task

2003-03-26 Thread "Geiß, Matthias"
kash G.R. [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 26. März 2003 08:52 An: [EMAIL PROTECTED] Betreff: usage of java2wsdl ant task Hi, Can I get an example/document for using the java2wsdl task in ant? Thanks in advance -Prakash = All the technology in the world will never replace a

usage of java2wsdl ant task

2003-03-25 Thread Prakash G.R.
Hi, Can I get an example/document for using the java2wsdl task in ant? Thanks in advance -Prakash = All the technology in the world will never replace a positive attitude -Harvey Mackay __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA