我在设备上收到错误但在模拟器上运行正常

时间:2012-01-11 11:23:28

标签: android parsing dom

在设备上:

01-11 16:29:17.955: I/System.out(12436): status code--->500
01-11 16:29:17.955: I/global(12436): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
01-11 16:29:18.025: I/System.out(12436): response is -->
<html>    <head>        <title>Runtime Error</title>        <style>         body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}          p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}         b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}         H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }         H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }         pre {font-family:"Lucida Console";font-size: .9em}         .marker {font-weight: bold; color: black;text-decoration: none;}         .version {color: gray;}         .error {margin-bottom: 10px;}         .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }        </style>    </head>    <body bgcolor="white">            <span><H1>Server Error in '/BounceMeInWS' Application.<hr width=100% size=1 color=silver></H1>            <h2> <i>Runtime Error</i> </h2></span>            <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">            <b> Description: </b>An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.            <br><br>            <b>Details:</b> To enable the details of this specific error message to be viewable on remote machines, please create a &lt;customErrors&gt; tag within a &quot;web.config&quot; configuration file located in the root directory of the current web application. This &lt;customErrors&gt; tag should then have its &quot;mode&quot; attribute set to &quot;Off&quot;.<br><br>            <table width=100% bgcolor="#ffffcc">               <tr>                  <td>                      <code><pre>&lt;!-- Web.Config Configuration File --&gt;&lt;configuration&gt;    &lt;system.web&gt;        &lt;customErrors mode=&quot;Off&quot;/&gt;    &lt;/system.web&gt;&lt;/configuration&gt;</pre></code>                  </td>               </tr>            </table>            <br>            <b>Notes:</b> The current error page you are seeing can be replaced by a custom error page by modifying the &quot;defaultRedirect&quot; attribute of the application&#39;s &lt;customErrors&gt; configuration tag to point to a custom error page URL.<br><br>            <table width=100% bgcolor="#ffffcc">               <tr>                  <td>                      <code><pre>&lt;!-- Web.Config Configuration File --&gt;&lt;configuration&gt;    &lt;system.web&gt;        &lt;customErrors mode=&quot;RemoteOnly&quot; defaultRedirect=&quot;mycustompage.htm&quot;/&gt;    &lt;/system.web&gt;&lt;/configuration&gt;</pre></code>                  </td>               </tr>            </table>            <br>    </body></html>

在模拟器上:

01-11 16:36:25.991: I/System.out(15152): status code--->200
01-11 16:36:25.991: I/global(15152): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
01-11 16:36:26.011: I/System.out(15152): response is --><?xml version="1.0" encoding="utf-8"?><ArrayOfMerchant xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/">  <Merchant>    <ID xsi:nil="true" />    <EmailAddress>bipin@cloudxtension.com</EmailAddress>    <DealNumber>121</DealNumber>    <PromotionTitle>Happy hour</PromotionTitle>    <UserTypeID xsi:nil="true" />    <ImageUrle>Image.aspx?MerchID=34</ImageUrle>    <MerchantID>34</MerchantID>    <SpecialDealNumber xsi:nil="true" />    <FromDate>2012-04-01T00:00:00</FromDate>    <ToDate>2012-06-01T00:00:00</ToDate>    <PromotionTypeID xsi:nil="true" />    <Amount>0</Amount>    <TransactionAmount>0</TransactionAmount>    <SubscriptionID xsi:nil="true" />    <DealName>Happy Hour</DealName>    <MerchantName>Bipin  Kumar</MerchantName>  </Merchant></ArrayOfMerchant>

0 个答案:

没有答案
相关问题