• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Cannot create bottom up web service in Eclipse using JBossWS

 
Ranch Hand
Posts: 114
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Posts: 114
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
You'll never get away with this you overconfident blob! The most you will ever get is this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic