BicycleTheif
BicycleTheif

Reputation:

gSOAP for WCF server with TCP binding and Callback events

We need a C++ client application to consume WCF server with NetTCPBinding, and Callback events supported. I have generated the proxy using gSOAP 2.7.10. But my proxy does not communicate with server. When I use BasicHttp binding, it seems to work. Not sure of events.

Can anyone suggest me, if gSOAP works with TCP binding, and callback events. I have already tried with Microsofts WWSAPI. It does not meet my requirements. Is it worth trying gSOAP. If it does not work any other alternative?

Upvotes: 1

Views: 1735

Answers (2)

Jeremy McGee
Jeremy McGee

Reputation: 25200

As NetTcpBinding is only supported for WCF-WCF communication, you'll want to create a C# shim and expose this as a COM object for consumption by the C++ application.

Upvotes: 0

John Saunders
John Saunders

Reputation: 161773

I believe you are referring to the NetTcpBinding class? From that page:

The default configuration for the NetTcpBinding is faster than the configuration provided by the WSHttpBinding, but it is intended only for WCF-to-WCF communication.

So the answer is "no".

Upvotes: 1

Related Questions