Hi Matthieu,
Still I couldnt overcome this issue and i coudnt get more stacktrace of
this issue..("*WebServiceError is not defined*")
I'm using ODE 1.1 .war distribution with tomcat5.5..
Can somebody help me?
Thanks.
ratha.
function getAllInstaces()
{
try{
instances_available =
InstanceManagementService.listAllInstances();
return instances_available;
}
catch(err)
{
if (typeof err == "string") {
alert("Exception Occurred " +err.toString());
}
else {
alert("Exception Occurred!" + err);
}
}
x=instances_available.getElementsByTagName("iid");
for (i=0;i<x.length;i++)
{
document.write(x[i].childNodes[0].nodeValue);
document.write("<br />");
}
}
getAllInstaces();
Matthieu Riou wrote:
> On Tue, Nov 18, 2008 at 1:31 AM, ratha <[EMAIL PROTECTED]> wrote:
>
>
>> Hi all,
>> I'm getting an exception like..
>> *'WebServiceError is not defined'*
>>
>>
>
> Would you have a whole stacktrace or something a little more descriptive?
> The test cases we have suing listIntances() all seem to pass. By the way in
> your code fragment, the namespace prefix isn't required to be 'ns' so that
> may be a reason why you're not seeing any element returned there.
>
> Matthieu
>
>
>
>> Thanks.
>> -ratha.
>>
>> ratha wrote:
>>
>>
>>> Hi all,
>>>
>>> I'm trying to communicate with the InstanceMangementAPI/ /to list all the
>>> instances available../
>>> /I'm using ODE.war distribution with tomcat./
>>> /my javascript is as follows,/
>>>
>>> function getAllInstaces()
>>> {
>>> var instances_available = InstanceManagementService.listAllInstances();
>>> var x=instances_available.getElementsByTagName("ns:iid");
>>> for (i=0;i<x.length;i++)
>>> {
>>> document.write(x[i].childNodes[0].nodeValue);
>>> document.write("<br />");
>>> }
>>>
>>> }
>>>
>>> getAllInstaces();
>>>
>>> Note:It should return the avilable iid's(some numbers) at the browser
>>>
>>> /But i couldnt get any output.(the problem is it didnt create an object(/
>>> instances_available /) with the server).
>>>
>>> I'm placing my javascript,html file at the samelevel of WEB-INF,META-INF
>>> directories.
>>>
>>> I dont know what is the error exactly. Is the error in my object creation?
>>> or any others..
>>>
>>> I'm using jdk1.6 with eclipse IDE(i think all required libraries are
>>> available with this distribution).
>>>
>>> Thanks,
>>>
>>> -Ratha.
>>>
>>> ------------------------------------------------------------------------
>>>
>>>
>>> No virus found in this incoming message.
>>> Checked by AVG - http://www.avg.com Version: 8.0.175 / Virus Database:
>>> 270.9.4/1791 - Release Date: 11/15/2008 6:57 PM
>>>
>>>
>>>
>>>
>>
>
>
> ------------------------------------------------------------------------
>
>
> No virus found in this incoming message.
> Checked by AVG - http://www.avg.com
> Version: 8.0.175 / Virus Database: 270.9.4/1791 - Release Date: 11/15/2008
> 6:57 PM
>
>