What I trying to do is access to webservice written in JAX-WS java from .net 4.0 client.
When I’m trying to add reference to that webservice via https it’s succesfully added to my project but then I’m unabled to build my project got errors like :
An object reference is required for the non-static field, method, or property 'Test.Test.ListDevicesResponseReturn.System.get'
I tryed to change my client version to 3.5 but it’s doesn’t help.
I don’t know how this webservice is written.
Thanks for any reply:)
I’ve got answer … It’s a silly but in WebService written in JAX-WS was a property named
Systemwhich is reserved in .NET Framework when I changed this Property name toSystemJseverything seems to working fine.I hope it will help someone else as well.
Thanks all for trying help:)