My need (investigation) is to determine how I can access web services from
an HTML page and how I can access web services from an ASP 3 page.
(JavaScript is permitted.)
The current implementation is packaged as a Web Application. The caller
submits a form that includes two URLs. One URL is for normal return and the
other is for an error return. Exit from the application is by
Response.Redirect to one of the two URLs. This allows the caller(using
plain HTML) to customize the response pages to have the same look-and-feel
as the other pages in their website. The exit from the two displayed user
pages is typically different. For normal it is to return to the page that
called the page with the form to fill in and submit (history-2). For error
it is to return to the original form submission page to allow corrections
(history-1).
Currently there is no user interface for the web application. Exposed in
the web application is ...
<%@ Page language="c#" Codebehind="form.aspx.cs" AutoEventWireup="false"
Inherits="tools.form" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>form</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="
http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
</form>
</body>
</HTML>