aspose file tools
The moose likes IDEs, Version Control and other tools and the fly likes Cannot create bottom up web service in Eclipse using JBossWS Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » IDEs, Version Control and other tools
Reply Bookmark "Cannot create bottom up web service in Eclipse using JBossWS" Watch "Cannot create bottom up web service in Eclipse using JBossWS" New topic
Author

Cannot create bottom up web service in Eclipse using JBossWS

Bobby Anderson
Ranch Hand

Joined: Oct 28, 2008
Posts: 114
So far I have been able to:

1. create a 'dynamic web project in eclipse' named 'WSTutorial'
2. create a new java class called 'Hello.java'
3. inside Hello.java write a simple web service as follows
@WebService
public class Hello {
@WebMethod
public String sayHello(String name) {
return "Hello " + name;
}
}
4. Now I want to use eclipse to publish the web service to jboss and create a WSDL file. So I select New -> Other -> Web Service. If I choose jbossWS and hit next I get an error saying "Could not load class, did you specify a valid classpath."

Again I am still looking for a good UP TO DATE tutorial using eclipse and JBOSS if anyone has seen one or has done this in the past please help.

Billy
Bobby Anderson
Ranch Hand

Joined: Oct 28, 2008
Posts: 114
Anyone out there been able to use eclipse to do this? I am still very stuck, and I have found nothing with hours of searching the web.

Thanks in advance.

Billy
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Cannot create bottom up web service in Eclipse using JBossWS
 
Similar Threads
Setting jars in class path
Java Web Service
How can I secure a web service?
Web Service using JDK 1.6, Jboss 5.1.0 GA and JBossWS
Use Eclipse to create simple web service