AJAX:サーバーがステータス500(内部サーバーエラー)で応答しました

ビジュアルWebパーツを開発していて、オンデマンドでアイテムを一覧表示しようとしています。これを念頭に置いて、CommentFetchSvc.asmxという名前のWebサービスを作成し、次のコードを追加しました。

public class CommentFetchSvc : System.Web.Services.WebService { public CommentFetchSvc() { //Uncomment the following line if using designed components //InitializeComponent(); } [WebMethod] public string HelloWorld() { return "Hello World"; } public class BlogItem { public string Title { get; set; } public string Body { get; set; } } [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public List<BlogItem> ReadComments(string pagenum) { List<BlogItem> blogList = new List<BlogItem>(); using (SPSite oSpSite = new SPSite("http://mysiteUrl")) { using (SPWeb oSpWeb = oSpSite.OpenWeb()) { SPList oList = oSpWeb.Lists["LageData"]; SPQuery oQuery = new SPQuery(); int pageNum = int.Parse(pagenum); // Number of rows to fetch oQuery.RowLimit = 5; // Start reading from 1 int intIndex = 1; do { SPListItemCollection collListItems = oList.GetItems(oQuery); // Check if this are the records to be returned if (intIndex == pageNum) { // Read items for the specific range foreach (SPListItem oListItem in collListItems) { BlogItem item = new BlogItem(); item.Title = oListItem["Title"].ToString(); item.Body = oListItem["ID"].ToString(); blogList.Add(item); } break; } oQuery.ListItemCollectionPosition = collListItems.ListItemCollectionPosition; intIndex++; } while (oQuery.ListItemCollectionPosition != null); } } return blogList; } } 

作成して_layouts/15/Load5MoreCommentsでWebサービスを送信しました。 WebServiceのURLを入力すると、正常に読み込まれ、メソッドが表示されます: webservice

次に、次のコードを使用してajaxからReadCommentsを呼び出そうとしています。

<asp:HiddenField Value="1" runat="server"></asp:HiddenField> 
<script type="text/javascript"> $(document).ready(LoadData()); function LoadData() { GetCommentItems(); } function GetCommentItems() { var pageTrack = $("input[id$="pageTrack"]").val(); $.ajax({ url: "/_layouts/15/Load5MoreComments/CommentFetchSvc.asmx/ReadComments", type: "POST", data: "{"pagenum":"" + pageTrack + ""}", contentType: "application/json;", dataType: "json", success: function (msg) { AppendItems(msg); var newPageTrack = $("input[id$="pageTrack"]").val(); $("input[id$="pageTrack"]").val(parseInt(newPageTrack) + 1); }, error: function (xhr, msg) { console.log(msg + "\n" + xhr.responseText); } }); function AppendItems(data) { $.each(data.d, function (i, item) { var title = item.Title; var body = item.Body; html = "<li><b>" + title + "</b></li>"; html += body; html += "<hr/>"; $("#resultarea").append($(html)); }); } } </script> <p> <asp:HyperLink NavigateUrl="javascript:void(0);" onClick="GetCommentItems();" runat="server">View next five comments..</asp:HyperLink> </p> 

しかし、次のエラーが発生しますFailed to load resource: the server responded with a status of 500 (Internal Server Error)

ReadCommentsをクリックするとブラウザからのWebサービスのリンクは完全に機能し、pagenumパラメータを入力するとデータが表示されます。ただし、AJAXはメソッドを呼び出しません。 webservice

ここに画像の説明を入力

助けてください。

回答

これはSOAPサービスなので、JSONではなくXMLを送信してみてください。次のようなものです:

$.ajax({ url: "/_layouts/15/Load5MoreComments/CommentFetchSvc.asmx", type: "POST", dataType: "xml", beforeSend: function(xhr) { xhr.setRequestHeader("SOAPAction", "http://tempuri.org/ReadComments"); }, data: "<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><ReadComments xmlns="http://tempuri.org"><pagenum>"+pageTrack+"</pagenum></ReadComments></soap:Body></soap:Envelope>", contentType: "text/xml; charset=utf-8", success: function (msg) { console.log(msg) }, error: function (xhr, msg) { console.log(msg + "\n" + xhr.responseText); } }); 

コメント

  • 回答ありがとうございますが、次のエラーが発生します。 error Request format is invalid: text/xml; charset=UTF-8.次の行に変更してXML [ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
  • 'エンドポイントのURLを変更し、 `dataType`を追加して、回答を更新しました。それらを試してみてください。それでも'が機能しない場合は、'わかりません。これが標準のSharepointSOAPサービスの処理方法だからです。
  • 新しいエラーが発生します:Unable to handle request without a valid action parameter. Please supply a valid soap action.
  • スクリーンキャプチャを読み間違えました。また、リクエストにヘッダーSOAPActionを追加する必要があります。私の編集した答えを参照してください。 /_layouts/15/Load5MoreComments/CommentFetchSvc.asmx/ReadComments
  • にアクセスすると、これらすべてのことが説明されます。

  • コメントありがとうございますが、新しいエラーが発生します:Server was unable to process request. ---&gt; Value cannot be null. Parameter name: String

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です