Is there a simple way to cast a SOAP object into a Java object (similar to converting JSON into Java object with objectmapper) ?
The server side is using C# and has a class called "User Info" and I've created the same class in Java (I have an Android app). When I login to my application, it connects to a web-service "GetUserInfo" and that web-service gives back the user information by responding with an object from that class.
Is there a way I can just cast it into a Java object since both classes are literally the same?