- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们有一个使用 SAP JCO 和 SAP IDOC 库的 DropWizard 制作的 Java 项目,当从 IDE 运行时它不会抛出任何错误,但是当它被打包到一个 jar 中并且我们尝试运行 jar 时,我们接收以下堆栈跟踪:
com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Server default repository destination AGENT is invalid: Destination AGENT could not be created: java.lang.Error: java.security.NoSuchAlgorithmException: AES KeyGenerator not available
at com.sap.conn.jco.rt.DefaultServer.update(DefaultServer.java:240)
at com.sap.conn.jco.rt.DefaultServer.<init>(DefaultServer.java:117)
at com.sap.conn.idoc.jco.rt.DefaultJCoIDocServer.<init>(DefaultJCoIDocServer.java:47)
at com.sap.conn.idoc.jco.rt.DefaultJCoIDocServerFactory.createServer(DefaultJCoIDocServerFactory.java:17)
at com.sap.conn.idoc.jco.rt.DefaultJCoIDocServerFactory.createServer(DefaultJCoIDocServerFactory.java:13)
at com.sap.conn.jco.rt.DefaultServerManager.getServer(DefaultServerManager.java:104)
at com.sap.conn.jco.rt.StandaloneServerFactory.update(StandaloneServerFactory.java:362)
at com.sap.conn.jco.rt.StandaloneServerFactory.getServerInstance(StandaloneServerFactory.java:175)
at com.sap.conn.idoc.jco.JCoIDoc.getServer(JCoIDoc.java:301)
at com.enapsys.dw.bundles.sapidoc.api.SAPIdocServerListener.run(SAPIdocServerListener.java:38)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination AGENT could not be created: java.lang.Error: java.security.NoSuchAlgorithmException: AES KeyGenerator not available
at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:219)
at com.sap.conn.jco.rt.DefaultDestinationManager.searchDestination(DefaultDestinationManager.java:383)
at com.sap.conn.jco.rt.DefaultDestinationManager.getDestinationInstance(DefaultDestinationManager.java:99)
at com.sap.conn.jco.JCoDestinationManager.getDestination(JCoDestinationManager.java:104)
at com.sap.conn.jco.rt.DefaultServer.update(DefaultServer.java:218)
... 12 more
Caused by: java.lang.Error: java.security.NoSuchAlgorithmException: AES KeyGenerator not available
at com.sap.conn.jco.util.Codecs$AES.generateSecretKey(Codecs.java:1020)
at com.sap.conn.rfc.engine.GUID.<clinit>(GUID.java:62)
at com.sap.conn.jco.rt.JCoRuntime.createSecureString(JCoRuntime.java:1344)
at com.sap.conn.jco.rt.DefaultDestinationManager.checkAndCopyProperties(DefaultDestinationManager.java:549)
at com.sap.conn.jco.rt.DefaultDestinationManager.getProperties(DefaultDestinationManager.java:345)
at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:171)
... 16 more
Caused by: java.security.NoSuchAlgorithmException: AES KeyGenerator not available
at javax.crypto.KeyGenerator.<init>(KeyGenerator.java:169)
at javax.crypto.KeyGenerator.getInstance(KeyGenerator.java:223)
at com.sap.conn.jco.util.Codecs$AES.generateSecretKey(Codecs.java:1015)
... 21 more
我们的 .jcoServer 文件如下所示:
jco.server.progid=AGENT
jco.server.name=MYSERVER
jco.server.gwhost=xx.xx.xx.xx
jco.server.gwserv=xxxx
jco.server.connection_count=1
jco.server.repository_destination=AGENT
我们的 .jcoDestination 文件如下所示:
jco.client.type=3
jco.client.client=001
jco.client.user=xxxxxx
jco.client.passwd=xxxxxx
jco.client.lang=en
jco.client.ashost=xxxxxxxx
jco.client.sysnr=00
jco.client.trace=0
jco.destination.repository_destination=AGENT
当我们运行 jar 时,我们这样做:
java -jar -Djava.ext.dirs=lib agent.jar server applicationConfiguration.yml
目标和服务器共享相同的程序 ID,因为我们的 Java 应用程序从 ERP 发送和接收 iDoc,我们使用 IntelliJ 作为 IDE 并从那里运行应用程序不会抛出任何错误并按预期工作。
此问题是否有已知原因?在 IDE 外运行 jar 时,是否需要特定参数才能运行? Destination AGENT could not be created 消息与 NoSuchAlgorithmException 错误有何关联?
最佳答案
设置 java.ext.dirs
破坏了 Java 加密,因为(大多数)提供程序都在扩展 jar 中。
'添加到应用程序' jars 应该在类路径中(但是使用 -jar
它们必须在 list 而不是命令行中设置)和'添加到系统' jar 通常应该放在(复制或符号链接(symbolic link))JVM 的标准位置之一 which vary by platform and install .如果您真的必须在 ext.dirs
中使用自己的目录,则需要添加而不是替换依赖于平台的默认值。
关于java - 运行应用程序 JAR 时出现错误 "Server default repository destination XXXX is invalid",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40558057/
我正在使用底部导航。 在切换画面中,还有一个打开dialog fragment的功能。 为此我还使用了导航。 这是因为,一旦此dialog 完成,data 必须传送到打开该对话框的屏幕。 为此我使用了
我一般是导航图和导航组件的新手,我正在尝试将数据从位于“PrivSectionFragment”中的回收器 View 传递到“PrivSectionDetailFragment”。不幸的是,每当我运行
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我有一个案例需要将图像存储在不同的目录中。所以我将 multer 设置为。 app.use(multer({ dest: path.join(__dirname, '`public/ass
我在我的应用程序中使用了导航组件。我把我的应用程序上传到firebase进行测试。应用程序在大多数设备中正常工作,但在某些设备中应用程序崩溃并显示此图像中的错误。。这是我的导航文件代码。为什么会这样呢
有人在为 appflow 调用 update_flow 时遇到此错误吗? errorMessage": "调用 UpdateFlow 操作时发生错误 (ValidationException):更新流
我为 RSocket 消息写了一个小演示 问题是我无法访问 Rsocket端点, 我从服务器收到以下异常: 客户端: 配置: @Bean RSocket rSocket() { return
当我尝试在 viewpager 中从一个 Fragment 导航到另一个 Fragment 时,我遇到了 Android Navigation Architecture 组件的问题,我收到此错误: j
我正在尝试使用 travis-ci.org 实现持续集成。 这是我当前的 .travis.yml 配置: language: swift osx_image: xcode8.3.3 xcode_pro
当发生配置更改并因此重新创建我的 Activity 和 Fragment 时,我的导航 Graph 范围内的 ViewModel 不可用,而 Fragments 已经被再次创建。 似乎在 navGra
所以我使用的是Django 4.2,它通过Django-JET-REBOOT Fork与Django-JET管理包一起使用;它通过良好的功能和用户体验增强了管理。。每次我将我的应用程序部署到生产环境中
我正在完成我的 CISCO C 类(class),我对以下函数有疑问。 谁能给我解释一下这个函数的逻辑,尤其是这里 --destination 的用法? char *mystrcat(char *de
题目地址:https://leetcode-cn.com/problems/destination-city/ 题目描述 给你一份旅游线路图,该线路图中的旅行线路用数组 paths 表示,其中 p
尝试在服务器上运行应用程序时,我的集成机器人提示... xcodebuild: error: No destinations were specified with the -destination
我正在使用下面的 Java 代码进行 SAP 连接,但我不知道要在 getDestination() 方法中放入什么内容。请指导我如何找到目的地的值(value)或投入什么? createDesti
当绘制路径然后使用 globalCompositeOperation = "destination-out" 绘制完全相同的路径时,如下所示: function drawPath(ctx){ ct
我正在尝试创建径向进度 View 。 Canvas 中的第二条弧应该只清除 Canvas 的一小部分,但它却将其全部清除。 我用过: this.ctx.globalCompositeOperation
我正在从 jboss 5 迁移到 wildfly 12。我陷入了一个异常(exception)我正在java 8中使用wildfly 12和jndi进行ejb(3.1)调用我已经在 Wildfly 控
我想向当前导航图注入(inject)一个新的目的地。 我注意到 NavGraph 有一个方法 void addDestination(@NonNull NavDestination node) 但我找
我有一系列数据在书中的每个工作表中处于相同位置,并且将始终处于该位置。运行宏时,应将数据复制并添加到报告表中。我有那部分工作,但我需要使用特殊粘贴: .PasteSpecial xlPasteValu
我是一名优秀的程序员,十分优秀!