Step 1: Open the generated application in Visual Studio.NET.
Step 2: Add a Web Reference into the project to the Web
Service in question.
http://localhost/AppWithWebService/MyWebServiceDirectory/MyWebServiceForTableAccess.asmx
Step 3: Add a reference to System.Web.Services.dll in the
application's CompileApplication.rsp file. This is optional if you are using
Visual Studio .NET to compile the application, but is required if you are using
VBC to compile application.
.\MyApp\CompileApplication.rsp
Step 4: Compile the application in Visual Studio .NET.
Step 5: Use this wizard to override the DeleteRecords
function.
Step 6: Add the following imports statement at the top of your <Table Name>SqlTable.vb file
imports <Application Name>.Business
Replace <Application Name> with your application name.
The delete record operations in the application now call the web service's
function.
|