我的网络服务在 8080 端口上运行。这是在 C++ 中使用 gSoap 开发的。我还在我的 C++ 代码中实现了 post/get 方法。现在我想使用带有 POST 的 AJAX 提交表单。并且还将一些数据发送到网络服务。我已经为提交表单编写了以下代码。
$.ajax({
type: "POST",
url: "http://localhost:8080/myWebservice",
cache: false,
data: MyData,
success: function () {
alert("send Successful......");
}
});