Posted on: 12/22/2013 8:02:54 AM | Views : 735

hello experts. 
I got a problem in webmethods. The code works fine in production side. But fails when it published.  Please take a look at the code below and advice me where i went wrong. 
Index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Page</title> <script src="scripts/jquery-1.3.2.min.js" type="text/javascript"></script> <script type = "text/javascript"> function GetAuthenticated() { var TxtUseName = document.getElementById('UserName').value; var TxtPwd = document.getElementById('UserPwd').value; $.ajax({ type: "POST", ...

Go to the complete details ...