asp.net - Binding WCF service -


i have launched asp. net aplication use wcf service, here code of web.config:

<system.servicemodel> <client>   <endpoint address="http://somehost.com/giservice.svc" binding="basichttpbinding"   contract="respservice.iprocess"/> </client> </system.servicemodel> 

problem service bind absolute uri, if set relative have error: uri should absolute

try following:

<system.servicemodel> <client>   <endpoint address="/giservice.svc" binding="basichttpbinding"   contract="respservice.iprocess"/> </client> </system.servicemodel> 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Socket.connect doesn't throw exception in Android -

iphone - How do I keep MDScrollView from truncating my row headers and making my cells look bad? -