[jboss-user] [JBossWS] - Where do I have to *.jws web service files in JBoss ?
thoste
do-not-reply at jboss.com
Tue Apr 8 18:02:15 EDT 2008
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#4142522
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4142522
More information about the jboss-user
mailing list