http-status-code-505

    4熱度

    2回答

    我想爲簡單的搜索請求使用Bing SOAP API。但是現在我終於弄清楚瞭如何使用JAX-WS發送請求,我又被卡住了。當我發送請求時,我收到了回覆 com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 505: HTTP Version not supported。誰能幫我

    1熱度

    1回答

    這是一個簡單的問題。如何更改.htaccess文件以重寫所有文件以將其重定向到index.php文件? 當我刪除RewriteCond的行時,我會得到505 Internal Server Error。 這是我.htaccess文件: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteRule . index.php [L]

    -1熱度

    1回答

    var value = 'New Delhi, India'; $yql_query_url = 'http://query.yahooapis.com/v1/public/yql?q=select * from geo.places where text='.value.'&format=json'; $ch = curl_init($yql_query_url); curl_setop

    0熱度

    3回答

    令人沮喪我需要開發Python 2.6.4的東西,並需要發送刪除請求到似乎只支持http 1.1的服務器。這裏是我的代碼: httpConnection = httplib.HTTPConnection("localhost:9080") httpConnection.request('DELETE', remainderURL) httpResponse = httpConnection.g

    4熱度

    2回答

    我需要從服務提供商處獲取一些數據,並配置我們的.net應用程序以指向其託管的Web服務以獲取數據。使用下面的代碼,當調用Web方法(ws.DoTransfer)我得到以下錯誤... private void DoTransferLocal() { Version version = new Version(); string error = string.Em

    15熱度

    5回答

    我在我的代碼中有基於HTML的查詢,並且在收到來自服務器的505響應後,一種特定類似乎會引起IOExceptions。我和其他似乎有類似問題的人一起查了一下505的迴應。顯然,505代表HTTP版本不匹配,但是當我將相同的查詢URL複製到任何瀏覽器(嘗試過Firefox,seamonkey和Opera)時,似乎沒有問題。我閱讀的其中一篇帖子表明,瀏覽器可能會自動處理版本不匹配問題。 我試圖通過使用

    3熱度

    1回答

    喜在我的Android項目即時調用Web服務,並通過查詢字符串參數發送GET參數,現在的問題是,如果查詢字符串參數值中包含的任何空白,然後我得到505錯誤 URL url = new URL(urlstring.trim()); urlConnection = (HttpURLConnection) url.openConnection();