當我嘗試訪問我的應用程序的URL時,在瀏覽器中,我得到一個響應,但是當在應用程序中使用相同的URL時,我收到了一些其他響應。你認爲什麼是概率?來自瀏覽器和應用程序的不同響應?
輸出在瀏覽器中:
−
<Rowsets DateCreated="2011-08-25T02:56:24" EndDate="2011-08-25T02:55:59" StartDate="2011-08-25T01:55:59" Version="12.1.8 Build(20)">
−
<Rowset>
−
<Columns>
<Column Description="Role" MaxRange="1" MinRange="0" Name="Role" SQLDataType="1" SourceColumn="Role"/>
</Columns>
−
<Row>
<Role>Administrator</Role>
</Row>
−
<Row>
<Role>Everyone</Role>
</Row>
−
<Row>
<Role>QUALITY_REVIEWER</Role>
</Row>
−
<Row>
<Role>SAP_XMII_Developer</Role>
</Row>
−
<Row>
<Role>SAP_XMII_User</Role>
</Row>
</Rowset>
</Rowsets>
輸出在控制檯/應用
<?xml version="1.0" encoding="UTF-8"?>
<Rowsets DateCreated="2011-08-25T04:55:37" EndDate="2011-08-25T04:55:11" StartDate="2011-08-25T03:55:11" Version="12.1.8 Build(20)">
<FatalError>
org.xml.sax.SAXParseException: The markup in the document following the root element must be well-formed.
</FatalError>
</Rowsets>
我的調用例程很好..我的調用例程沒有問題。對於其他網址,其工作正常只適用於2到3個URL ..也..在我的應用程序中構造URL後,我在控制檯中打印該URL,並在瀏覽器中檢查該URL。它是一樣的。 – Bharath