英文:
REMOTE_REPORTING_MISSING_REMOTE_MODULE Itext 7.2.2
问题
我正在尝试从Java中使用itext 7.2许可证,但在加载时抛出了一种类型为:REMOTE_REPORTING_MISSING_REMOTE_MODULE的异常。
我在C中有一个.json文件,并且我使用licensing-base的版本4.1.0,如果有人能告诉我我可能做错了什么,或者是否有什么遗漏的事情要做。在使用临时许可证进行测试之前,一切都正常,但是当我使用付费许可证时,它会引发异常,不允许我继续。
提前感谢您的帮助。
英文:
I am trying to consume an itext 7.2 license from java, however when loading it, it throws an exception of type: REMOTE_REPORTING_MISSING_REMOTE_MODULE
I have a .json file in C and I use licensing-base in version 4.1.0, please if someone could tell me what I might be doing wrong or if I'm missing something to do. Before doing a test with a temporary license and everything ok but when I use the paid license it throws an exception and doesn't let me continue.
In advance thanks for the help.
答案1
得分: 3
你的许可证要求使用iText提供的远程报告模块。您可以使用Maven将其添加到您的项目中,或者下载JAR文件并手动包含它。它可以在这里找到:https://mvnrepository.com/artifact/com.itextpdf.licensing/licensing-remote
有关卷和远程报告许可证的更多信息,请访问以下链接:https://kb.itextpdf.com/home/it7kb/faq/volume-counter-faqs
请确保您正在使用与您的iText版本匹配的正确许可证基础和许可证远程版本。
兼容性矩阵可以在这里找到:https://kb.itextpdf.com/home/it7kb/compatibility-matrix
英文:
It looks like your license requires the usage of the remote reporting module iText provides.
You can add it to your project using Maven, or download the jar and manually include it. It can be found here: https://mvnrepository.com/artifact/com.itextpdf.licensing/licensing-remote
More information on volume and remote reporting licenses can be found here:
https://kb.itextpdf.com/home/it7kb/faq/volume-counter-faqs
Please make sure you're using the correct licensing-base and licensing-remote versions for your version of iText.
A compatibility matrix can be found here:
https://kb.itextpdf.com/home/it7kb/compatibility-matrix
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论