[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread Pierroot
For creating a client for an existing web service in a very simple way : download the WTP (Web Tools Platform) plugin for eclipse (forget about the JBoss-IDE for now) and just do a new > web service client. This works like a charme for the most simple tasks you have to do with web services. I d

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-24 Thread Pierroot
Hi Thomas, I did the tutorial rpc step by step (for the client side only). Basicaly, I try to call a web service that returns "hello 'your name'". The web service is hosted on an apache Axis web server. I am trying to create a servlet which calls this webservice. The problem is that there is no

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-24 Thread Pierroot
This works but JBoss says then no longer support axis (that's why we gotta add those jars to the lib folder (by the way, do not forget to reboot your server so that jars files are used ! ;)) how about using the ws4ee service stack as recommended by JBoss ?? I tried the tutorial in the wiki (rpc

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-23 Thread Pierroot
Axis is no longer supported as you said. The best practice is now to use the wscompile tool but, as far as I understand the thing, you don't have to use all the files generated... So I guess you don't need the files which requires non present libraries. I think this is part of their willing to

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-22 Thread Pierroot
Thanks same thing here... I will let you know if I find a good way to use WS with the "recommended" pratice !! (I had issue with axis, that's why I switched) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931962#3931962 Reply to the post : http://www.jboss.

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-22 Thread Pierroot
Hi forJbpm, Well I had the jboss-ws4ee/sar installed but it was not working. Finally I managed to get things work by adding the Jar files included in axis in the Jboss lib folder... Nevertheless, I had to quit using axis for other reasons on JBoss and I am now trying to use the ws4ee as it sho

[JBoss-user] [JBoss Getting Started Documentation] - Re: use an EJB as client of a web service

2006-03-22 Thread Pierroot
Well, yes I looked in the samples provided and I am sorry I was not able to find out the reason why this is not working... I really would like to know how to fix this... Thank you ! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931887#3931887 Reply to the p

[JBoss-user] [JBoss Eclipse IDE (users)] - JBoss-IDE and web Service

2006-03-18 Thread Pierroot
tMyWebServiceHello(); out.println("RES du WS : "); out.println(helloWS.hello("Pierroot")); out.println(" Fin du WS "); } catch (Exception e) { e.printStackTrace(); } When I deploy and try to run the servlet (which works fine without the piece of code sho

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-18 Thread Pierroot
I have the exact same problem... It would be nice if someone knows a way to get those clients to work... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931164#3931164 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3931

[JBoss-user] [Advanced Documentation] - Trouble invoking a web Service from JBoss with JBoss-IDE

2006-03-18 Thread Pierroot
MyWebServiceHello helloWS = locator.getMyWebServiceHello(); out.println("RES du WS : "); out.println(helloWS.hello("Pierroot")); out.println("Fin du WS"); } catch (Exceptio