Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   General Computer Support (http://www.velocityreviews.com/forums/f44-general-computer-support.html)
-   -   Internal Server Error 500 (http://www.velocityreviews.com/forums/t732769-internal-server-error-500-a.html)

brinda 09-08-2010 05:56 AM

Internal Server Error 500
 
I receive Internal Server Error ....
It returns Req.status = 500
Pl say the possibilities for this error,It would be helpful
Visual Studio 2003,Windows XP

configured basic Web Service and Application in same System

function CellClick(tableName,itemName, Btn)
{
var column =igtbl_getColumnById(itemName);
var oRow = igtbl_getRowById(itemName);
cnt = oRow.getCell(4).getValue();
StyleId = oRow.getCell(5).getValue();
if(column.Key=="Style")
{
cellobj = igtbl_getElementById(itemName);
cellobj.style.cursor = 'wait';
var x;
if(clickval==0) {
clickval=1;
window.status='Waiting for Page...';
LoadXmlForEncryption(CommonServiceUrl + '/common.asmx/GetEncryptString?InputString=' + StyleId);
}
}
}



function LoadXmlForEncryption(url)
{
// branch for native XMLHttpRequest object
//code for Mozilla, etc
if (window.XMLHttpRequest) {
req = new XMLHttpRequest();
req.onreadystatechange = GetEncryptString();
req.open("GET", url, true);
req.send(null);
// branch for IE/Windows ActiveX version
} else if (window.ActiveXObject) {
isIE = true;
req = new ActiveXObject("Microsoft.XMLHTTP")
if (req) {
req.onreadystatechange = GetEncryptString
req.open("GET", url, true)
req.send()
}
}
}


function GetEncryptString()
{
if (req.readyState == 4) {
if (req.status == 200) {
response = req.responseXML.documentElement;
EncStr = response.getElementsByTagName('OutputString')[0].firstChild.data;
LoadXmlForDocLock(CommonServiceUrl + '/common.asmx/LockEntry?sDocNo=' + StyleId + '&sPrefix=STY&sMisc=' + 'StyleEntry.aspx' + '&ToInsert=True');
} else {
alert("Problem in Web Service :\n" + req.statusText);
DefaultCursor();
}
}

}


All times are GMT. The time now is 08:25 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57