ない、これはあなたを助けることができるが、我々はajax.asmx
のようなWebサービスを使用して、我々はそのような何かが私が思うあなたを助けることができるAJAX
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
Imports ClsLib
Imports Microsoft.WindowsAzure.StorageClient
Imports Microsoft.WindowsAzure
' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
<System.Web.Script.Services.ScriptService()> _
<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class Ajax
<System.Web.Services.WebMethod()> _
Public Function function1(byval first as string, byval second as string) as string
'do something here
Return someJsonAsString
End Function
End Class
jQueriesを使用して、それを呼び出す場合を確認してください。
しかし、あなたはそれがより多くのクライアント側のコード
var productServiceUrl = 'http://localhost:57299/ProductService.asmx?op=SaveProduct'; // Preferably write this out from server side
function beginSaveProduct(productID, productName, manufactureDate)
{
var soapMessage =
'<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> \
<soap:Body> \
<SaveProduct xmlns="http://sh.inobido.com/"> \
<productID>' + productID + '</productID> \
<productName>' + productName + '</productName> \
<manufactureDate>' + manufactureDate + '</manufactureDate> \
</SaveProduct> \
</soap:Body> \
</soap:Envelope>';
$.ajax({
url: productServiceUrl,
type: "POST",
dataType: "xml",
data: soapMessage,
complete: endSaveProduct,
contentType: "text/xml; charset=\"utf-8\""
});
return false;
}
function endSaveProduct(xmlHttpRequest, status)
{
$(xmlHttpRequest.responseXML)
.find('SaveProductResult')
.each(function()
{
var name = $(this).find('Name').text();
});
}
とjQueryでのSOAP応答を解析しrequries jsut既存のSOAP XMLサービスを処理するために、独自のクラスを作ることができます..私はそのためのプラグインがあると思います。
サーバーサイドコードまたはクライアントコードについて質問しているかどうかはわかりません。既存のサービスやコードを変更する必要はないはずですから、クライアントリクエストについては私が答えました。新しいブリッジAPIなどを作成しますか? – ppumkin
@ppumkin JSONを使用するjQueryから呼び出されるサーバー側ハンドラ。現在使用しているWebサービスはXML SOAPですが、下位互換性のために変更することはできませんので、途中で何かが必要になります。 –
ああ、まあまあ、私の答えはごみです。ごめんなさい。私はあなたがしていることを思っています..許しがたい唯一の方法です(少なくとも私が知っている) – ppumkin