vote up 0 vote down star

I have a wcf duplex service with work fine in silverlight. but the same service want to consume in windows forms. how it possible. my code as folow:-

EndpointAddress address;
            address = new EndpointAddress("http://server08:2508/JakayaChatService");
            CustomBinding binding = new CustomBinding(
                new PollingDuplexBindingElement(),
              new BinaryMessageEncodingBindingElement(),
              new HttpTransportBindingElement());

            WindowsFormsApplication2.DuplexService.JakayaChatServiceClient c = new WindowsFormsApplication2.DuplexService.JakayaChatServiceClient(new InstanceContext(new myClass()),binding,address);

It give me an error:

Binding 'CustomBinding' doesn't support creating any channel types. This often indicates that the BindingElements in a CustomBinding have been stacked incorrectly or in the wrong order. A Transport is required at the bottom of the stack. The recommended order for BindingElements is: TransactionFlow, ReliableSession, Security, CompositeDuplex, OneWay, StreamSecurity, MessageEncoding, Transpor

please provide me a sample code how to consume wcf duplex service in windows forms. Thanks

flag

25% accept rate
What does your WCF config on the Silverlight client look like?? Are you using this custom binding, too? – marc_s Sep 16 at 4:55
yes im using custom binding in silverlight. – Tarun Sep 16 at 6:24
and why can't you use the same config file (or at least parts of it) for your WInforms app? Why create everything in code? – marc_s Sep 16 at 7:25

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.