Hi,
A web service is exposing its service with in paramter of type i.e. Order which
is known to service, but my client known nothing about Order class. However the
client can find the internal of Order class
i..e
class Service
{
String performService(Order myorder)
}
and
class Order
{
String orderName;
long orderId;
}
Now client (from WSDL) can understand that input param of performService is
"some type" that has a String and long in it. but I don't know when calling
that service how to wrap up values for String and long into an object and pass
it along using Axis/Axis2 calls.
I was wondering if someone knows a workaround for this.
Thanks,
S.