You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by Mark Hansen <kh...@yahoo.com> on 2001/11/15 09:01:46 UTC

IDEs that work with SOAP

Has anyone had any luck using any of the IDEs with
Apache-SOAP?

-- Mark

__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com

Re: IDEs that work with SOAP

Posted by Ian Snead <is...@ezgov.com>.
Haha! Same here, Heitzso. I'm using v3.2.1 as well.

NetBeans can be kludgy, but if your system can handle
it, it is free and "Java" oriented.

Heitzso wrote:
> 
> I use netbeans 3.2.1 with most of the source
> setup in the filesystems list (no problem -- all of the
> open source pieces have source available) then crank
> up tomcat with debugging turned on.  You can
> do this remotely if firewalls permit by using tcp/port
> for debugging access.
> 
> I then attach to tomcat and set a breakpoint or
> two and hi-ho-de-merry-o-a-debugging-we-will-go
> 
> Heitzso

--
Software Engineer
EzGov
work : (404) 836-7957

To err is human.
To System.err is machine.

Re: IDEs that work with SOAP

Posted by Ian Snead <is...@ezgov.com>.
Haha! Same here, Heitzso. I'm using v3.2.1 as well.

NetBeans can be kludgy, but if your system can handle
it, it is free and "Java" oriented.

Heitzso wrote:
> 
> I use netbeans 3.2.1 with most of the source
> setup in the filesystems list (no problem -- all of the
> open source pieces have source available) then crank
> up tomcat with debugging turned on.  You can
> do this remotely if firewalls permit by using tcp/port
> for debugging access.
> 
> I then attach to tomcat and set a breakpoint or
> two and hi-ho-de-merry-o-a-debugging-we-will-go
> 
> Heitzso

--
Software Engineer
EzGov
work : (404) 836-7957

To err is human.
To System.err is machine.

Re: IDEs that work with SOAP

Posted by Heitzso <he...@home.com>.
I use netbeans 3.2.1 with most of the source
setup in the filesystems list (no problem -- all of the
open source pieces have source available) then crank
up tomcat with debugging turned on.  You can
do this remotely if firewalls permit by using tcp/port
for debugging access.

I then attach to tomcat and set a breakpoint or
two and hi-ho-de-merry-o-a-debugging-we-will-go

Heitzso


Re: IDEs that work with SOAP

Posted by Heitzso <he...@home.com>.
I use netbeans 3.2.1 with most of the source
setup in the filesystems list (no problem -- all of the
open source pieces have source available) then crank
up tomcat with debugging turned on.  You can
do this remotely if firewalls permit by using tcp/port
for debugging access.

I then attach to tomcat and set a breakpoint or
two and hi-ho-de-merry-o-a-debugging-we-will-go

Heitzso


RE: Parameters types

Posted by Barnaby James <ba...@adobe.com>.
I think if messageType is an instance of the class Integer rather than an
int, it will work.

Barnaby

-----
Barnaby James
Acrobat Engineering
Adobe Systems, Inc.
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=Barnaby+James
490D 688C 619C C9F4 3D1D  FA23 97F4 931C 6308 D119

> -----Original Message-----
> From: Jeremy Levy [mailto:jelevy01@yahoo.com]
> Sent: Thursday, November 15, 2001 2:29 PM
> To: soap-user@xml.apache.org
> Subject: Parameters types
>
>
> Okay, I am very new to SOAP and this is probably a very stupid
> question but
> I have spent the better part of the day trying to figure this out...
>
> What is the java.lang type of an int?  According to the docs the
> SOAPMappingRegistry includes support for all primitives including int...
> here is my code
>
> ...
>
>
> MAC is a String
> messageType is a int
>
> params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
> line works fine
>
> params.addElement(new Parameter("messageType", Integer.class, messageType,
> null));
> 			^
> 		doesn't like that....
>
> Thank you
>
> Jeremy
>


RE: Parameters types

Posted by Abraham Kang <ab...@infogain.com>.
I think I saw something like

int.class

example:

 params.addElement(new Parameter("messageType", int.class, messageType,
 null));

Someone correct me if I am wrong.

Abraham

> -----Original Message-----
> From: Jeremy Levy [mailto:jelevy01@yahoo.com]
> Sent: Thursday, November 15, 2001 2:29 PM
> To: soap-user@xml.apache.org
> Subject: Parameters types
>
>
> Okay, I am very new to SOAP and this is probably a very stupid
> question but
> I have spent the better part of the day trying to figure this out...
>
> What is the java.lang type of an int?  According to the docs the
> SOAPMappingRegistry includes support for all primitives including int...
> here is my code
>
> ...
>
>
> MAC is a String
> messageType is a int
>
> params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
> line works fine
>
> params.addElement(new Parameter("messageType", Integer.class, messageType,
> null));
> 			^
> 		doesn't like that....
>
> Thank you
>
> Jeremy
>
>


