gpt4 book ai didi

axapta - 在 Dynamics AX X++ 中解压缩 GZip 流

转载 作者:行者123 更新时间:2023-12-04 01:49:58 27 4
gpt4 key购买 nike

我试图在 X++ 中压缩 .NET GZIPStream,但我遇到了一个错误。创建字符串的 .NET 代码非常简单:

    private string CompressString()
{
string stringToCompress = "Some data here";
string result = string.Empty;

using (MemoryStream output = new MemoryStream())
using (GZipStream gzip = new GZipStream(output, CompressionMode.Compress, true))
using (StreamWriter writer = new StreamWriter(gzip))
{
writer.Write(stringToCompress);
writer.Close();
result = Convert.ToBase64String(output.ToArray());
}

return result;
}

AX 端将通过一些网络服务调用获取压缩后的字符串。我目前拥有的 X++ 代码如下,但在创建 StreamWriter 时出现错误“无法创建对象‘CLRObject’”。

static void Job2(Args _args)
{
System.String decodedString;
System.Byte[] buffer;
System.IO.Compression.GZipStream gzip;
System.IO.StreamWriter writer;
System.IO.MemoryStream output;
InteropPermission permission;
CLRObject ex;

str compressedString ="Compressed data here";
;

ttsBegin;
permission = new InteropPermission(InteropKind::ClrInterop);
permission.assert();

buffer = System.Convert::FromBase64String(compressedString);
output = new System.IO.MemoryStream(buffer);
gzip = new System.IO.Compression.GZipStream(output, System.IO.Compression.CompressionMode::Decompress);

try {
//Error here: "Object 'CLRObject' could not be created"
writer = new System.IO.StreamWriter(gzip);
writer.Write(decodedString);
writer.Close();

CodeAccessPermission::revertAssert();
}
catch (Exception::CLRError) {
//Code never executes past this point
ex = CLRInterop::getLastException();

while(ex != null) {
error(ex.ToString());
ex = ex.get_InnerException();
}
}

ttsCommit;
info(decodedString);
}

编辑:基于@robert-allen 下面的回答,在 AX 中完成此操作的正确代码是:

static void Job2(Args _args)
{
System.String decodedString;
System.Byte[] buffer;
System.IO.Compression.GZipStream gzip;
System.IO.StreamReader reader; //<-- Reader instead of writer
System.IO.MemoryStream output;
InteropPermission permission;
CLRObject ex;

str compressedString ="Compressed data here";
;

ttsBegin;
permission = new InteropPermission(InteropKind::ClrInterop);
permission.assert();

buffer = System.Convert::FromBase64String(compressedString);
output = new System.IO.MemoryStream(buffer);
gzip = new System.IO.Compression.GZipStream(output, System.IO.Compression.CompressionMode::Decompress);

try {
//Reader code changes
reader = new System.IO.StreamReader(gzip);
decodedString = reader.ReadToEnd();
reader.Close();
//End reader code changes

CodeAccessPermission::revertAssert();
}
catch (Exception::CLRError) {
//Code never executes past this point
ex = CLRInterop::getLastException();

while(ex != null) {
error(ex.ToString());
ex = ex.get_InnerException();
}
}

ttsCommit;
info(decodedString);
}

最佳答案

你能在你的代码周围添加一个 try catch 来查看你得到的确切消息吗,因为 Ax 中有 2 个错误并没有真正告诉你发生了什么:

  • 调用的目标抛出异常
  • 无法创建 CLRObject

第一个是 .NET 在 .NET 类型的构造函数中遇到问题,可能有各种原因,因此异常详细信息应该能够帮助您。

第二个可能更难,因为它可能是无法找到的程序集。但在那种情况下,您可能会获得有关正在查找的文件的信息,并且应该将您带到 Ax 期望它们所在的位置。 (出于这个原因,首先将您的程序集放在 Global Assembly 案例中当然是个好主意。

要从异常中获取更多信息,您可以执行以下操作:

catch (Exception::CLRError)
{
ex = ClrInterop::getLastException();
if (ex != null)
{
ex = ex.get_InnerException();
while (ex != null)
{
error(ex.ToString());
ex = ex.get_InnerException();
}
}
}

关于axapta - 在 Dynamics AX X++ 中解压缩 GZip 流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14407308/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com