I am not an experienced Java developer, so any comments would be welcome ...
I wrote a web service using C #, and I wanted to use this service from java - Netbeans was used for this.
All methods work well next to one: a method that expects a type of BusinessDataField2 - this type contains 2 fields: name (string) and value (object)
These fields are filled using get, set methods - this works easily in the .NET environment.
But...
I see that Java requires different parameters for the get and set methods - parameter:
JAXBElement JAXBElement
The question is: how do I instantiate this object? I tried many different ways, but nothing worked ...
Thanks, Ofer
source share