Can a Java application or any other application other then .NET can consume WCF enabled application
I have created a console application in which I have exposed interface having开发者_C百科 [OperationContract(IsOneWay = true)] attribute.
If yes how can Java application call methods exposed in WCF application?
Note: its not a WCF sevice so we not having Service refence.
For simple Service Calls you can use BasicHttpBinding.
Edit: Found a link Blog Site: WCF & Java Interop
For advanced there is a Project from Sun called Web Services Interoperability Technologies (WSIT)
take a look at Project Site you can found a little introduction at InfoQ
精彩评论