Hi, Anyone can help me on problem to implement XML for Analysis Provider for SQL Server 2000 Analysis Services? I have successfully configure for Windows 2000 server but no such luck on Windows 2003. I receive error page display when calling https://localhost/xmla/msxisapi.dll In Windows 2000 Server, I received the following which I hope to receive. <?xml version="1.0" ?> - <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> - <SOAP-ENV:Body> - <SOAP-ENV:Fault xmlns:XA="urn:schemas-microsoft-com:xml-analysis"> <faultcode>XA:XMLAnalysisError.88BA0800</faultcode> <faultstring>The Web service supports only the POST operation.</faultstring> <faultactor>urn:schemas-microsoft-com:xml-analysis</faultactor> - <detail> <Error ErrorCode="2293893120" Description="The Web service supports only the POST operation." Source="urn:schemas-microsoft-com:xml-analysis" /> </detail> </SOAP-ENV:Fault> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
That is the correct response from the XMLA provider - you must use SOAP to talk to it. Chris "kwng" wrote in message news:20528BFE-1CCD-401A-B780-729887C941E1@microsoft.com... > Hi, > > Anyone can help me on problem to implement XML for Analysis Provider for > SQL > Server 2000 Analysis Services? I have successfully configure for Windows > 2000 server but no such luck on Windows 2003. I receive error page > display > when calling https://localhost/xmla/msxisapi.dll > > In Windows 2000 Server, I received the following which I hope to receive. > > <?xml version="1.0" ?> > - <SOAP-ENV:Envelope > xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" > SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> > - <SOAP-ENV:Body> > - <SOAP-ENV:Fault xmlns:XA="urn:schemas-microsoft-com:xml-analysis"> > <faultcode>XA:XMLAnalysisError.88BA0800</faultcode> > <faultstring>The Web service supports only the POST > operation.</faultstring> > <faultactor>urn:schemas-microsoft-com:xml-analysis</faultactor> > - <detail> > <Error ErrorCode="2293893120" Description="The Web service supports only > the POST operation." Source="urn:schemas-microsoft-com:xml-analysis" /> > </detail> > </SOAP-ENV:Fault> > </SOAP-ENV:Body> > </SOAP-ENV:Envelope> > > >