> Hello, > > I am using Apache Axis 1.0 release with Tomcat 4.2.12. Everything seems > tobe working fine except, when I try to deploy Calculator.java as > Calculator.jws in the appropriate directory, I get the following error > when trying to visit the .jws page through the web: > > AXIS error > No service is available at tihs URL > > However, when I do: > > http://mdf161.rh.psu.edu:8080/axis/Calculator.jws?wsdl, I get returned > to me the right > WSDL file. What's going on? How come Axis 1.0 doesn't recognize the > fact that the jws is running at > http://mdf161.rh.psu.edu:8080/axis/Calculator.jws?
==>Hi, in my humble opinion, I think that the Axis configuration you've arranged is ok if you are able to see the wsdl file. Try the client in the samples.userguide.example2.CalcClient (or something like that) package, as you can read in the axis userguide at page 7 (JWS Files - Instant Deployment); Run the client this way: java samples.userguide.example2.CalcClient -p8080 add 2 5 if the classpath is correc, you should get "7" as result. If it happens so, the web service is ok.