tags:

views:

30

answers:

1

I have a WCF which return a collection of a class. When i consume it on .net application generally i make a deep copy of server return collection to local collection.

Now I want to consume it in java application so how it will work.

A: 

Yes using one http binding.

You can also check this: http://www.kevingao.net/wcf-java-interop

Pierre 303
thanks, its quite informative, but still unable to figure out how to convert server return collection in java's collection.
Jeevan Bhatt
Look on google how to consume a webservice with Java, and setup your WCF service with one http binding, and you will make it.
Pierre 303