i red a lot of documents about, but i can\'t consume this .svc file. I\'ve no problem with .ASMX file. Only SVC i\'m not able to consume. It\'s very very very stressfull....! I
Do you have control over WCF part?
The easiest way will be to update WCF bingding. Currently it is WSHttpBinding
, That binding is way more complicated than *.asmx.
Check if it is possible to publish endpoint with basicHttpBinding
binding.
http://msdn.microsoft.com/en-us/library/ms731361.aspx
That binding is compatible with *.asmx and you only will need to update URL in your java code to consume it.