RE: Parameters types

Posted by Amit Rana <ra...@mbc2.co.jp>.
Dear Jeremy,

	All these wrapper classes have a property/field TYPE. This field returns
"The Class object representing the primitive type ####." , so class type of
integer is Integer.TYPE and so on. You can check the java documentation for
the same.

Regards,
Amit.

-----Original Message-----
From: Jeremy Levy [mailto:jelevy01@yahoo.com]
Sent: Friday, November 16, 2001 7:29 AM
To: soap-user@xml.apache.org
Subject: Parameters types


Okay, I am very new to SOAP and this is probably a very stupid question but
I have spent the better part of the day trying to figure this out...

What is the java.lang type of an int?  According to the docs the
SOAPMappingRegistry includes support for all primitives including int...
here is my code

...


MAC is a String
messageType is a int

params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
line works fine

params.addElement(new Parameter("messageType", Integer.class, messageType,
null));
			^
		doesn't like that....

Thank you

Jeremy


RE: Parameters types

Posted by Abraham Kang <ab...@infogain.com>.
I think I saw something like

int.class

example:

 params.addElement(new Parameter("messageType", int.class, messageType,
 null));

Someone correct me if I am wrong.

Abraham

> -----Original Message-----
> From: Jeremy Levy [mailto:jelevy01@yahoo.com]
> Sent: Thursday, November 15, 2001 2:29 PM
> To: soap-user@xml.apache.org
> Subject: Parameters types
>
>
> Okay, I am very new to SOAP and this is probably a very stupid
> question but
> I have spent the better part of the day trying to figure this out...
>
> What is the java.lang type of an int?  According to the docs the
> SOAPMappingRegistry includes support for all primitives including int...
> here is my code
>
> ...
>
>
> MAC is a String
> messageType is a int
>
> params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
> line works fine
>
> params.addElement(new Parameter("messageType", Integer.class, messageType,
> null));
> 			^
> 		doesn't like that....
>
> Thank you
>
> Jeremy
>
>


RE: Parameters types

Posted by Barnaby James <ba...@adobe.com>.
I think if messageType is an instance of the class Integer rather than an
int, it will work.

Barnaby

-----
Barnaby James
Acrobat Engineering
Adobe Systems, Inc.
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=Barnaby+James
490D 688C 619C C9F4 3D1D  FA23 97F4 931C 6308 D119

> -----Original Message-----
> From: Jeremy Levy [mailto:jelevy01@yahoo.com]
> Sent: Thursday, November 15, 2001 2:29 PM
> To: soap-user@xml.apache.org
> Subject: Parameters types
>
>
> Okay, I am very new to SOAP and this is probably a very stupid
> question but
> I have spent the better part of the day trying to figure this out...
>
> What is the java.lang type of an int?  According to the docs the
> SOAPMappingRegistry includes support for all primitives including int...
> here is my code
>
> ...
>
>
> MAC is a String
> messageType is a int
>
> params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
> line works fine
>
> params.addElement(new Parameter("messageType", Integer.class, messageType,
> null));
> 			^
> 		doesn't like that....
>
> Thank you
>
> Jeremy
>


RE: Parameters types

Posted by Amit Rana <ra...@mbc2.co.jp>.
Dear Jeremy,

	All these wrapper classes have a property/field TYPE. This field returns
"The Class object representing the primitive type ####." , so class type of
integer is Integer.TYPE and so on. You can check the java documentation for
the same.

Regards,
Amit.

-----Original Message-----
From: Jeremy Levy [mailto:jelevy01@yahoo.com]
Sent: Friday, November 16, 2001 7:29 AM
To: soap-user@xml.apache.org
Subject: Parameters types


Okay, I am very new to SOAP and this is probably a very stupid question but
I have spent the better part of the day trying to figure this out...

What is the java.lang type of an int?  According to the docs the
SOAPMappingRegistry includes support for all primitives including int...
here is my code

...


MAC is a String
messageType is a int

params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
line works fine

params.addElement(new Parameter("messageType", Integer.class, messageType,
null));
			^
		doesn't like that....

Thank you

Jeremy


Parameters types

Posted by Jeremy Levy <je...@yahoo.com>.
Okay, I am very new to SOAP and this is probably a very stupid question but
I have spent the better part of the day trying to figure this out...

What is the java.lang type of an int?  According to the docs the
SOAPMappingRegistry includes support for all primitives including int...
here is my code

...


MAC is a String
messageType is a int

params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
line works fine

params.addElement(new Parameter("messageType", Integer.class, messageType,
null));
			^
		doesn't like that....

