我有一个定制项目,其中使用合作伙伴网站的网站服务来创建一个案例。它工作得很好,但在我将我的Acumatica从5.10.0537升级到5.20.0531之后,它停止了工作。最终,甚至合作伙伴的网站也会升级到相同的版本。它只是在一段时间后超时。
以下是自定义代码
// Use webservice to create a case
CaseAPI.Screen context = new CaseAPI.Screen();
context.CookieContainer = new System.Net.CookieContainer();
context.Url = "https://partner.acumatica.com/Soap/SP203000.asmx";
CaseAPI.LoginResult result = context.Login("usernam", "password***");
CaseAPI.Content schema = context.GetSchema();
schema.Attributes.Attribute.Commit = true;
var commands = new CaseAPI.Command[] {
new CaseAPI.Value { Value = "contract01", LinkedCommand = schema.Case.Contract},
new CaseAPI.Value { Value = "Medium", LinkedCommand = schema.Case.Priority},
new CaseAPI.Value { Value = "this is test sub", LinkedCommand = schema.Case.Subject },
new CaseAPI.Value { Value = "this is test descrip", LinkedCommand = schema.Details.Description },
new CaseAPI.Value { Value = "Product", LinkedCommand = schema.Attributes.Attribute},
new CaseAPI.Value { Value = "Acumatica ERP", LinkedCommand = schema.Attributes.Value, Commit = true},
new CaseAPI.Value { Value = "Product Version", LinkedCommand = schema.Attributes.Attribute},
new CaseAPI.Value { Value = "5.0", LinkedCommand = schema.Attributes.Value, Commit = true },
new CaseAPI.Value { Value = "Version and Build Number", LinkedCommand = schema.Attributes.Attribute},
new CaseAPI.Value { Value = "8768", LinkedCommand = schema.Attributes.Value, Commit = true },
new CaseAPI.Value { Value = "Acumatica Instance URL", LinkedCommand = schema.Attributes.Attribute},
new CaseAPI.Value { Value = "http://www.kdss.com", LinkedCommand = schema.Attributes.Value, Commit = true },
new CaseAPI.Value { Value = "Customer Site User Name (Support)", LinkedCommand = schema.Attributes.Attribute},
new CaseAPI.Value { Value = "myname", LinkedCommand = schema.Attributes.Value, Commit = true },
new CaseAPI.Value { Value = "Customer Site Password (Support)", LinkedCommand = schema.Attributes.Attribute},
new CaseAPI.Value { Value = "mypwd", LinkedCommand = schema.Attributes.Value, Commit = true },
schema.Actions.Submit,
};
context.Submit(commands.ToArray());
光标停留在上述代码的最后一行。它继续滚动,再也不会回来了。最后它会超时。有什么建议吗?
发布于 2015-08-06 09:10:41
情侣建议
https://stackoverflow.com/questions/31818365
复制