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 ends

re: defining OUT parameter for use by java2wsdl

2005-02-15 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am curious if there is a way to define an OUT parameter for java2wsdl. It appears not to know how to handle javax.xml.rpc.holders.StringHolder, when I use that to define my parameter. Thanx. - -- Love is mutual self-giving that ends in self-recovery

RE: Noob : axis-java2wsdl ClassNotFoundException

2005-01-27 Thread James Clinton
Brad I don't use the apache extended ant task because of reliability problems. If you keen to move forward in your work try using this: target name=java2wsdl echo message=running Java2WSDL... / java classname

Re: Noob : axis-java2wsdl ClassNotFoundException

2005-01-27 Thread Davanum Srinivas
to move forward in your work try using this: target name=java2wsdl echo message=running Java2WSDL... / java classname=org.apache.axis.wsdl.Java2WSDL arg value=--all / arg value=--implClass / arg value=${ws.package.name

RE: Noob : axis-java2wsdl ClassNotFoundException

2005-01-27 Thread James Clinton
Great news. Cheers. -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: 27 January 2005 11:08 To: [EMAIL PROTECTED] Subject: Re: Noob : axis-java2wsdl ClassNotFoundException James, i already fixed this problem yesterday. (try latest cvs/nightly - http

RE: Noob : axis-java2wsdl ClassNotFoundException

2005-01-27 Thread Ephemeris Lappis
in the java2wsdl task classpath, and the taskdef classpath must me extended to include all the compilation directories paths. This is obviously not correct ! In conclusion : the bug remains the same... Since the #1739 bug is blocking to go further, i have not tested the resulting web service. It should

RE: Noob : axis-java2wsdl ClassNotFoundException

2005-01-26 Thread Ephemeris Lappis
for many weeks... Hello, Davanum !!!??? I hope this can help you. -Message d'origine- De : Baker, Brad (Contr) [mailto:[EMAIL PROTECTED] Envoye : mercredi 26 janvier 2005 17:42 A : [EMAIL PROTECTED] Objet : Noob : axis-java2wsdl ClassNotFoundException Hi all, I have been read

Re: Noob : axis-java2wsdl ClassNotFoundException

2005-01-26 Thread Davanum Srinivas
] Envoye : mercredi 26 janvier 2005 17:42 A : [EMAIL PROTECTED] Objet : Noob : axis-java2wsdl ClassNotFoundException Hi all, I have been read looking at this for 3 days and can't seem to see my error and yes I have read the list server for the past 6 months seeing if this has been

RE: Noob : axis-java2wsdl ClassNotFoundException

2005-01-26 Thread Ephemeris Lappis
-java2wsdl ClassNotFoundException I had a similar problem few weeks ago... Somebody said that axis ant tasks don't take into account the inner classpath elements. According to my tests, it does, but not for all classes : it seems the main source java class is actually resolved from the nested

Re: Noob : axis-java2wsdl ClassNotFoundException

2005-01-26 Thread Davanum Srinivas
- De : Ephemeris Lappis [mailto:[EMAIL PROTECTED] Envoye : mercredi 26 janvier 2005 18:59 A : [EMAIL PROTECTED] Objet : RE: Noob : axis-java2wsdl ClassNotFoundException I had a similar problem few weeks ago... Somebody said that axis ant tasks don't take into account the inner

RE: Noob : axis-java2wsdl ClassNotFoundException

2005-01-26 Thread Ephemeris Lappis
-java2wsdl ClassNotFoundException Ephemeris, Can you please check if both bugs are still there in latest cvs? last i remember about the classloader bug was something screwy in ant. so can you please use the latest release of ant to check if the class not found problem is present as well. Once you

RE: Java2Wsdl issue

2005-01-25 Thread Harm de Laat
PROTECTED] Cc: Subject:Re: Java2Wsdl issue Patrick, this smells like a bug, can you please try latest cvs/nightly and log a bug report if the problem still exists? thanks, dims On Mon, 24 Jan 2005 14:00:18 +, Patrick Cogan [EMAIL PROTECTED] wrote: Hi Harm, I used to work

Re: Java2Wsdl issue

2005-01-25 Thread Davanum Srinivas
: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Mon 1/24/2005 10:21 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Subject:Re: Java2Wsdl issue Patrick, this smells like a bug, can you please try latest cvs/nightly and log a bug report if the problem still exists? thanks

Java2Wsdl issue

2005-01-24 Thread Harm de Laat
) { return; } } I'm running the following command: java2wsdl -o webservices/ChangeSimFormService.wsdl -yRPC -uLITERAL -l http://localhost:8080/WEO/webservices/ChangeSimFormService -n http://dataservices.weo.mycomp.nl/SOAP/ChangeSimFormService --PkgtoNS nl.mycomp.quicksilver.jaxb=http