Thank you

Jeremy


Parameters types

Posted by Jeremy Levy <je...@yahoo.com>.
Okay, I am very new to SOAP and this is probably a very stupid question but
I have spent the better part of the day trying to figure this out...

What is the java.lang type of an int?  According to the docs the
SOAPMappingRegistry includes support for all primitives including int...
here is my code

...


MAC is a String
messageType is a int

params.addElement(new Parameter("MAC", String.class, MAC, null)); //this
line works fine

params.addElement(new Parameter("messageType", Integer.class, messageType,
null));
			^
		doesn't like that....

Thank you

Jeremy


RE: IDEs that work with SOAP

Posted by Anne Thomas Manes <an...@manes.net>.
Systinet provides free plug-ins for both NetBeans and JBuilder. 
These tools are for Systinet's SOAP implementation (WASP) rather 
than Apache SOAP, but you might find them useful. WASP Server Lite
is free for commercial use. 

Please go to www.systinet.com and download WASP Developer.

Regards,
Anne Thomas Manes
CTO, Systinet

> -----Original Message-----
> From: Jeremy Levy [mailto:jelevy01@yahoo.com]
> Sent: Thursday, November 15, 2001 6:33 AM
> To: soap-user@xml.apache.org
> Subject: RE: IDEs that work with SOAP
> 
> 
> anyone try get soap to work with netbeans?
> 
> -----Original Message-----
> From: Nicholas Quaine [mailto:nquaine@soapuser.com]
> Sent: Thursday, November 15, 2001 3:42 AM
> To: soap-user@xml.apache.org
> Subject: Re: IDEs that work with SOAP
> 
> 
> JBuilder4 (foundation or enterprise) does the job and foundation 
> is free to
> download
> you can load Apache SOAP and all its required libraries in and 
> run and debug
> without a problem
> if you want to debug through to apache SOAP code you make available the
> source as well (available from apache)
> if using enterprise, one thing I found useful was to include 
> tomcat just as
> you would any other library and run it 'manually' rather than use 
> the tomcat
> server as built into JBuilder
> 
> regards,
> Nicholas Quaine
> 
> Visit http://www.soapuser.com/
> 
> nquaine@soapuser.com
> 
> 
> ----- Original Message -----
> From: "Mark Hansen" <kh...@yahoo.com>
> To: <so...@xml.apache.org>
> Sent: Thursday, November 15, 2001 9:01 AM
> Subject: IDEs that work with SOAP
> 
> 
> > Has anyone had any luck using any of the IDEs with
> > Apache-SOAP?
> >
> > -- Mark
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Find the one for you at Yahoo! Personals
> > http://personals.yahoo.com
> >
> 

RE: IDEs that work with SOAP

Posted by Anne Thomas Manes <an...@manes.net>.
Systinet provides free plug-ins for both NetBeans and JBuilder. 
These tools are for Systinet's SOAP implementation (WASP) rather 
than Apache SOAP, but you might find them useful. WASP Server Lite
is free for commercial use. 

Please go to www.systinet.com and download WASP Developer.

Regards,
Anne Thomas Manes
CTO, Systinet

> -----Original Message-----
> From: Jeremy Levy [mailto:jelevy01@yahoo.com]
> Sent: Thursday, November 15, 2001 6:33 AM
> To: soap-user@xml.apache.org
> Subject: RE: IDEs that work with SOAP
> 
> 
> anyone try get soap to work with netbeans?
> 
> -----Original Message-----
> From: Nicholas Quaine [mailto:nquaine@soapuser.com]
> Sent: Thursday, November 15, 2001 3:42 AM
> To: soap-user@xml.apache.org
> Subject: Re: IDEs that work with SOAP
> 
> 
> JBuilder4 (foundation or enterprise) does the job and foundation 
> is free to
> download
> you can load Apache SOAP and all its required libraries in and 
> run and debug
> without a problem
> if you want to debug through to apache SOAP code you make available the
> source as well (available from apache)
> if using enterprise, one thing I found useful was to include 
> tomcat just as
> you would any other library and run it 'manually' rather than use 
> the tomcat
> server as built into JBuilder
> 
> regards,
> Nicholas Quaine
> 
> Visit http://www.soapuser.com/
> 
> nquaine@soapuser.com
> 
> 
> ----- Original Message -----
> From: "Mark Hansen" <kh...@yahoo.com>
> To: <so...@xml.apache.org>
> Sent: Thursday, November 15, 2001 9:01 AM
> Subject: IDEs that work with SOAP
> 
> 
> > Has anyone had any luck using any of the IDEs with
> > Apache-SOAP?
> >
> > -- Mark
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Find the one for you at Yahoo! Personals
> > http://personals.yahoo.com
> >
> 

