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 -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -