Hai
I am using Java Script to call .Net Webservices. My Html file with it's scripting is giveing below
<html>
<head>
</HEAD>
<body onLoad="init()">
<DIV id="service" STYLE="behavior:url(webservice.htc)"></div>
<SCRIPT language="JavaScript">
function init()
{
service.useService("http://localhost/WebSer1/Service1.asmx?WSDL","MyMath");
iCallID = service.MyMath.callService(result,"EchoString");
}
function mathResults(result)
{
if(result.error)
{
var xfaultcode = result.errorDetail.code;
var xfaultstring = result.errorDetail.string;
var xfaultsoap = result.errorDetail.raw;
alert(xfaultcode+xfaultstring +xfaultsoap);
}
else
{
alert(result.value);
}
}
</SCRIPT>
<BR>
Enter a Value <input type='text' id='param1'>
<BR>
<button onClick="mathResults(results)">Call A Web Method</button>
</body>
</html>
But this is not working... My WebService code is below
using
System;
using
System.Collections;
using
System.ComponentModel;
using
System.Data;
using
System.Diagnostics;
using
System.Web;
using
System.Web.Services;
namespace
WebSer1
{
/// <summary>
/// Summary description for Service1.
/// </summary>
public class Service1 : System.Web.Services.WebService
{
public Service1()
{
//CODEGEN: This call is required by the ASP.NET Web Services Designer
InitializeComponent();
}
#region
Component Designer generated code
//Required by the Web Services Designer
private IContainer components = null;
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if(disposing && components != null)
{
components.Dispose();
}
base.Dispose(disposing);
}
#endregion
// WEB SERVICE EXAMPLE
// The HelloWorld() example service returns the string Hello World
// To build, uncomment the following lines then save and build the project
// To test this web service, press F5
// [WebMethod]
// public string HelloWorld()
// {
// return "Hello World";
// }
public string EchoString()
{
return "dasf";
}
}
}
So if any one have any idea plz share with me..
Thanking you
No one has replied yet! Why not be the first?
Sign in or Join us (it's free).