Re: SOAP on TOMCAT 5.0

2005-09-20 Thread Hardik Tank
hi, u will get unsupported major.minor version 48.0 error when ur code has been compiled using higher version of JDK (may be 1.5) and u r running it using lower version of JDK/JRE (may be 1.4) check ur setup and JRE/JDK once again. rgds, Hardik Tank --- [EMAIL PROTECTED] wrote: Hi Guys,

RE: SOAP on TOMCAT 5.0

2005-09-20 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: SOAP on TOMCAT 5.0 java.lang.UnsupportedClassVersion error: org/w3c/dom/Node (unsupported major.minor version 48.0) This is the version of a class file you're trying to load - 48.0 corresponds to JRE/JDK 1.4, so that would indicate

Re: soap on tomcat 5x

2005-01-04 Thread Brett Randall
Step 1: Troll through the error logs. --- [EMAIL PROTECTED] wrote: hi, I want to deploy Soap on Tomcat 5x. There is problem in starting Tomcat. Can anyone suggest the steps to rectify the problem Confidentiality Notice The information contained in this electronic message

RE: Soap under Tomcat

2004-11-15 Thread sven morales
Exception in thread main [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type quot;text/html; charset=ISO-8859-1quot;, must be : quot;text/xmlquot;. Response was: lt;htmlgt;lt;headgt;lt;titlegt;Apache Tomcat/4.1.30 - Error reportlt;/tit Your error seems to point to

Re: Soap under Tomcat

2004-11-15 Thread feilong
are copied from this tutorial, I don't know why? Best Feilong - Original Message - From: sven morales [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 15, 2004 2:39 PM Subject: RE: Soap under Tomcat Exception in thread main [SOAPException: faultCode=SOAP-ENV:Protocol; msg

Re: Soap under Tomcat

2004-11-15 Thread sven morales
Subject: RE: Soap under Tomcat Exception in thread main [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type quot;text/html; charset=ISO-8859-1quot;, must be : quot;text/xmlquot;. Response was: lt;htmlgt;lt;headgt;lt;titlegt;Apache Tomcat/4.1.30

Re: Soap under Tomcat

2004-11-15 Thread feilong
[EMAIL PROTECTED] Sent: Monday, November 15, 2004 3:20 PM Subject: Re: Soap under Tomcat What did you do to get rid of that text/html problem? You can list the deployed services via this command: java org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/servlet/rpcrouter

RE: Soap under Tomcat

2004-11-14 Thread Mark Thomas
I am not familiar with this particular tutorial but the problem appears to be that your client is requesting /soap/rpcrouter but the servlet mapping in web.xml indicates that the webapp is expcting /soap/servlet/rpcrouter. What the root cuase of this mismatch might be I do not know. Mark

Re: Soap under Tomcat

2004-11-14 Thread feilong
PROTECTED] Sent: Sunday, November 14, 2004 12:44 PM Subject: RE: Soap under Tomcat I am not familiar with this particular tutorial but the problem appears to be that your client is requesting /soap/rpcrouter but the servlet mapping in web.xml indicates that the webapp is expcting /soap/servlet

Re: Soap under Tomcat

2004-11-14 Thread feilong
:44 PM Subject: RE: Soap under Tomcat I am not familiar with this particular tutorial but the problem appears to be that your client is requesting /soap/rpcrouter but the servlet mapping in web.xml indicates that the webapp is expcting /soap/servlet/rpcrouter. What the root cuase

RE: Soap under Tomcat

2004-11-14 Thread Mark Thomas
To quote from the error message from your original post: The requested resource (/soap/rpcrouter) is not available. Mark -Original Message- From: feilong [mailto:[EMAIL PROTECTED] Sent: Sunday, November 14, 2004 8:18 PM To: Tomcat Users List Subject: Re: Soap under Tomcat

Re: Soap under Tomcat

2004-11-14 Thread feilong
again Best Feilong - Original Message - From: Mark Thomas [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Sunday, November 14, 2004 10:00 PM Subject: RE: Soap under Tomcat To quote from the error message from your original post: The requested resource (/soap

Re: Soap-Call doesn't open IP-Connection

2003-07-01 Thread Antonio Fiol Bonnín
Try -i lo Good luck! Antonio Fiol Rabl Mario wrote: Hi, I'm running Tomcat 4 on a RedHat 7.3 server. When I try to call a Soap-Server, no TCP/IP-Socket will be opened (using tcpdump -n -nn -i eth0 host xxx.xxx.xxx.xxx to determine) and no network activity is shown up. The Test-Callup:

Re: SOAP: Unable to resolve target object

2002-11-22 Thread Philippe Burger
Strange but it doesn't work anymore!!! When I run the client, I have the following (basic!) Exception: Exception in thread main java.lang.NoClassDefFoundError: my client class this class is in TOMCAT_HOME/webapps/soap/WEB-INF/classes/my package The compilation is OK. I put this

Re: SOAP: Unable to resolve target object

2002-11-22 Thread jattwood
Hi Phil, Exception in thread main java.lang.NoClassDefFoundError: my client class I put this TOMCAT_HOME/webapps/soap/WEB-INF/classes in the CLASSPATH (in case). Your client will rely on the CLASSPATH to find its classes (unlike the server which uses TomCat's class loader hierarchy). Whenever

Re: SOAP: Unable to resolve target object

2002-11-21 Thread Glenn O
Craig R. McClanahan wrote: Of course, I also feel that ***way*** too many Tomcat developers and users put ***way*** too much stock in sharing JAR files, giving up the notion that a webapp is a stand-alone deployable unit. Very true, but the very presence of $CATALINA_HOME/common, suggests

Re: SOAP: Unable to resolve target object

2002-11-20 Thread Philippe Burger
Hi John, I think I get it! When i unpacked the soap.war file to put my classes in TOMCAT_HOME/webapps/soap/WEB-INF/classes/packagename/, I forgot to set the WebAppDeploy to 'soap' in my Apache configuration file ( it was set on soap.war, so the classes could'nt be seen) context-param

Re: SOAP: Unable to resolve target object

2002-11-20 Thread Craig R. McClanahan
On Tue, 19 Nov 2002, Glenn O wrote: Is anybody else using SOAP and tomcat 4? If so, have you run into a need to share classes across contexts, and if so, how did you do it? I'd like to improve on my copy-on-startup approach. In general, it's really easy to share classes across webapps --

Re: SOAP: Unable to resolve target object

2002-11-20 Thread Glenn O
Craig R. McClanahan wrote: Is anybody else using SOAP and tomcat 4? If so, have you run into a need to share classes across contexts, and if so, how did you do it? I'd like to improve on my copy-on-startup approach. In general, it's really easy to share classes across webapps --

Re: SOAP: Unable to resolve target object

2002-11-20 Thread Craig R. McClanahan
On Wed, 20 Nov 2002, Glenn O wrote: Date: Wed, 20 Nov 2002 17:05:23 -0800 From: Glenn O [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: SOAP: Unable to resolve target object Craig R. McClanahan wrote: Is anybody

Re: SOAP: Unable to resolve target object

2002-11-20 Thread Paul Campbell
Craig R. McClanahan wrote: snip BRAVO soapbox snip But wait ... snip But wait ... that means snip /soapbox /BRAVO ;-) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: SOAP: Unable to resolve target object

2002-11-19 Thread jattwood
Hi Phil, I tried to install a SOAP service on an Apache server with Tomcat 4.1 webapp module. I deployed the SOAP service with no problem. The SOAP client is well compiled. But when I run the client, i have the following message: Unable to resolve target object : my soapService CLASSPATH seems

Re: SOAP: Unable to resolve target object

2002-11-19 Thread Philippe Burger
Firstly, TomCat ignores your CLASSPATH. The SOAP libraries and your client classes have to be in TomCat's common/lib directory and your webapp's WEB-INF/classes directory in order to be found when servicing a request. Why put the client classes in TomCat's common/lib directory ??? I put them

Re: SOAP: Unable to resolve target object

2002-11-19 Thread jattwood
Hi Phil, Why put the client classes in TomCat's common/lib directory ??? Sorry, this was bad English on my part. Obviously the client classes go in the (soap webapp's) WEB-INF/classes; whether you put the soap jarfile there or in the common/lib directory depends on whether you want it to be

Re: SOAP: Unable to resolve target object

2002-11-19 Thread Glenn O
[EMAIL PROTECTED] wrote: My situation is complicated because JBoss deploys my webapp afresh every time TomCat is started and there is no fixed path to my webapp directory, so any persistent soap deployment info there is lost when the server is restarted. To counteract this, I put the

Re: SOAP: Unable to resolve target object

2002-11-19 Thread jattwood
Hi Phil, I've also had a problem using SOAP within tomcat. I haven't been able to find a way to share the service class files across contexts. I did it backwards and put the soap servlet into my context. I can use the same supporting beans to provide html output for humans and soap rpc for

Re: SOAP: Unable to resolve target object

2002-11-19 Thread Glenn O
[EMAIL PROTECTED] wrote: I've also had a problem using SOAP within tomcat. I haven't been able to find a way to share the service class files across contexts. I did it backwards and put the soap servlet into my context. I can use the same supporting beans to provide html output for humans

RE: SOAP and web service involving DB2??? HELP Plzz

2002-08-02 Thread Sullivan, Mark E
The web service in its simplest form is just a regular java class. The SOAP server itself basically provides a mapping between the client call and a method in your class. Therefore, you can deploy any regular class and access it as a web service. Check out xml.apache.org/axis for a good SOAP

RE: SOAP and web service involving DB2??? HELP Plzz

2002-08-02 Thread Nishant_Awasthi
[EMAIL PROTECTED] cc: (bcc: Nishant Awasthi) 08/02/2002 10:23 AMSubject: RE: SOAP and web service involving Please respond

RE: SOAP

2002-07-25 Thread Turner, John
How is this a tomcat question? Or even a servlet/JSP question? John Turner [EMAIL PROTECTED] -Original Message- From: Sudhir Kumar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 9:00 AM To: 'Tomcat Users List' Subject: SOAP I ahve a VB client server aplication

RE: Réf. : RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingE xception

2002-07-04 Thread Christophe Bouhier (ECM)
To: Tomcat Users List Subject: Réf. : RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingE xception I've TOMCAT 4.0, SUN XML-Pack (which includes JAXM, JAXR...) , JetSpeed and Apache SOAP. I think I can't use the JWSDP because TOMCAT (8080) is always installed and I've an ISAPI

Réf. : RE: Réf. : RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingE xception

2002-07-04 Thread staginfo-ar
Thanks for your help, I've downloaded the JWSDP. It seems to be a full tool. I will read the doc and try to install it next. You've said you use JAXM. But what's the role of JAXMmail.jar ??? JAX-RPC uses SOAPWSDL technologie, I think it's these API I must use to build SOAP message. thanks

RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingException

2002-07-03 Thread Christophe Bouhier (ECM)
Hi, I am currently working on a SOAP servlet, and using different clients to send SOAP messages like J2SE and a servlet client. On the server side I use the JWSDP (which includes tomcat) from sun, which contains nice examples aswell as an excellent tutorial. The best way I think, is to

Réf. : RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingE xception

2002-07-03 Thread staginfo-ar
I've TOMCAT 4.0, SUN XML-Pack (which includes JAXM, JAXR...) , JetSpeed and Apache SOAP. I think I can't use the JWSDP because TOMCAT (8080) is always installed and I've an ISAPI redirector for IIS configured with it. I've deployed a Client j2se (Java Class, URL on port 8070) on

Re: SOAP

2002-04-25 Thread Elizabeth Barham
Martin Mauri [EMAIL PROTECTED] writes: Hi, can anyone here suggest me a good place to download a good tutorial about SOAP? James Goodwill has some nice articles (on about SOAP): http://www.onjava.com/pub/ct/33 There are probably others on the site as well. Regards, Elizabeth -- To

Re: SOAP Tutorial

2002-01-29 Thread faisal
check the www.java.sun.com. A soap pack was just released today - Original Message - From: Magnus Jansson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 25, 2002 7:45 AM Subject: OT: SOAP Tutorial Hi! I'm very new to SOAP and I have no idea what it is. Is there a small

Re: SOAP Tutorial

2002-01-29 Thread Denny Chambers
This site may also provide some useful information: http://www.w3.org/2002/ws/ faisal wrote: check the www.java.sun.com. A soap pack was just released today - Original Message - From: Magnus Jansson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 25, 2002 7:45 AM

Re: soap 2.2

2001-08-20 Thread Wyn Easton
Here is a URL that that ponits to an article that describes how to setup soap with Tomcat. http://www-ibm.com/developerworks/webservices/library/ws-peer2/?dwzone=ws The short version is to edit tomcat.bat and add soap.jar and xerces.jar to the beginning of the classpath. BTW - In your note you

Re: soap service class.

2001-07-04 Thread Tarun Garg
I was previously putting the classes in ROOT/web-inf/classes. Now when I put them in SOAP/web-inf/classes, tomcat loads my class automatically. I can call this service as many times, everything goes well. But if I recompile the service class, and try to call it, I get the following error on the

RE: soap service class.

2001-07-04 Thread Nino Uziel
Title: RE: soap service class. Tarun, I think you have to add to the mod_jk.conf or to the httpd.conf the JkMount command JkMount /soap/servlet/* ajpv13 or something like that. N. -Original Message- From: Tarun Garg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 04, 2001 4

Re: soap service class.

2001-07-04 Thread Kaneda K
My answer might be wrong, so no offence - So if you recompile your class while your server run and then try to access your servelt, they will be a Cast exception because the class files (I thing is is in the class signatures) are not those that the tomcat session firstly load. So you must

Re: soap service class.

2001-07-04 Thread Tarun Garg
Title: RE: soap service class. I forgot to say it earlier. I am working on a win2k machine, tomcat 3.2.1 stand alone mode, apache soap 2.2, jdk1.3.1. - Original Message - From: Nino Uziel To: '[EMAIL PROTECTED]' Sent: Wednesday, July 04, 2001 6:55 PM