Java client and .NET 2.0 style Web Service and Class parameter

  • Thread starter Thread starter Roland
  • Start date Start date
R

Roland

Hello Folks,

Has any of you links or samples how Java Client should call .NET 2.0 style
Web Service (not WFC) when .NET Web Service has a Class as parameter?

Parameter like:

public class WSCallParams
{
public string field1;
public string field2;
public string field3;
}

I have created Web Service interface in .NET side using wsdl, so
if I like Java client call .NET Web Service with Class as parameter should
I declare parameter class with [Synchronized] attribute or should I concern
any other things?

Java client can use Axis 2.0 or JAX-WS that comes with JDK 6.0

Cheers.
 
Roland said:
Has any of you links or samples how Java Client should call .NET 2.0 style
Web Service (not WFC) when .NET Web Service has a Class as parameter?

Parameter like:

public class WSCallParams
{
public string field1;
public string field2;
public string field3;
}

I have created Web Service interface in .NET side using wsdl, so
if I like Java client call .NET Web Service with Class as parameter should
I declare parameter class with [Synchronized] attribute or should I concern
any other things?

Java client can use Axis 2.0 or JAX-WS that comes with JDK 6.0

What do you get if you run Axis2 WSDL2Java or JDK wsimport against
your WSDL URL ?

Arne
 
Back
Top