I&#39;m having trouble with errors like the following:<br><br><span style="font-family: courier new,monospace;">15:44:17,680 INFO  [DefaultEndpointRegistry] register: jboss.ws:context=gmsTest,endpoint=HelloWorld</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">15:44:17,787 INFO  [WSDLFilePublisher] WSDL published to: file:/usr/java/<a href="http://jboss-5.0.1.GA/server/default/data/wsdl/gmsTest.jar/HelloWorldService3425215985790724981.wsdl">jboss-5.0.1.GA/server/default/data/wsdl/gmsTest.jar/HelloWorldService3425215985790724981.wsdl</a> [i](listed below)[/i]</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">15:44:17,802 INFO  [TomcatDeployment] deploy, ctxPath=/gmsTest</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">15:44:17,820 WARN  [config] Unable to process deployment descriptor for context &#39;/gmsTest&#39;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">16:02:35,127 ERROR [[HelloWorld]] Servlet.service() for servlet HelloWorld threw exception</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">java.lang.NoClassDefFoundError: Could not initialize class javax.xml.soap.SOAPException</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">    at javax.xml.soap.SOAPFactory.newInstance(SOAPFactory.java:96)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        [...]</span><br clear="all">
<br>The web service is as simple as it can be, as I have yet to have a single web service work:<br><br><span style="font-family: courier new,monospace;">package <a href="http://gms.ws">gms.ws</a>;</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">import javax.jws.*;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">import javax.jws.soap.SOAPBinding;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">import javax.ejb.Stateless; </span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">@Stateless</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">@WebService(name=&quot;HelloWorld&quot;)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">@SOAPBinding(style = SOAPBinding.Style.RPC)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">public class HelloWorld {  </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    public String echo(String sInput){</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">        sInput += &quot;!!!&quot;;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    }</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">    public int addOne(int iInput){</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        return iInput + 1;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">    }</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">}</span><br><br>When a web service is accessed. I&#39;m trying to run jboss via eclipse 3.4.2, but have a sneaking suspicion that I don&#39;t have jboss configured to load the correct jars, from the right directories, in the right order. If this is the case, then I need to know how to adjust the classes/paths loaded by jboss from eclipse.<br>
<br>When I run jboss from start.sh (64 bit linux), the CLASSPATH shown in the console output is not the same as the shell it is running from. It has only a few directories, while the shell (environment) has everything. <br>
<br>Can anyone tell me whether this kind of error is due to jboss not finding the classes it needs, or am I writing web services incorrectly?<br><br>TIA!<br><br>pat<br>:)<br><br>&quot;You see, the Boyz II Men&#39;s room is flooded. &#39;Cause Busta Rhymes went in to take a Master P but he got the Runs D.M.C. and had some Heavy D. And now there&#39;s Funky Cold Medina everywhere!&quot; -Thurgood Stubbs<br>