how to configure java vertual machine in webmethods tool

i am new to this technology. I have installed webMethods 6 version.

Please tell me the process to configure the java vertual machine(jvm) in webMethods tool.

If you talking about wM Developer then JVM comes bundled with Developer you need not to set the JVM.

but if you are trying to compile Java Service in Developer then you have to set Java path in IS Page. To achieve same you can follow the below steps

Launch the Integration Server Administration page (http://host:port)
Select Settings > Extended from the left hand side menu.
Click the “Show and Hide Keys” link in page.
Check the watt.server.compile checkbox.
Click on Save Changes button.
Now Click “Edit Extended Settings” link
Modify the watt.server.compile command to point to your JDK. Something like:
watt.server.compile=/opt/java/jdk1.4.2/bin/javac -classpath {0} -d {1} {2}
Save Changes

After this you should be able to Compile Java Services in Developer.
Please let me know if you have any question.
Regards,
Mangat Rai

If you’re speaking about the JVM running the IS itself, all JVM parameters are set in the server.sh (or server.bat) files.

If you want to change the JVM used (i.e., to use a newer sub version), search on this forum where this subject has been introduced several times (I replied to one thread but I don’t remember its number).

hi Mangat Rai ,

thank you very much yaar . it is working.