Quantcast
Viewing all articles
Browse latest Browse all 3

Web Service - XMLA - question

Hi Experts,

 

based on Prakash Darji's blog I made XMLA working in development environment.

 

In prakash's code we can see out put in HTML format. Due to following code.

 

-


// Execute the SOAP request

     objXMLHTTP.setRequestHeader ("SOAPAction", action);

     objXMLHTTP.setRequestHeader ("Content-Type", "text/xml");

     objXMLHTTP.send(SOAPEnvelope);

      

     if (objXMLHTTP.status != 200)

     {

          SOAPResponse.innerHTML = objXMLHTTP.responseText;

     }

     else

     {

          // Show SOAP Response          

          objXMLDOM.loadXML(objXMLHTTP.responseXML.xml);     

          // Translate SOAP Response to HTML and show HTML

          LoadXSL( xsl, HTMLResponse);               

     }               

-


 

But I dont want to convert SOAP Response into HTML...but I want XML file (also if possible to see the xml file as output of code)....Can any body suggest me changes in the code so that I can get XML file,...also the location of XML file...I am running this file from my desktop.

 

 

Any inputs are most valued will be rewarded.

 

Monica


Viewing all articles
Browse latest Browse all 3

Trending Articles