Re: Java2Wsdl issue

2005-01-24 Thread Patrick Cogan
ChangeSimFormService { public User getString() { return null; } public void echo( User user ) { return; } } I'm running the following command: java2wsdl -o webservices/ChangeSimFormService.wsdl -yRPC -uLITERAL -l http://localhost:8080/WEO/webservices

RE: Java2Wsdl issue

2005-01-24 Thread Harm de Laat
Thanks for the quick reply... Okay I'll try to provide as much info as possible: This is the interface / class from which I'm trying to generate a WSDL from (Using Java2Wsdl): package nl.vodafone.cal.webservices; import nl.vodafone.quicksilver.jaxb.CreditVettingRequest; import

Re: Java2Wsdl issue

2005-01-24 Thread Patrick Cogan
: This is the interface / class from which I'm trying to generate a WSDL from (Using Java2Wsdl): package nl.vodafone.cal.webservices; import nl.vodafone.quicksilver.jaxb.CreditVettingRequest; import nl.vodafone.quicksilver.jaxb.CreditVettingResponse; public interface CreditService

Re: Java2Wsdl issue

2005-01-24 Thread Davanum Srinivas
to generate a WSDL from (Using Java2Wsdl): package nl.vodafone.cal.webservices; import nl.vodafone.quicksilver.jaxb.CreditVettingRequest; import nl.vodafone.quicksilver.jaxb.CreditVettingResponse; public interface CreditService { public CreditVettingResponse checkCredit

Java2Wsdl issue

2005-01-19 Thread Harm de Laat
Hi Guys, I have used Java2WSDL to generate my .wsdl file. I have succesfully deployed my WSDL, using deploy.wsdd. And I have copied my classes to the WEB-INF/classes dir. If I call: http://localhost:8080/axis/services/PersonService?wsdl I get the following output: Sorry, something

RE: Java2Wsdl issue

2005-01-19 Thread James Clinton
Interesting..have you tried using wsdl2java on the generated WSDL? This may hold some clues to your problem. -Original Message- From: Harm de Laat [mailto:[EMAIL PROTECTED] Sent: 19 January 2005 14:14 To: [EMAIL PROTECTED] Subject: Java2Wsdl issue Hi Guys, I have used Java2WSDL

Re: java2wsdl ant task for document/literal

2005-01-05 Thread Bill Keese
them? Are you using beanSerializer for automatic serialization/deserialization of things like class Employee? Bill Michael Schuerig wrote: 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

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 : snip 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 takes

[Java2WSDL] externalize schema

2004-12-28 Thread F.K.
Hi all, I would like to know if it is possible to generate a wsdl file without the schemas, generating them in separated files. Thx and happy New Year. Fanch

[Java2WSDL] externalize schema

2004-12-28 Thread F.K.
Hi all, I would like to know if it is possible to generate a wsdl file without the schemas, generating them in separated files. Thx and happy New Year. Fanch

Re: java2wsdl ant task for document/literal

2004-12-22 Thread WAJSBERG Julien RD-BIZZ
problems with the java2wsdl task, i have finally use a 'wrapped' axis wsdl to generate my client stubs for a single operation service that takes a simple javabean argument (a string and an int). I use the SUN WTK 2.1 with its first JSR172 implementation, that only supports the document/literal

Re: java2wsdl ant task for document/literal

2004-12-22 Thread WAJSBERG Julien RD-BIZZ
that. 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 takes a simple javabean argument (a string and an int). I use the SUN WTK 2.1 with its first JSR172 implementation, that only supports the document/literal

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

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 A AElement/ (of type X) /A document AElement/ (of type X) I believe this is not part of

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 A AElement/ (of type X) /A document AElement/ (of type X) I believe

Re: java2wsdl ant task for document/literal

2004-12-21 Thread Jeff Greif
one another in whether wrapping is used for a particular operation. Jeff - Original Message - From: Daniel 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

RE: java2wsdl ant task for document/literal

2004-12-21 Thread Ephemeris Lappis
with the java2wsdl task, i have finally use a 'wrapped' axis wsdl to generate my client stubs for a single operation service that takes a simple javabean argument (a string and an int). I use the SUN WTK 2.1 with its first JSR172 implementation, that only supports the document/literal as specified. The service

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

Re: java2wsdl ant task for document/literal

2004-12-20 Thread V D
). From my experience, Axis 1.2 has problems with wrapped style too. For example, using Java2Wsdl tool, the generated wsdl is bad (generates error when using Wsdl2Java), also, the generated wsdl has some of the arrays data wrapped up, while to my opinion, it should not. In my case, I have

Re: java2wsdl ant task for document/literal

2004-12-20 Thread Davanum Srinivas
). And it's actually quite well supported by Axis 1.2 release candidates :) (look for WRAPPED-style web services in axis documentation). From my experience, Axis 1.2 has problems with wrapped style too. For example, using Java2Wsdl tool, the generated wsdl is bad (generates error when

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.

