Hi All,
I have a wcf services projects and a second project for consuming these services is in java.
My question is how can i create proxy classes for java to consume my wcf services ?
Is there any other way to consume wcf services through Java clients ?
...
I have a WCF web service using wsHttpBinding that I am consuming from a Java client. I generated code from the WSDL using wsimport. The java client appears to be creating the service fine but when I call a method on the service the client just spins.
MyService s = new MyService();
IMyService i = s.getWSHttpBindingIMyService();
retur...
I need to meter the number of bytes being used by a java application from within java (i.e. I don't have any special access to the JVM other then not having a security manager to deal with) but I need all the bytes sent/received including protocol headers and the like. Anyone have good ideas on how to do this?
The obvious move is to cre...