Dynamics AX 2012 DLL 配置文件未更新

Posted

技术标签:

【中文标题】Dynamics AX 2012 DLL 配置文件未更新【英文标题】:Dynamics AX 2012 DLL config file not updating 【发布时间】:2013-10-17 06:49:31 【问题描述】:

我们在 AX 环境中添加了一个 C# 项目。我们最近对 app.config 文件进行了修改,清理并重建了项目,并将其部署到 AOT。如果我进入 SqlServer Management Studio 并查询 VSASSEMBLIES 表,我可以看到对应的 .dll 和 .dll.config 文件。我转储了 .dll.config 的内容并将其转换回文本,以确保表中的版本是最新的。

问题在于,当 AOS 重新启动时,.dll.config 文件永远不会被写入磁盘 (C:\Program Files\Microsoft Dynamics AX\60\Server[Instance]\bin\VSAssemblies)。 .dll 被写出,但不是配置。如果我清除整个目录并重新启动 AOS,除了我们的配置文件之外的所有内容都会被写回。

EInvoiceCFDI_MX.dll 的配置文件被写了出来,所以我搜索了他们的项目文件和配置,但找不到他们设置的任何我们没有设置的东西。

我在 AOT 中看到的唯一内容是 EInvoiceCFDI_MX 项目在项目输出下显示了 .dll.config 文件,而我们的项目没有。我检查了默认构建脚本引用的中间目标,它清楚地表明 app.config 应该被复制到项目输出中,但由于某种原因它不是。

我错过了什么?


简,谢谢你的帖子。

我们正在按照您引用的方式构建/配置服务:

CLRObject clientType = CLRInterop::getType("OurService");
OurService client = AifUtil::createServiceClient(clientType); 

createServiceClient() 抛出异常:

System.Reflection.TargetInvocationException: Exception has been thrown by the 
target of an invocation. ---> System.InvalidOperationException: Unable to find 
the application configuaration file C:\Users\<user>\AppData\Local\Microsoft\
Dynamics Ax\VSAssemblies\OurService.dll.config.

OurService.dll.config 文件在 AOT 中,但在服务器或客户端启动时它没有被写入磁盘。

【问题讨论】:

【参考方案1】:

配置文件中包含哪些更改?

如果您要修改的是地址,您还可以消除对配置文件的需求,并根据您存储在 Ax 环境中的参数自行配置绑定。

例如,当您创建了一个外部服务并希望从 Ax 调用它时,但 DEV / TST / PRODUCTION 有不同的 URL。您可以在创建客户端时指定,而不是在配置文件中添加地址和绑定信息。

下面是一段手动更改 EndPoint 并输入我们想要的值的代码。 (您可以将这些值放在参数中,以便您可以根据环境进行设置。

static void Consume_GetZipCodePlaceNameWithEndPoint(Args _args)

    DynamicsAxServices.WebServices.ZipCode.USAZipCodeServiceRef.PostalCodeServiceClient postalServiceClient;
    DynamicsAxServices.WebServices.ZipCode.USAZipCodeServiceRef.PostalCodepostalCode;
    System.ServiceModel.Description.ServiceEndpoint endPoint;
    System.ServiceModel.EndpointAddress endPointAddress;
    System.Exception exception;
    System.Type type;
    ;

    try
    
        // Get the .NET type of the client proxy
        type = CLRInterop::getType('DynamicsAxServices.WebServices.ZipCode.USAZipCodeServiceRef.PostalCodeServiceClient');

        // Let AifUtil create the proxy client because it uses the VSAssemblies path for the config file
        postalServiceClient = AifUtil::createServiceClient(type);

        // Create and endpoint address, This should be a parameter stored   in the system
        endPointAddress = new System.ServiceModel.EndpointAddress("http://www.restfulwebservices.net/wcf/USAZipCodeService.svc");

        // Get the WCF endpoint
        endPoint = postalServiceClient.get_Endpoint();

        // Set the endpoint address.
        endPoint.set_Address(endPointAddress);

        // Use the zipcode to find a place name
        postalCode = postalServiceClient.GetPostCodeDetailByPostCode("10001"); // 10001 is New York

        // Use the getAnyTypeForObject to marshal the System.String to an Ax anyType
        // so that it can be used with info()
        info(strFmt('%1', CLRInterop::getAnyTypeForObject(postalCode.get_PlaceName())));
    
    catch(Exception::CLRError)
    
        // Get the .NET Type Exception
        exception = CLRInterop::getLastException();

        // Go through the inner exceptions
        while(exception)
        
            // Print the exception to the infolog
            info(CLRInterop::getAnyTypeForObject(exception.ToString()));

            // Get the inner exception for more details
            exception = exception.get_InnerException();
        
    

【讨论】:

【参考方案2】:

在您的 Visual Studio 项目中,转到 app.config 文件的属性并设置以下属性:

构建:内容 复制到外文件夹:如果较新则复制

(不确定属性的翻译是否正确,因为我有德语版...)

【讨论】:

【参考方案3】:

您是否更改了全局 app.config?不要!

改为使用 AifUtil::CreateServiceClient as explained here 使项目配置文件可用。

更改配置文件?这会起作用,但是类库的 配置文件存储在模型存储中并由 客户端服务器。除非在 AOT 中更改,否则无法更改 重建 Visual Studio 项目,此时客户端/服务器 将从模型商店下载新版本。所以,你可以 将所有 app.config 设置复制/粘贴到 AX32(serv).exe.config 文件并在那里更改。然后你就不需要使用 aifUtil::createserviceclient。无论如何,这是非常不切实际的, 特别是对于在客户端运行的服务!

来自Technet article: 以下示例代码展示了如何为 Bing 服务构建和配置服务客户端对象。要使用 Web 服务,您必须在 Microsoft Dynamics AX 程序中使用此代码,以启用服务引用来构造和配置服务客户端的实例。

// Retrieve the X++ type for the Bing service client object. 
ClrObject clientType = CLRInterop::getType("BingSearch.ServiceReferences.BingV2ServiceReference.BingPortTypeClient");

// Use the AifUtil class to create an instance of the service client object.     
BingSearch.ServiceReferences.BingV2ServiceReference.BingPortTypeClient client = AifUtil::CreateServiceClient(clientType);

【讨论】:

也许你的问题是权限。也许createServiceClient 尝试创建文件但失败了。 AOS 服务帐号应该有权限吗?

以上是关于Dynamics AX 2012 DLL 配置文件未更新的主要内容,如果未能解决你的问题,请参考以下文章

Dynamics AX 2012 – Batch Jobs Not Executing

Dynamics AX 2012 – Downloading a file from FTP

AX 2012 现有量表加字段

dynamics ax 2012:将 RowState 从 Edit 更改为 Selected

Dynamics AX 2012 R2 窗体系列 - 在窗体上修改字段时所触发的方法及其顺序

在我的 wcf 服务中验证 AX 服务器域、用户名和密码等凭据后,下载 Microsoft Dynamics AX 2012 服务 wsdl 元数据