1

我有一个处理页面,我想通过 Web 服务运行函数进程(将 Web 引用添加到我的 C# 窗口窗体应用程序中)。我的代码如下:

var context = new ModuleABCService.Screen() // limk web services: http://localhost:8686/soap/DMSBL009.asmx
            {
               CookieContainer = new CookieContainer(),
               AllowAutoRedirect = true,
               EnableDecompression = true,
               Timeout = 60000
             };
var loginResult = context.Login(string.Format("{0}@{1}", val.UserName, company), val.Password);
if (loginResult.Code != ErrorCode.OK)
{
   throw new Exception(string.Format("Can not login {0}", company));
}
Content content = context.GetSchema();
context.Clear();
context.Submit(
              new Command[] 
                          { 
                               content.Actions.ProcessAll
                          }
          );    

我收到一条异常消息: System.Web.Services.Protocols.SoapExceptio:n 服务器无法处理请求。---> PX.Data.PXUndefinedCompanyException:无法为请求确定正确的公司 ID。在 c:\Builders\4_10-2014_4_28-21_21_17-Full\Scripts\BuildTemp\NetTools\PX.Data\Database\Common\DbProviderBaseCompanies.cs:line 471 中的 PX.Data.PXDatabaseProviderBase.getCompanyID(String tableName, companySetting& setting)。 ..

你以前有过这个错误吗?你能给我什么建议吗?太感谢了!

4

1 回答 1

0

好的,我发现了,因为 Acumatica 的许可证

于 2014-11-18T09:31:05.580 回答