RE: IDEs that work with SOAP

Posted by Jeremy Levy <je...@yahoo.com>.
anyone try get soap to work with netbeans?

-----Original Message-----
From: Nicholas Quaine [mailto:nquaine@soapuser.com]
Sent: Thursday, November 15, 2001 3:42 AM
To: soap-user@xml.apache.org
Subject: Re: IDEs that work with SOAP


JBuilder4 (foundation or enterprise) does the job and foundation is free to
download
you can load Apache SOAP and all its required libraries in and run and debug
without a problem
if you want to debug through to apache SOAP code you make available the
source as well (available from apache)
if using enterprise, one thing I found useful was to include tomcat just as
you would any other library and run it 'manually' rather than use the tomcat
server as built into JBuilder

regards,
Nicholas Quaine

Visit http://www.soapuser.com/

nquaine@soapuser.com


----- Original Message -----
From: "Mark Hansen" <kh...@yahoo.com>
To: <so...@xml.apache.org>
Sent: Thursday, November 15, 2001 9:01 AM
Subject: IDEs that work with SOAP


> Has anyone had any luck using any of the IDEs with
> Apache-SOAP?
>
> -- Mark
>
> __________________________________________________
> Do You Yahoo!?
> Find the one for you at Yahoo! Personals
> http://personals.yahoo.com
>


RE: IDEs that work with SOAP

Posted by Jeremy Levy <je...@yahoo.com>.
anyone try get soap to work with netbeans?

-----Original Message-----
From: Nicholas Quaine [mailto:nquaine@soapuser.com]
Sent: Thursday, November 15, 2001 3:42 AM
To: soap-user@xml.apache.org
Subject: Re: IDEs that work with SOAP


JBuilder4 (foundation or enterprise) does the job and foundation is free to
download
you can load Apache SOAP and all its required libraries in and run and debug
without a problem
if you want to debug through to apache SOAP code you make available the
source as well (available from apache)
if using enterprise, one thing I found useful was to include tomcat just as
you would any other library and run it 'manually' rather than use the tomcat
server as built into JBuilder

regards,
Nicholas Quaine

Visit http://www.soapuser.com/

nquaine@soapuser.com


----- Original Message -----
From: "Mark Hansen" <kh...@yahoo.com>
To: <so...@xml.apache.org>
Sent: Thursday, November 15, 2001 9:01 AM
Subject: IDEs that work with SOAP


> Has anyone had any luck using any of the IDEs with
> Apache-SOAP?
>
> -- Mark
>
> __________________________________________________
> Do You Yahoo!?
> Find the one for you at Yahoo! Personals
> http://personals.yahoo.com
>


Re: IDEs that work with SOAP

Posted by Nicholas Quaine <nq...@soapuser.com>.
JBuilder4 (foundation or enterprise) does the job and foundation is free to
download
you can load Apache SOAP and all its required libraries in and run and debug
without a problem
if you want to debug through to apache SOAP code you make available the
source as well (available from apache)
if using enterprise, one thing I found useful was to include tomcat just as
you would any other library and run it 'manually' rather than use the tomcat
server as built into JBuilder

regards,
Nicholas Quaine

Visit http://www.soapuser.com/

nquaine@soapuser.com


----- Original Message -----
From: "Mark Hansen" <kh...@yahoo.com>
To: <so...@xml.apache.org>
Sent: Thursday, November 15, 2001 9:01 AM
Subject: IDEs that work with SOAP


> Has anyone had any luck using any of the IDEs with
> Apache-SOAP?
>
> -- Mark
>
> __________________________________________________
> Do You Yahoo!?
> Find the one for you at Yahoo! Personals
> http://personals.yahoo.com
>


Re: IDEs that work with SOAP

Posted by Nicholas Quaine <nq...@soapuser.com>.
JBuilder4 (foundation or enterprise) does the job and foundation is free to
download
you can load Apache SOAP and all its required libraries in and run and debug
without a problem
if you want to debug through to apache SOAP code you make available the
source as well (available from apache)
if using enterprise, one thing I found useful was to include tomcat just as
you would any other library and run it 'manually' rather than use the tomcat
server as built into JBuilder

regards,
Nicholas Quaine

Visit http://www.soapuser.com/

nquaine@soapuser.com


----- Original Message -----
From: "Mark Hansen" <kh...@yahoo.com>
To: <so...@xml.apache.org>
Sent: Thursday, November 15, 2001 9:01 AM
Subject: IDEs that work with SOAP


> Has anyone had any luck using any of the IDEs with
> Apache-SOAP?
>
> -- Mark
>
> __________________________________________________
> Do You Yahoo!?
> Find the one for you at Yahoo! Personals
> http://personals.yahoo.com
>