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

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.
 
A

Arne Vajhøj

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top