RE: Exception! java2wsdl tool

2001-06-13 Thread Peter Govind




>This jar is built to work with Axis (http://xml.apache.org/axis).  You'll
>need the axis.jar for it to work.
>
>--G

Ohh darn. Nightly builds. That coupled with me brains are a bad combination! 
LOL!

Well, here goes .

Thanks-a-million "G"




> > -Original Message-
> > From: Peter Govind [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, June 13, 2001 10:45 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Exception! java2wsdl tool
> >
> >
> > >James,
> > >i get this exception when i try to run your tool:
> > >
> > >java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e
> > >http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry
> > >Exception in thread "main" java.lang.NoClassDefFoundError:
> > >org/apache/axis/utils/Options
> > > at
> > org.apache.axis.utils.wsdl.Java2WSDL.java2wsdl(Java2WSDL.java)
> > > at
> > org.apache.axis.utils.wsdl.Java2WSDL.(Java2WSDL.java)
> > > at org.apache.axis.utils.wsdl.Java2WSDL.main(Java2WSDL.java)
> > >
> > >there's no class named Options...
> >
> > Where exactly did you get this jar ? Care to share the URL please ?
> > BTW, maybe the jar needs some other jars to work. That's
> > normally the case
> > with the "NoClassDefFoundError" exception/error.
> >
> >
> > __
> > ___
> > Get Your Private, Free E-mail from MSN Hotmail at
>http://www.hotmail.com.
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Exception! java2wsdl tool

2001-06-13 Thread Joseph George

The java2wsdl download link can be found inside James Birchfield post at the
axis-dev list:-
http://marc.theaimsgroup.com/?l=axis-dev&m=99236686802581&w=2

- Original Message -
From: "Peter Govind" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 13, 2001 4:45 PM
Subject: Re: Exception! java2wsdl tool


> >James,
> >i get this exception when i try to run your tool:
> >
> >java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e
> >http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry
> >Exception in thread "main" java.lang.NoClassDefFoundError:
> >org/apache/axis/utils/Options
> > at
org.apache.axis.utils.wsdl.Java2WSDL.java2wsdl(Java2WSDL.java)
> > at org.apache.axis.utils.wsdl.Java2WSDL.(Java2WSDL.java)
> > at org.apache.axis.utils.wsdl.Java2WSDL.main(Java2WSDL.java)
> >
> >there's no class named Options...
>
> Where exactly did you get this jar ? Care to share the URL please ?
> BTW, maybe the jar needs some other jars to work. That's normally the case
> with the "NoClassDefFoundError" exception/error.
>
>
> _
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Exception! java2wsdl tool

2001-06-13 Thread Colin Saxton

It probably cannot see the class you are trying to generate the WSDL
against.
With most object to wsdl converters you need to put the package name in
before the Class name so that it can resolve the class...so...

MyClass.class

would be

mypackage.another.MyClass

If you are also asked for a path then you will need to enter the path name
to the top package ONLY.

so instead of doing the following

c:/temp/mypackage/another

you would type

c:/temp

>From there it would find the class...I hope this helps

-Original Message-
From: Joseph George [mailto:[EMAIL PROTECTED]]
Sent: 13 June 2001 15:20
To: [EMAIL PROTECTED]
Subject: Exception! java2wsdl tool


James,
i get this exception when i try to run your tool:

java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e
http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry
Exception in thread "main" java.lang.NoClassDefFoundError:
org/apache/axis/utils/Options
at org.apache.axis.utils.wsdl.Java2WSDL.java2wsdl(Java2WSDL.java)
at org.apache.axis.utils.wsdl.Java2WSDL.(Java2WSDL.java)
at org.apache.axis.utils.wsdl.Java2WSDL.main(Java2WSDL.java)

there's no class named Options...

-Joseph.

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, June 13, 2001 3:33 PM
Subject: Re: Apache SOAP webservice & .NET client


>
> I uploaded a pre-pre-alpha version of a java2wsdl tool to the axis-dev
> mailing list.  You can find the jar in the archives...
>
> James Birchfield
>
> Ironmax
> maximizing your construction equipment assets
> 5 Corporate Center
> 9960 Corporate Campus Drive,
> Suite 2000
> Louisville, KY 40223
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


_
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
01285 884400.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Exception! java2wsdl tool

2001-06-13 Thread Glen Daniels


This jar is built to work with Axis (http://xml.apache.org/axis).  You'll
need the axis.jar for it to work.

--G

> -Original Message-
> From: Peter Govind [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 13, 2001 10:45 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Exception! java2wsdl tool
> 
> 
> >James,
> >i get this exception when i try to run your tool:
> >
> >java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e
> >http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry
> >Exception in thread "main" java.lang.NoClassDefFoundError:
> >org/apache/axis/utils/Options
> > at 
> org.apache.axis.utils.wsdl.Java2WSDL.java2wsdl(Java2WSDL.java)
> > at 
> org.apache.axis.utils.wsdl.Java2WSDL.(Java2WSDL.java)
> > at org.apache.axis.utils.wsdl.Java2WSDL.main(Java2WSDL.java)
> >
> >there's no class named Options...
> 
> Where exactly did you get this jar ? Care to share the URL please ?
> BTW, maybe the jar needs some other jars to work. That's 
> normally the case 
> with the "NoClassDefFoundError" exception/error.
> 
> 
> __
> ___
> Get Your Private, Free E-mail from MSN Hotmail at 
http://www.hotmail.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Exception! java2wsdl tool

2001-06-13 Thread jbirchfield


It is built using the Axis package from apache.  You must have the axis.jar
in your classpath.

James Birchfield

Ironmax
maximizing your construction equipment assets
5 Corporate Center
9960 Corporate Campus Drive,
Suite 2000
Louisville, KY 40223


   
   
"Joseph George"
   
   
.inria.fr>   cc:   
   
 Subject: Exception! 
java2wsdl tool   
06/13/01 10:19 AM  
   
Please respond to soap-user
   
   
   
   
   




James,
i get this exception when i try to run your tool:

java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e
http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry
Exception in thread "main" java.lang.NoClassDefFoundError:
org/apache/axis/utils/Options
at org.apache.axis.utils.wsdl.Java2WSDL.java2wsdl(Java2WSDL.java)
at org.apache.axis.utils.wsdl.Java2WSDL.(Java2WSDL.java)
at org.apache.axis.utils.wsdl.Java2WSDL.main(Java2WSDL.java)

there's no class named Options...

-Joseph.

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, June 13, 2001 3:33 PM
Subject: Re: Apache SOAP webservice & .NET client


>
> I uploaded a pre-pre-alpha version of a java2wsdl tool to the axis-dev
> mailing list.  You can find the jar in the archives...
>
> James Birchfield
>
> Ironmax
> maximizing your construction equipment assets
> 5 Corporate Center
> 9960 Corporate Campus Drive,
> Suite 2000
> Louisville, KY 40223
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]






-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Exception! java2wsdl tool

2001-06-13 Thread Peter Govind

>James,
>i get this exception when i try to run your tool:
>
>java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e
>http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry
>Exception in thread "main" java.lang.NoClassDefFoundError:
>org/apache/axis/utils/Options
> at org.apache.axis.utils.wsdl.Java2WSDL.java2wsdl(Java2WSDL.java)
> at org.apache.axis.utils.wsdl.Java2WSDL.(Java2WSDL.java)
> at org.apache.axis.utils.wsdl.Java2WSDL.main(Java2WSDL.java)
>
>there's no class named Options...

Where exactly did you get this jar ? Care to share the URL please ?
BTW, maybe the jar needs some other jars to work. That's normally the case 
with the "NoClassDefFoundError" exception/error.


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]