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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -