Questions tagged [wcf-interoperability]

24 questions
9
votes
3 answers

WCF/WebService: Interoperable exception handling

I understand that WCF will convert an exception into a fault and send it back as a SOAP message, but I was wondering if this is truly interoperable. I guess I'm having a tough time trying to figure out this possible scenario: Client (Java) calls a…
michael
  • 14,844
  • 28
  • 89
  • 177
6
votes
3 answers

What should I know when developing interoperable WCF web service?

I'm starting this Wiki to collect best practices about creating interoperable web services (not clients) in WCF. Please share your experience if you know any feature which is not generally interoperable or which is not interoperable with specific…
Ladislav Mrnka
  • 360,892
  • 59
  • 660
  • 670
4
votes
2 answers

WCF: Is using WsHttpBinding interoperable?

As the name states... right now I'm using BasicHttpBinding, but I'm wondering if I can switch to WSHttpBinding and still be interoperable with, for example, Java.
michael
  • 14,844
  • 28
  • 89
  • 177
4
votes
1 answer

WSIT does not understand SOAP Security header after request with custom security header

I am writing a Java web services client using Metro/WSIT libraries, and the web services I need to hit are WCF services. (I have little to no control over the service-side and the WSDLs.) The web services are secured with both transport-level…
Kevin Hart
  • 73
  • 6
2
votes
1 answer

Security and authentication design concepts about an interoperable (SOAP, REST) WCF Service

I would like to start with the scenario. I have created a WCF service as much as interoperable as I could, meaning I have three endpoints, one using the wsHttpBinding (SOAP) which later will be using Transport security when I setup my certificate,…
1
vote
0 answers

I cannot find a suite of algorithms for this soap wcf request header

I am receiving a header from a third-parthy wcf java client. My .NET svc service is throwing an exception after receive it ,due to I cannot find a compatible algorhtim suite value in my web.config. This is the signerInfo header I am receiving…
1
vote
1 answer

#Id/#Ref is unresolved

I have created a very simple Web Service using WCF/.NET framework 4.0 (C#). I have generated a WSDL file using the svcutil.exe utility. When I import the WSDL file using Eclipse (Java EE), I get the following errors: XSD: Attribute reference…
1
vote
3 answers

WCF - Are Asynchronous Services interoperable?

Basically as the question states, if I make my services asynchronous does that mean they aren't interoperable anymore?
michael
  • 14,844
  • 28
  • 89
  • 177
1
vote
0 answers

how can a WCF Java clients Send GZIP Compressed Requests to service?

i have application with WCF Service which Receives a big input string parameters size , and all service clients are java ,i had found a built in compression mechanism using custom binding element configured as follow :
1
vote
1 answer

C# WCF Web Service on localhost consumed by Java Client

currently my WCF Service is using net.pipes to talk on local machine. Now I want to consume the web service in java on the same machine. Here I have some questions: Which binding I have to use to talk on local machine with Java client? I don't…
Danny.
  • 363
  • 1
  • 4
  • 23
1
vote
1 answer

WCF Universal service contract and WS-Interoperability compliance

Microsoft MSDN describes the most universal service contract for a request reply operation as [ServiceContract] public interface IUniversalRequestReply { [OperationContract(Action="*", ReplyAction="*")] Message ProcessMessage(Message…
fanvabra
  • 140
  • 1
  • 8
0
votes
1 answer

WCF - Array or Collection (are they both interoperable)?

Basically, are they both interoperable or is it just the array that is?
michael
  • 14,844
  • 28
  • 89
  • 177
0
votes
1 answer

Getting WCF to accept unsigned 'To' Header

I have a WCF web service that is using WSHttpBinding. The security is TransportWithMessageCredential. I have a client connecting to me that is sending a Soap message with the To element in the header unsigned. My service doesn't like this and is…
Ian
  • 1
0
votes
1 answer

Advantages of having non interoperable services in WCF?

We are having some discussions about use of WCF and creation of services and client support. Currently we support a silverlight client by providing silverlight versions of our service libraries client side, so that we can keep the strong typing of…
Sam Holder
  • 32,535
  • 13
  • 101
  • 181
0
votes
1 answer

Webservice proxy returns an empty array but soap response is valid

I'm trying to consume a php webservice from a c# windows client. I do not have access to the service code. I modified the wsdl to produce the proxy classes. When I call check_connect(), which return a string, everything works fine. When I call…
akakos
  • 1
  • 1
1
2