1
有沒有人遇到過JIRA的createIssue方法的響應問題? 問題是,該方法將返回空ATTACHMENTNAME節點:JIRA SOAP createIssue from C#
<attachmentNames soapenc:arrayType="soapenc:string[0]" xsi:type="soapenc:Array"/>
這實際上確定,但隨後的反序列化到RemorteIssue對象失敗:
錯誤調用JiraService,方法createIssue。 XML文檔(1,802)中存在錯誤。指定的類型未被識別:name ='string',namespace ='http://schemas.xmlsoap.org/soap/encoding/',at。在RemoteIssue的
部分看起來是這樣的:
[System.Xml.Serialization.SoapTypeAttribute("RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com")]
public class RemoteIssue : AbstractRemoteEntity
{
/// <remarks/>
public RemoteVersion[] affectsVersions;
/// <remarks/>
public string assignee;
/// <remarks/>
public string[] attachmentNames;
/// <remarks/>
public RemoteComponent[] components;
的RemoteIssue但是被創建,唯一的問題是,我不能讓RemoteIssue返回其中包含的關鍵,新創建的問題
你有沒有嘗試過使用「添加服務參考」?它比ASMX客戶更有可能工作。 – 2010-02-03 00:39:57
如果我理解你正確,我做了「添加Web引用」。在使用生成的代碼之後,解析對RemoteIssue對象的響應將失敗,並返回InvalidOperationException。以下是堆棧跟蹤的一部分: System.InvalidOperationException:無法識別指定的類型:name ='string',namespace ='http://schemas.xmlsoap.org/soap/encoding/',位於 ", false)
});
最新問題
-
1. 選擇所有沒有h標籤的鏈接
-
2. 配置文件給我值隨意類
-
3. nginx用URL重寫部分url? mark
-
4. Python Web Scrape Cycle選項卡
-
5. 安全的字符串輸出陣營生態系統
-
6. 再次按下Drawtoggle後關閉抽屜
-
7. 在上傳laravel之前的圖像裁剪
-
8. 嘗試在Roku通道中斷開連接會引發錯誤
-
9. 如何發佈到外部IP?
-
10. 生產基於優先級列表
-
1. Jira RPC/SOAP GetCustomFields()
-
2. jira SOAP和XMLRPC
-
3. 與JIRA SOAP API
-
4. JIRA SOAP API文檔?
-
5. JIRA SOAP Filter創建
-
6. jira soap api:attach screenshot applet
-
7. 登錄到JIRA SOAP API
-
8. 通過PHP的JIRA SOAP
-
9. Ruby - Savon - JIRA SOAP - 在創建新問題時設置組件
-
10. 通過SOAP API和PHP創建JIRA問題
相關問題