BasicHttpBinding Error - Xamarin -
problem not calling wcf function using basichttpbinding , showing error. no host route error comes on visual studio.
unhandled exception: system.net.webexception: error: connectfailure (no route host)
using system; using system.collections.generic; using system.linq; using monotouch.foundation; using monotouch.uikit; using helloworld_app4.localhost; namespace helloworld_app4 { public class application { // main entry point of application. static void main(string[] args) { // if want use different application delegate class "appdelegate" // can specify here. localhost.service1 obj = new localhost.service1(); obj.getdata(32, true); uiapplication.main(args, null, "appdelegate"); } } }
what license have got? if have indie license wont allowed access web/wcf services , have rely on rest services.
i found out hard way switched ot using asp.net web api create services. simple , cheaper buy business license.
Comments
Post a Comment