I'm trying to call a webservice. I would usually call it under
<Application creationComplete="dotNetService.GetCabinets()">
That is not working in my situation, i think i have to call it like
this. <Application initialize="dotNetService.GetCabinets()">. But if
I do that and debug it never hits the web service. I think this is
because the code below does not get created.
Any ideas?
<WebService id="dotNetService"
wsdl="http://localhost:2008/ServiceTrackit/roadmap.asmx?WSDL"
useProxy="false" showBusyCursor="true">
<operation name="GetCabinets" result="CabinetsHandler(event)"
/>
</WebService>