Hi,
I'm trying to write an axis2-based web service using Netbeans 5.0 and I
am a complete newbie.
I think, I followed the available instructions and my project creates a
jar-archive which I copy to the axis2-services directory. Using the
URL http://localhost:8084/axis2/services/Axis2Project?wsdl I can also
see the WSDL code (which is generated on the fly by axis2, since the
file is not part of the project).
However, when trying to test the service from within Netbeans, I'm getting
the messages "Starting Web service client creation ..." and then
"Error occured while creating the proxy!".
I tried to find some useful logs by the server but without success. The
application is as trivial as possible, so that I cannot think of an
obvious error.
My java-file looks like:
package my.ws;
public class EchoService {
/* Constructor */
public EchoService() {
}
/* operation */
public String myEcho(String msg) {
return "Echoing: " + msg;
}
}
and my services.xml is:
<service>
<description>
First service, which echoes a string passed in.
</description>
<parameter name="ServiceClass">my.ws.EchoService</parameter>
<operation name="myEcho">
<messageReceiver
class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</operation>
</service>
I would appreciate any hints or comments.
Thanks and best regards,
-Rainer
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]