IT405 Week 09
IT405 Week 09
Building a Web 2.0 Portal with ASP.Net 3.5 Al Zabir, Omar (2008)
ASMX Web When you make a web service call from the browser via the ASP.NET AJAX
Service Framework, it uses XML HTTP to make a call to a server-side web service.
Source file
Calls to ASMX files are handled by ASP.NETs ASMX handler.
When you add ASP.NET AJAX to your web application, you need to make
some changes in the web.config to remove the default ASMX handler
and add the ASP.NET AJAX Frameworks own ScriptHandler as the
ASMX handler.
You also add a ScriptModule in the HTTP modules pipeline.
ScriptHandler is a regular HTTP handler that finds out which web
service and web method is called by parsing the URL.
Framework for Handling Web Service
Calls
The steps involved in calling a web method: