c# - Exposing and consuming NetTcpBinding from silverlight -
i'm trying expose , consume wcf service using nettcpbinding (i have basichttpbinding working already) don't know how expose new nettcpbinding.
i've read may use microsoft service configurator editor configure service can't find "step-by-step" guide configured manually:
<services> <service behaviorconfiguration="behavior" name="serviceimplementation"> <endpoint address="net.tcp://localhost:4445/service" binding="nettcpbinding" bindingconfiguration="" name="service" contract="iservice" /> </service> </services>
now want consume silverlight dll project , don't know how try it. if add web reference http services doesn't connect "net.tcp://localhost:4445/service" (it rejects connection).
how should it? know step step guide? in advance.
silverlight not support bindngs. nettcpbinding 1 not supported.
see http://msdn.microsoft.com/en-us/library/cc896571(v=vs.95).aspx list of supported.
Comments
Post a Comment