The scriptservice tag has no wiki summary.
2
votes
0answers
132 views
Script service returns 405 on VS dev server when using HttpContext.RewritePath()?
I seem to encounter a very specific problem, apologies for length of question.
I have a script service physically residing at /somepath/service.asmx.
I am using a url rewriting module ...
1
vote
0answers
60 views
Difference in serialization of .NET ScriptService when using POST vs GET?
I am calling a method in a [ScripService] from the client side (JS). When I use POST to make the call, everything works fine. But when I use GET this error is thrown:
There was an error reflecting ...
0
votes
1answer
1k views
WebService/ScriptService not found; System.Web.Extensions not recognized
I've created a scriptservice in my vb.net 4.0 web app (or web site... not sure which it is - does it matter?) because I want to call it from the client side. I get client errors saying my namespace ...
3
votes
2answers
421 views
How do I get ASP.NET WebForms Routing to route .asmx JSON calls properly?
I am attempting to implement multi-tenancy in a legacy ASP.NET WebForms app. I want the URL to indicate the proper client, like so:
http://example.com/client_name/Default.aspx
...
0
votes
2answers
2k views
allow cross-domain requests to ASP.NET ScriptService
I've got a ASP.NET Webservice up and running using the [ScriptService] Attribute. From what I've read from this article:
...
4
votes
1answer
2k views
ASP.NET ScriptService deserialization problem with derived types
I have a ScriptService web method (.NET 3.5) which takes a single parameter of an abstract base type:
[WebMethod(EnableSession=true)]
[ScriptMethod()]
public bool Test(Item item) { ... }
And:
...
1
vote
0answers
242 views
ASP.NET ScriptService JavaScript alias
This is more a cosmetic issue, rather than an actual "problem".
I've got a solution in which I am converting a lot of PageMethods into WebService calls instead. Some of the PageMethods created a page ...
2
votes
1answer
1k views
Webservice complex types and class inheritance
Using the following Webservice definition using aClientArgs as a complex type:
[System.Web.Script.Services.ScriptService]
public class Controller : System.Web.Services.WebService {
[WebMethod]
...