service unvailable

Newbie Member
3Aug2006,14:32   #1
mariechristine's Avatar
I am trying to invoke a webservice from javascript.

When I work locally (html and javascript on my PC) calling the webservice on a remote pc, it is successfully working. However, when I put the htm & javascript on another pc and I open the page using ip of other pc, I am getting "Service unavailable" error!

Do you have any idea?


The following is the code I am using:
HTML Code:
<HTML>
<HEAD>
<SCRIPT language="JavaScript">
function init()
{
service.onServiceAvailable = alertReady;
service.useService("http://webservices.codingtheweb.com/bin/qotd.wsdl","quote"); 
}

function alertReady() {
alert("Ready");
}

function getQuote() {
service.quote.callService(onmyresult,"getQuote");
}

function onmyresult(result)
{
if (!result.error) {
service.innerHTML = result.value;
}else{
service.innerHTML = "Error: " + result.errorDetail.code + " " + result.errorDetail.string + " " + result.errorDetail.raw;
}
}
</SCRIPT>
</HEAD>
<BODY onload="init()">
<button onclick="getQuote()">Get Quote of the Day</button> 
<div id="service" style="behavior:url(htc/webservice.htc)"></div>
</BODY>
</HTML>
Go4Expert Founder
3Aug2006,18:16   #2
shabbir's Avatar
Please do not post your queries under the Articles and source code section.
Go4Expert Founder
3Aug2006,18:20   #3
shabbir's Avatar
If the code is working on one and not from other the problem does not look like to be with the code but it looks like your web server is not configured correctly. Refer to Service Unavailable error I once faced and found a solution to that problem.