我在網上看到一堆示例,但我很困惑這個服務應該是獨立的還是與消費應用程序在同一個解決方案中。有人可以幫幫我嗎?如何使用jQuery將AJAX調用添加到ASP.NET網頁的WCF Web服務?
我需要支持AJAX型WCF服務的文件添加到我的ASP.NET Web應用程序或我需要一個Web服務引用到我的WCF服務?
當我使用jQuery的Ajax的功能有一個URL參數。我看到的所有例子都使用「
Services/MyService.svc/MyMethodName
」。這是因爲服務在Web應用程序的解決方案中?請問我的WCF服務必須有:
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
做我的web服務調用需要具有以下屬性?
[WebInvoke(方法= 「POST」, BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]
難道我的Web應用程序或我的web服務需要的行爲設置爲
enableWebScript
?
我是否錯過任何必需的屬性或設置?
這裏是我的web應用程序的jQuery我的Ajax請求:
$.ajax({
type: "POST",
url: "http://myserver/myservice.svc/mymethod",
contentType: "application/json; charset=utf-8",
data: "{" + args + "}",
dataType: 'json',
});
這裏是我的web服務的web.config:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="Basic" />
</basicHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="ServiceBehavior" name="MyServiceName">
<endpoint address="basic"
binding="basicHttpBinding"
bindingConfiguration="Basic"
name="Basic"
contract="IService" />
<endpoint address="web"
behaviorConfiguration="webHttpBehavior"
binding="webHttpBinding"
name="Web"
contract="IService" />
<endpoint address="mex"
binding="mexHttpBinding"
name="Metadata"
contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="webHttpBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
我不明白#2。如果我的asp.net Web應用程序在解決方案中沒有Web服務,但Web服務託管在開發服務器上,那麼我的網址應該是什麼?我是否需要對開發服務器的http使用絕對地址? – hyprsleepy 2012-03-14 20:36:26
絕對路徑總是有效的,WCF不關心你使用哪一個,只要他們解決。就你而言,這聽起來像你需要一個絕對的服務網址。 – PTiddy 2012-03-14 20:56:34
如果我使用JSON,我的WCF服務需要比basicHttpBinding多嗎?我需要webHttp嗎? – hyprsleepy 2012-03-16 14:24:18