2
votes
Including a WebService reference in a control
You can add a ScriptManagerProxy in the code or the markup of your control and add the service reference through it. The settings in the ScriptManagerProxy are merged with the "real" ScriptManager …
2
votes
What is the best way to consume a web service from VB6?
Check out this article by Scott Swigart on the MSDN VB 6.0 Resource Center.
Calling Web Services from Visual B …
0
votes
How do I build a secure webservice with .Net?
WCF is the way to go. It offers many possible security solutions, some standards-based and interoperable, some .NET or Windows specific.
A quick …
1
vote
C# Web Service won’t output JSON, only XML
As far as I know, the ScriptService attribute just allows the service to automatically create a JavaScript proxy (by appending /js to the endpoint address - ScheduleComputerDS.asmx/js in your case) …
0
votes
An issue with AJAX web service call: Microsoft JScript runtime error: Sys.Net.WebServiceFailedException:
Is the Web service is a different project? If so, .NET will consider it to be a cross-domain call (I think because the client and service are running in separate instances of the developer web serv …
1
vote
Is there a web service for getting a list of all site collections in WSS 3.0?
Yes. You should be able to use the GetWebCollection operation from Webs.asmx to iterate all the sites in the collection.
…
