Sorry for this newbie question:
From TomCat I know an easy way to deploy simple web services in *.jws
files
like:
public class MyWebServiceClass
{
public double myWebServiceMethd( String job, double x )
{
if( "quare".equalsIgnoreCase( job ) )
return x * x;
if( "root".equalsIgnoreCase( job ) )
return Math.sqrt( x );
return 0.;
}
}
I can put them into:
<tomcat-root>\webapps\axis
and they are available.
Into which directory can I put such *.jws files in JBoss?
Thomas
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142522#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...