sir , i have created a jsp page . inbetween which i write javascript code . code is acessing xml file(i attached also the xml file and i placed that file in apache .i m entering the path of xml in text bob of jsp page) using ajax and parsing it with javascript.but that code only works in IE6 not in IE7 and Firefox. i hav attached that jsp code. plz help me out.......
aman_preetji 0 Newbie Poster
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:ns1="http://org.apache.axis2/xsd"
xmlns:ns="http://mcarbon.com"
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
targetNamespace="http://mcarbon.com">
<wsdl:types>
<xs:schema
attributeFormDefault="qualified"
elementFormDefault="qualified"
targetNamespace="http://mcarbon.com">
<xs:elementname="getUserName">
<xs:complexType>
<xs:sequence>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:elementname="getUserNameResponse">
<xs:complexType>
<xs:sequence>
<xs:element
minOccurs="0"
name="return"
nillable="true"
type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
<wsdl:message
name="getUserNameRequest">
<wsdl:part
name="parameters"
element="ns:getUserName"/>
</wsdl:message>
<wsdl:message
name="getUserNameResponse">
<wsdl:part
name="parameters"
element="ns:getUserNameResponse"/>
</wsdl:message>
<wsdl:portType
name="TestWsdlPortType">
<wsdl:operation
name="getUserName">
<wsdl:input
message="ns:getUserNameRequest"
wsaw:Action="urn:getUserName"/>
<wsdl:output
message="ns:getUserNameResponse"
wsaw:Action="urn:getUserNameResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding
name="TestWsdlSoap11Binding"
type="ns:TestWsdlPortType">
<soap:binding
transport="http://schemas.xmlsoap.org/soap/http"
style="document"/>
<wsdl:operation
name="getUserName">
<soap:operation
soapAction="urn:getUserName"
style="document"/>
<wsdl:input>
<soap:body
use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body
use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding
name="TestWsdlSoap12Binding"
type="ns:TestWsdlPortType">
<soap12:binding
transport="http://schemas.xmlsoap.org/soap/http"
style="document"/>
<wsdl:operation
name="getUserName">
<soap12:operation
soapAction="urn:getUserName"
style="document"/>
<wsdl:input>
<soap12:body
use="literal"/>
</wsdl:input>
<wsdl:output>
<soap12:body
use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding
name="TestWsdlHttpBinding"
type="ns:TestWsdlPortType">
<http:binding
verb="POST"/>
<wsdl:operation
name="getUserName">
<http:operation
location="TestWsdl/getUserName"/>
<wsdl:input>
<mime:content
type="text/xml"
part="getUserName"/>
</wsdl:input>
<wsdl:output>
<mime:content
type="text/xml"
part="getUserName"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service
name="TestWsdl">
<wsdl:port
name="TestWsdlHttpSoap11Endpoint"
binding="ns:TestWsdlSoap11Binding">
<soap:address
location="http://192.168.1.249:9090/axis2/services/TestWsdl.TestWsdlHttpSoap11Endpoint/"/>
</wsdl:port>
<wsdl:port
name="TestWsdlHttpSoap12Endpoint"
binding="ns:TestWsdlSoap12Binding">
<soap12:address
location="http://192.168.1.249:9090/axis2/services/TestWsdl.TestWsdlHttpSoap12Endpoint/"/>
</wsdl:port>
<wsdl:port
name="TestWsdlHttpEndpoint"
binding="ns:TestWsdlHttpBinding">
<http:address
location="http://192.168.1.249:9090/axis2/services/TestWsdl.TestWsdlHttpEndpoint/"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
xmlDoc=xmlhttp.responseXML;
var txt="";
var x=xmlDoc.documentElement.getElementsByTagName("xs:element");
var j=0;
for(var i=0;i<x.length;++i)
{
var y=x[i].attributes.getNamedItem("name").nodeValue;
var days = document.form1.methodsName;
var option = new Option();
i++;
days.options[j] = option;
days.options[j].text = y;
days.options[j].value = y;
j++;
}
}
}
xmlhttp.open("GET",document.form1.url.value,true);
xmlhttp.send(null);
}
</script>
</head>
<body>
<form name="form1">
<div id="myDiv"></div>
<p><font color="#800000" size="5">Enter WSDL URL:</font><input type="text" name="url" size="20"></p>
<button type="button" onclick="loadXMLDoc()">Get methods</button>
<select name="methodsName"/>
</form>
</body>
</html>
- 1 Contributor
- 0 Replies
- 50 Views
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.