Appendix A: Options for Large Files and Performance

When dealing with large files, memory limitations can pose a challenge. You can get around this by using the following memory related options of Java as below:

java -Xmx4096m -Xms256m -Dweblogic.MaxMessageSize=200000000 -jar ucxjcitx.jar

When Oracle WebLogic server is used, you can set Dweblogic.MaxMessageSize. Although 200000000 is set for Dweblogic.MaxMessageSize in the example above, you may not be able to use that much memory due to other factors such as hardware capacity.