RE: java2wsdl ant task for document/literal

2004-12-20 Thread Ephemeris Lappis
: Re: java2wsdl ant task for document/literal Philippe Philippe Philippe Good question. I assume that this problem was Philippe talked about so many Philippe times up here, someone must listen. However, I am Philippe wrong to assume forum Philippe can replace bug report (probably some laziness kick

RE: java2wsdl ant task for document/literal

2004-12-20 Thread Ephemeris Lappis
... Ideas are welcome... Philippe -Message d'origine- Philippe De : WAJSBERG Julien RD-BIZZ Philippe [mailto:[EMAIL PROTECTED] Philippe Envoyé : lundi 20 décembre 2004 09:14 Philippe À : [EMAIL PROTECTED] Philippe Objet : Re: java2wsdl ant task for document/literal Philippe Philippe Philippe

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

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

Re: java2wsdl ant task for document/literal

2004-12-20 Thread Davanum Srinivas
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 wsdl from a programming language

RE: java2wsdl ant task for document/literal

2004-12-20 Thread Ephemeris Lappis
: java2wsdl ant task for document/literal Philippe Philippe Philippe Philippe One thing that didn't become clear for me during Philippe this thread is why Philippe people are using java2wsdl at all. When I started Philippe with Axis and web Philippe services, I, too, had the idea of making Axis

Re: java2wsdl ant task for document/literal

2004-12-19 Thread Davanum Srinivas
PROTECTED] Philippe Envoye : vendredi 17 decembre 2004 21:39 Philippe A : [EMAIL PROTECTED]; [EMAIL PROTECTED] Philippe Objet : Re: java2wsdl ant task for document/literal Philippe Philippe Philippe I studied Axis 1.2 since it started and java2wsdl Philippe NEVER worked for D/L. Philippe I

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

RE: java2wsdl ant task for document/literal

2004-12-17 Thread Ephemeris Lappis
De : Henry Lu [mailto:[EMAIL PROTECTED] Philippe Envoye : vendredi 17 decembre 2004 21:39 Philippe A : [EMAIL PROTECTED]; [EMAIL PROTECTED] Philippe Objet : Re: java2wsdl ant task for document/literal Philippe Philippe Philippe I studied Axis 1.2 since it started and java2wsdl Philippe NEVER worked

Bug in Java2Wsdl

2004-12-04 Thread V D
I have an interface: public interface Test{ public String [] getList(); } when using java2wsdl with document and literal style, the return type of getList is String, not String[] or ArrayOfString, or anything like that. This is Axis 1.2 RC2

Re: Bug in Java2Wsdl

2004-12-04 Thread V D
More on this, when using Java2Wsdl with document and literal style, and also using it with rpc encoding on a same interface, any method that returns an array of a bean class will have different signatures (between doc/lit style and rpc/enc style). For example: public interface Test{ public

Java2WSDL: response mapped back to XML improperly

2004-12-02 Thread ANDREW MICONE
I'm using WSDL2Java to create a service consumed by a .NET client I can't change for a WSDL we're mandated to use. It has a service called GetService defined as follows in the WSDL (details omitted): complexType name=ArrayOfstring complexContent restriction base=SOAP-ENC:Array

Does Java2WSDL with multiple port types?

2004-11-19 Thread Vy Ho
I would like to use Java2WSDL to generate wsdl file with multiple port types. This means it has to take multiple class name. One for each port type. Right now, I have to manually merge all these together. Thanks, vh

Error when using WSDL2Java and Java2WSDL

2004-10-21 Thread Florian Theurich
Interface and go from there: 1. First I do not know which approach makes more sense for me? 2. Regardless of which approach I would go for, I get an error message when trying to use WSDL2Java or Java2WSDL It says (in both cases): log4j: WARN No appenders could be found for logger

Java2WSDL on class that implements multiple interfaces

2004-10-20 Thread Eric Chijioke
interface implementations in XML schema, and if so, shouldn't Java2WSDL be doing it? This may be the wrong group to pose this question to as it probably has more to do with XML Schema, but I think it manifests itself as a shortcoming of the Java2WSDL tool. -Eric

RE: Java2WSDL on class that implements multiple interfaces

2004-10-20 Thread Arijit Mukherjee
] Sent: 20 October 2004 16:35 To: [EMAIL PROTECTED] Subject: Java2WSDL on class that implements multiple interfaces Running the WSDL2Java tool on a class that implements multiple interfaces (or a base class and 1+ interfaces), results in a WSDL schema that (randomly?) selects only one

Noob Question: JAVA2WSDL

2004-10-20 Thread maxmaxwell
a web service that I couldn't figure out. Say I have a class like this: package servicetest; public class MyClass { public static final String SOME_STRING = Option1; ..etc..etc... } How do I have it so that JAVA2WSDL put in the constant definition for SOME_STRING in the WSDL so when I run

java2wsdl error

2004-10-12 Thread Henry Lu
I gor the following errors when I ran java2wsdl command. I did include activation.jar and mail.jar in my classpath. java.lang.NoClassDefFoundError: javax/activation/DataSource .. Is something missing? -Henry

Re: java2wsdl error

2004-10-12 Thread Henry Lu
at 18:36, Henry Lu wrote: I gor the following errors when I ran java2wsdl command. I did include activation.jar and mail.jar in my classpath. java.lang.NoClassDefFoundError: javax/activation/DataSource .. Is something missing? -Henry

Java2WSDL ant task not keeping method param names

2004-10-08 Thread Curt P. Stanton
or if the java2wsdl task isnt reading it properly. Any help would be greatly appreciated. Thanks in advance, Curt Stanton target name=compile depends=init description=compile the source !-- Compile the java code from ${src} into ${build} -- javac srcdir=${src} destdir=${build} target=1.4 debug=true

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread mmosttler
Title: Message 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 Message-From: Curt P. Stanton [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 7:47

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Curt P. Stanton
Title: Message Thanks Marcus that was my problem. Sagar, I am not sure if you are having the same problem I was, but I needed to supply Java2WSDL with a class, not an interface. Other than that, I dont know where you would have a problem. -Curt -Original Message- From

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Sagar Pidaparthi
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 param names

RE: Java2WSDL ant task not keeping method param names

2004-10-08 Thread Curt P. Stanton
Title: Message The issue is that you need to have the java class files compiled with the debug option. That is where Java2WSDL gets the param names. But it has to be a class not an interface that gets compiled with the debug option. -Original Message- From: Sagar Pidaparthi

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: problem getting java2wsdl ant task to be created

2004-10-07 Thread Peter Smith
I think the task is called axis-java2wsdl; not java2wsdl. Refer to the axis-tasks.properties file in your axis-ant.jar and/or the documentation in axis/docs/ant Cheers, Peter. - Original Message - From: James Black [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 08, 2004

Problems generating Document / Literal wsdl using Java2Wsdl

2004-09-08 Thread Canham Michael
a typemapping/beanmapping for 'wd.common.access.ExternAccess' I have tried to do this, from following suggestions from theis mail list but nothing seems to alter this output .. I am using Eclipse (and it is interacting with Tomcat 5.0) .. I running the java2wsdl

RE: Java2WSDL Error - Please register a typemapping/beanmapping for

2004-08-31 Thread Gerlach, Daryl CTR (NAVSISA Code 942)
Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 5:02 PM To: [EMAIL PROTECTED] Subject: RE: Java2WSDL Error - Please register a typemapping/beanmapping for If you don't use an ant task here is a possible solution. Edit and copy the following line to your Server-config.wsdd

Java2WSDL Error - Please register a typemapping/beanmapping for

2004-08-27 Thread Gerlach, Daryl CTR (NAVSISA Code 942)
I have an existing application that I am attempting to turn into a web service. I am using Axis 1.2 beta Java2WSDL using Document/Literal settings to generate the WSDL from Java source. The methods return custom exceptions. When I run Java2WSDL I get the following error message: Please

RE: Java2WSDL Error - Please register a typemapping/beanmapping for

2004-08-27 Thread Christophe Roudet
Try something like that in your ant task: axis-java2wsdl ... complextype classname=my.package.MyException namespace=urn:my.namespace / ... /axis-java2wsdl Christophe -Original Message- From: Gerlach, Daryl CTR (NAVSISA Code 942) [mailto:[EMAIL PROTECTED] Sent

RE: Java2WSDL Error - Please register a typemapping/beanmapping for

2004-08-27 Thread Sagar Pidaparthi
in this case, we'd be mapping the my.java.thingy class to the XML QName [someNamespace]:[local]. -Original Message- From: Gerlach, Daryl CTR (NAVSISA Code 942) [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 1:37 PM To: [EMAIL PROTECTED] Subject: Java2WSDL Error - Please register

Java2WSDL help

2004-08-25 Thread
Hi, I want to convert the %AXIS_HOME%/samples/faults example from rcp/encoded to document/literal. I run the java2wsdl command but I get an error. Just curious why is it asking for typemapping info when it's create my wsdl file. Would you know how I can get pass this error message? Thanks

Re: Java2WSDL help

2004-08-25 Thread Henry Lu
Hi, I want to convert the %AXIS_HOME%/samples/faults example from rcp/encoded to document/literal. I run the java2wsdl command but I get an error. Just curious why is it asking for typemapping info when it's create my wsdl file. Would you know how I can get pass this error message? Thanks axis 1.2

RE: Java2WSDL help

2004-08-25 Thread Anderson Jonathan
My team has been building WS-I compliant doc/lit services and clients for months now using Axis 1.2 alphas, beta 1, and beta 2. We just build our services from the XSD+WSDL in (WSDL2Java), instead of from the Java code out (Java2WSDL). Very important to understand the implications of either

RE: Java2WSDL help

2004-08-25 Thread Anand Natrajan
Dexter, Henry: Axis 1.2b2 works just fine with doc/lit. From the error you're reporting, it looks like java2wsdl cannot find a way to serialise some of your custom data types. I have a similar situation, and I use the Ant task below. Perhaps you can start from that to construct your command-line

java2wsdl and wsi conformance

2004-08-24 Thread Ricardo Rocha
Hi all. I'm using the Java2WSDL tool to generate my WSDL from Java Interfaces. On these interfaces i have my own complex objects defined (beans), and i'm throwing exceptions. I'm now trying to get it to be WSI conformant, but still have some issues. Started trying with the Java2WSDL utility

RE: java2wsdl and wsi conformance

2004-08-24 Thread Anne Thomas Manes
Ricardo, Issue 1: where did the imported file (http://glite.org/wsdl/services/org.glite.data.catalog) come from? Was this generated by Java2WSDL or is this a file you defined? What type of file is it? (I gather that it isn't a schema.) If your WSDL references elements or types defined

RE: java2wsdl and wsi conformance

2004-08-24 Thread Anne Thomas Manes
Ricardo, Issue 1: where did the imported file (http://glite.org/wsdl/services/org.glite.data.catalog) come from? Was this generated by Java2WSDL or is this a file you defined? What type of file is it? (I gather that it isn't a schema.) If your WSDL references elements or types defined

java2wsdl: ClassNotFoundException

2004-08-19 Thread Wagle, Shriniwas
Running axis 1.1Getting following error while running the java2wsdl ant task:[axis-java2wsdl] Java2WSDL com.abc.systemsigner.service.HSMService[axis-java2wsdl] java.lang.ClassNotFoundException:com.abc.systemsigner.service.HSMServiceThe compiledinterface and class files

problem with Java2WSDL?

2004-08-08 Thread Madeleine Wright
I have tried several times to generate a WSDL using Java2WSDL. Finally I followed the pattern suggested in an article and, after preparing the classes etc, ran: java org.apache.axis.wsdl.Java2WSDL -o cruise.wsdl -l http://localhost:8080/axis/servlet/AxisServlet -n urn:cruise -S CruiseService

RE: Java2WSDL importSchema - how to use in a WSDD

2004-08-05 Thread Nathan Sowatskey
Hi Have you ever used java2wsdl to create wsdl for document/literal encodings for complex types that required a typemapping? Thanks Nathan On Tue, 2004-08-03 at 23:39, Mark D. Hansen wrote: Nobody answered this, so I dug around in the source code and found out that it can be done

RE: Java2WSDL importSchema - how to use in a WSDD

2004-08-03 Thread Mark D. Hansen
-Original Message- From: Mark D. Hansen [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 1:35 PM To: AXIS Users (E-mail) Subject: Java2WSDL importSchema - how to use in a WSDD Is it possible for me to get the ?WSDL generated by a deployed service to include a schema

RE: Java2WSDL via Ant - cannot get it to work!

2004-08-02 Thread Roy, Anthony
, Anthony [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 11:10 AM To: '[EMAIL PROTECTED]' Subject: Java2WSDL via Ant - cannot get it to work! Hi all, I have been struggling for days trying to get Java2WSDL to work so that I can fully automate my build process. The closest I

RE: Java2WSDL via Ant - cannot get it to work!

2004-08-02 Thread Arnaud Vezain
: axis-java2wsdl output=${service.ws.dir}/${service.wsdl} location=${service.location} namespace=${service.nsmapping} namespaceimpl=${service.nsmapping} classname=${service.package}.${service.name} implclass=${service.package}.${service.name}SoapBindingImpl classpath pathelement location

java2wsdl, complex types and document/literal - Is it supposed to work?

2004-08-02 Thread Nathan Sowatskey
Hi I have been trying to use java2wsdl to get the WSDL for an interface that uses a complex class that requires a typemapping to a BeanSerializer. java2wsdl works fine if I leave the encoding to be the default. If I define document/literal, like this: [EMAIL PROTECTED]:~/myprojects/... java

RE: Java2WSDL via Ant - cannot get it to work!

2004-08-02 Thread Roy, Anthony
I had myself problems of NoClassdefFound with classpath and axis Ant tasks. I wrote a script with an embeded classpath property like : axis-java2wsdl output=${service.ws.dir}/${service.wsdl} location=${service.location} namespace=${service.nsmapping} namespaceimpl=${service.nsmapping

Java2WSDL via Ant - cannot get it to work!

2004-07-30 Thread Roy, Anthony
Hi all, I have been struggling for days trying to get Java2WSDL to work so that I can fully automate my build process. The closest I have got is the following: target name=java2wsdl property name=NAMESPACE value=ESTARMatcher/ !-- axis-java2wsdl output

RE: Java2WSDL via Ant - cannot get it to work!

2004-07-30 Thread Christophe Roudet
] Sent: Friday, July 30, 2004 11:10 AM To: '[EMAIL PROTECTED]' Subject: Java2WSDL via Ant - cannot get it to work! Hi all, I have been struggling for days trying to get Java2WSDL to work so that I can fully automate my build process. The closest I have got is the following: target name

Cant execute java2wsdl in a loop

2004-07-30 Thread Sagar Pidaparthi
Hi, Java2wsdl and wsdl2java programs seem to have an System.exit() of some kind. This makes it difficult to execute this command in a loop repeatedly. Is this true? What is the way around it? Regards Sagar

Re: Differences in WSDL generated from JAVA2WSDL and Dynamic WSDL?

2004-07-29 Thread Dana Kaufman
the wsdl using ?wsdl returns a WSDL with the namespace set wrong in the response. The wsdl file generated in using Java2WSDL is correct. Below is an example. Notice the namespace in the request is basically my package name http://test.forum.com but the response has info about my server substituted

Identifying a WSDD file for Java2wsdl to define the beanMapping

2004-07-28 Thread Nathan Sowatskey
Hi I am trying to use java2wsdl to create the wsdl for a set of Java classes. I have a complex class that needs to be serialised with the bean serialiser. I understand that I need to make this association in a .wsdd file, which should look like this: deployment xmlns=http://xml.apache.org/axis

Re: Identifying a WSDD file for Java2wsdl to define the beanMapping

2004-07-28 Thread karim
Nathan Sowatskey wrote: Hi I am trying to use java2wsdl to create the wsdl for a set of Java classes. I have a complex class that needs to be serialised with the bean serialiser. I understand that I need to make this association in a .wsdd file, which should look like this: deployment xmlns=http

Re: Identifying a WSDD file for Java2wsdl to define the beanMapping

2004-07-28 Thread Nathan Sowatskey
Hi Thanks for the reply, but I think it was bit cryptic ;-) I can see that I could call the code as you indicate, but how do I do that when I am using the tool? I think that I have to do this in a deploy.wsdd, but how do I connect the java2wsdl tool with such a file? Regards Nathan On Wed

Differences in WSDL generated from JAVA2WSDL and Dynamic WSDL?

2004-07-28 Thread Dana Kaufman
Hi, I have an Axis 1.2beta2 server and a few .Net clients. I noticed that the WSDL I generate with Java2WSDL is different than the one I get from Axis dynamically using ?wsdl. Specifically ?wsdl makes all of the soapAction attributes blank () and seems to strip out the namespace definitions

Re: Differences in WSDL generated from JAVA2WSDL and Dynamic WSDL?

2004-07-28 Thread Dana Kaufman
Ok, I tracked down the exact problem I am having with the WSDLs. Accessing the wsdl using ?wsdl returns a WSDL with the namespace set wrong in the response. The wsdl file generated in using Java2WSDL is correct. Below is an example. Notice the namespace in the request is basically my

Re: Differences in WSDL generated from JAVA2WSDL and Dynamic WSDL?

2004-07-28 Thread Davanum Srinivas
Java2WSDL is correct. Below is an example. Notice the namespace in the request is basically my package name http://test.forum.com but the response has info about my server substituted in which is wrong, namespace should match the request: wsdl:input name=echoRequest

Java2wsdl usage to generate wsdd file

2004-07-20 Thread Sagar Pidaparthi
Hi, When I use java2wsdl utility to generate wsdd file. It generates the file containing svcname followed by SoapBindingSkeleton, instead of just SvcName As shown below. AccountManagerClientAgentSoapBindingSkeleton What am I doing wrong to generate the wrong wsdd file? How do I correct

Java2Wsdl options questions

2004-07-17 Thread David Thielen
Hi; I have a couple of questions about java2wsdl options that the documentation doesnt answer: Whats the purpose of target namespace? Its always set but what criteria should be used in setting it and why do the examples all use urn: instead of http:? Why would you have

[axis]: Can I define my java to pass an array of a base class - and Java2Wsdl will handle all child classes?

2004-07-17 Thread David Thielen
Hi; Here is my situation. I want to have a web service with the following method: String doIt(Base [] params) class Base { } class Derived extends Base { } class Another extends Base { } Can this be done? Thanks - dave

Re: newbie: java2WSDL SOAPFault

2004-07-14 Thread Ivano Luberti
Since i've got no responses i wrote to the dev list, they answered me the problem i was reporting was caused from the fact i didn't have the wsdl4j.jar in the classpath: i was misleaded by the fact that in the AXIS guide these are the library to put in the AXIS PATH: set

RE: java2wsdl Help needed

2004-07-12 Thread Christophe Roudet
] Subject: java2wsdl Help needed this is a simple java class , I want to generate a simple WSDL frile from it and then use that WSDL to create stubs on the client side . The code is as follows package samples.myEchoInt; public class EchoIntService { public int

Re: java2wsdl Help needed

2004-07-12 Thread Laxma Reddy Dendi
; } } _ My java2wsdl arguement is java org.apache.axis.wsdl.Java2WSDL -o wp.wsdl -lhttp://localhost:8080/axis/services/EchoIntService; -n urn:myservice.com -psamples.myEchoInt urn:myservice.com samples.myEchoInt.EchoIntService I get an error saying

Java2WSDL importSchema - how to use in a WSDD

2004-07-08 Thread Mark D. Hansen
Is it possible for me to get the ?WSDL generated by a deployed service to include a schema (in the wsdl:types section) that is imported from an external file or URL? I notice that Java2WSDL has an importSchema option, but I can't seem to figure out how to use it in a WSDD. Thanks.

java2wsdl - Message element in WSDL for RPC/Lit and Doc/lit (wrapped)

2004-07-07 Thread sanjay
Hi I am trying out different styles of generating wsdl with Java2WSDL. For RPC/lit types it generates the wsd:part name= type= And for Doc /Lit types its wsdl:part name= element= WSDL1.1 specification section 2.3 says these are equivalent (http://www.w3.org/TR/wsdl#_message

RE: java2wsdl - Message element in WSDL for RPC/Lit and Doc/lit (wrapped)

2004-07-07 Thread Junaid . Bhatra
cc PM Subject RE: java2wsdl - Message element in Please

  1   2   3   4   >