简体   繁体   English

CICS中不支持JVM的版本

[英]JVM unsupported version in CICS

I am getting The JVM specified is unsupported error while updating JVM path in IBM CICS. 我在更新IBM CICS中的JVM路径时收到指定的JVM不支持的错误。

Iam trying to update current CICS jvm path into c:\\Program Files\\IBM\\SDP\\runtimes\\base_v7\\java\\jre\\bin"\\java.exe path. Iam尝试将当前CICS jvm路径更新为c:\\ Program Files \\ IBM \\ SDP \\ runtimes \\ base_v7 \\ java \\ jre \\ bin“ \\ java.exe路径。

command I used: 我使用的命令:

ctgjava -s=c:\\Program Files\\IBM\\SDP\\runtimes\\base_v7\\java\\jre\\bin"\\java.exe ctgjava -s = c:\\ Program Files \\ IBM \\ SDP \\ runtimes \\ base_v7 \\ java \\ jre \\ bin“ \\ java.exe

error: 错误:

JVM specified is unsupported 指定的JVM不支持

Any solution for this error? 这个错误有解决方案吗?

First -- you'll want to make sure that you've got the syntax correct in the ctgjava command: 首先-您需要确保ctgjava命令中的语法正确:

ctgjava -s="c:\Program Files\IBM\SDP\runtimes\base_v7\java\jre\bin\java.exe"

You require the quotes around the path name because one of your directories has a space in it. 您需要在路径名两边加上引号,因为其中一个目录中有一个空格。

Secondly, check to make sure that the Java level you want to use (Java 7) is supported by the release of the CICS Transaction Gateway that you are running. 其次,检查以确保您要使用的Java级别(Java 7)受正在运行的CICS事务网关的发行版的支持。 For example, CICS TG v8.0 and v8.1 will only run with Java 6. 例如,CICS TG v8.0和v8.1仅在Java 6上运行。

A great resource that I use for checking supported software levels with the CICS TG (on all platforms) is this TechDoc from IBM. 我使用的检查与CICS TG(所有平台)支持的软件水平的一个很好的资源是这个来自IBM TechDoc。

There is a weird quote in the middle of your path and another one is missing. 您的路径中间有一个奇怪的引号,而另一个则不见了。 Make sure the full path including java.exe is inside the qotes on Windows. 确保包括java.exe的完整路径在Windows的qote中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 PHP致命错误:For循环中不支持的操作数类型 - PHP Fatal error: Unsupported operand types in For Loop TypeError:+不支持的操作数类型:“ NoneType”和“ float” - TypeError: unsupported operand type(s) for +: 'NoneType' and 'float' 不支持的操作数类型 + 更多问题(很可能) - Unsupported Operand Type + More Issues (most likely) 不支持的操作数类型if块中的TypeError - Unsupported operand type(s) TypeError in if block +不支持的操作数类型:“函数”和“整数”错误 - Unsupported operand type(s) for +: 'function' and 'int' error 类型错误:+ 不支持的操作数类型:'dict' 和 'dict' - TypeError: unsupported operand type(s) for +: 'dict' and 'dict' - 不支持的操作数类型:“str”和“datetime.datetime” - unsupported operand type(s) for -: 'str' and 'datetime.datetime' 使用整数列表时,-:'str'和'int'不支持的操作数类型 - unsupported operand type(s) for -: 'str' and 'int' when using list of integers 如何在 for 循环中处理 /: 'str' 和 'int' 不支持的操作数类型 - How to handle unsupported operand type(s) for /: 'str' and 'int' in for loops 修复 TypeError:不支持的格式字符串传递给 numpy.ndarray.__format__ - Fixing TypeError: unsupported format string passed to numpy.ndarray.__format__
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM