我有一個wcf服務,我打電話給另一個網站。訪問被拒絕 - 同時調用wcf服務
服務正在做一些解碼工作。
發生的問題是:
對於少數車輛的數據進行解碼的非常好,但是對於一些車輛的示值誤差。
錯誤代碼:500 錯誤消息:無法驗證+拒絕訪問
我已經添加了錯誤的屏幕截圖。
注:對於某些車輛工作正常。
因爲它是爲少數車輛工作,我不認爲這是解碼代碼的問題。
請建議,這可能是這裏的問題..
代碼來訪問服務:
function ResetValues(infoType)
{
var $jDecode = jQuery.noConflict();
var decoderUrl = $jDecode("input[id*=hdnVINDecoderURL]").val();
var vin = $jDecode("input[id*=txtVIN]").val().toUpperCase();
var styleId = null;
var trim = $jDecode("#lbTrimRecords").val();
if(trim != null)
{
styleId = trim.substring(trim.lastIndexOf("(") + 1, trim.lastIndexOf(")"));
}
//Declaring parameter to be passed to the called function.
var paramList = '{"vin":"'+vin+'","styleID":"'+styleId+'","infoType":"'+infoType+'"}';
//To show the loading image
document.getElementById('imgLoading').style.visibility = 'visible';
try
{
$jDecode.ajax({
type: 'GET',
contentType: 'application/json; charset=utf-8',
url: decoderUrl + 'GetFactoryInformation/' + vin + '/' + styleId + '/' + infoType,
//data: paramList,
dataType: 'jsonp',
success: function(data) {
dataObject = data;
你必須顯示代碼。具體來說,你如何訪問代碼**中的服務**。 – Yuck
@Yuck - 請參閱編輯..我知道是否需要提供更多信息。 – James
您是否嘗試過URL參數編碼:vin,styleId等? – hoang