You are on page 1of 9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN

GettingStarted Newsletters

Hi,Guest

LogOn

JoinUs

Store

SearchtheCommunity

Products

Services&Support

AboutSCN

Downloads

Industries

Training&Education

Partnership

DeveloperCenter

Activity

LinesofBusiness

UniversityAlliances

Events&Webinars

Innovation

Browse

Communications

Actions

25Replies Latestreply:Aug23,201512:21PMbyPRABHATSINGH

Share

Tweet

Like

KavithaG

Jan2,20125:19PM

JVMVendornotsupportederrorinNWDS.
ThisquestionhasbeenAnswered.
IinstalledtheNWDS7.3forcustomizingmyportal7.3logonpage.Iamfollowinganinterestingblog
forthesame: GettingstartedwithNetweaver7.3portalPart2NWDSandLogonPage

HoweverIamyettocompletethistasksuccessfullyduetoaJVMvendornotsupportederror.Ihavea
JAVA_HOMEentrytothejavaw.exepath.Also,ihavevmentryofthesamepathintheNWDS
shortcutpropertiestargetvalue.C:ProgramFiles(x86)Javajdk1.7.0_02in

Ichoseprogramfiles(x86)forthisinstallationbcosduringmypreviousjavaerrorireadinmylogthat
JVM64bitcouldnotberun.

InitiallyiusetogetJVMerrorduringstartupitselfbcosofwhichiwasnotabletogettothehomepage
ofdeveloperstudio.Isolvedthaterrornowbyinstallingrightversionandmakingnecessaryentries
asmentionedabove.Nowigetapopupstatingthatoraclevendorisnotsupported(itsaysthati
shouldhaveeitheraSunorSAPprovidedjava).Isitreallytheproblem?Ifso,cansome1getmethe
linktodownloadit.

Iamcreatinganewthreadsincetheoldonespostedbyothersonthesametopicdoesnotgiveme
thesolution.

Thanksinadvance

CorrectAnswer
byTomasChrastinaonFeb3,20145:29PM
Hi,

Ialsocometothiswarning.Ididalittleresearch,andfoundsolutionthatworkedformebysolving
sourceofproblem,withoutneedoftryingdifferentJDKversions.

Mycurrentconfiguration:

SAPNWDS:
v7.30EHP1(7.31)SP10PAT0001(8.31.100001.140103092401SP10PAT0001)
file:"nwdsextsoa7.3EHP1SP10PAT0001win32.zip"
Downloadlocation:
https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/doc/auto_latest_distributions.html
JDK:
v7Update51bothx86andx64versions.AsNWDSisx86version,thatplatfotmisenoughtif
youdon'tneednativesupportforx64applications.
Latestversiondownloadlocation:
http://www.oracle.com/technetwork/java/javase/downloads/jdk7downloads1880260.html
Olderversionsdownloadlocation:http://www.oracle.com/technetwork/java/javase/archive
139210.html
I'mnotsuggestingthatyouneedtoinstalllastversion.Itesteditonthisversionandit
workedforme,butIuseNWDSonlyforfewspecifictasks.SoIdid'ttestallfunctionsforJVM
compatibility.Butmysolutionshouldworkforsolvingcauseofvendorspecificproblem.Not
otherJVMproblems.AndinstallingnewerJavamaybesourceofotherproblems,likeisevery
release.Butwithcorrectbackupthereshouldn'tbeaproblem.

https://scn.sap.com/thread/2108827

1/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN

Problem:

ProblemisinoldercodeofinitialJVMcheck,wherearespecifiedallowedvendors.Oracleisnot
includedinconfiguration,sowarningisshown.Moduleislocatedinpluginsfolder:

"<SAPNWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"

Versionnumber(orange)candiffersbasedonNWDSdistribution.Injarfileisconfigurationstored
infile"config.xml".Thereisthispart,thatspecifiesallowedvendors:

<supportedRuntimesshutdownIfNotMatches="false"warnIfNotMatches="true">
<vendorname="SAPAG">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
<vendorname="SunMicrosystemsInc.">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
</supportedRuntimes

Hereyoucanseethatonly"SAPAG"and"SunMicrosystemsInc."fromolderJavareleasesare
included.Andthat'stheproblem,asnewversionsarereleasedbyOracle.Sovendordiffersand
warningishere.

Solution:

Beforewebeginit'sbesttobackupwholeNWDSdirectoryandalso
workspace(s)!

1)LocatefilewithJVMcheckingmodule:
"<SAP
NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
Asmentionedbefore,versionnumbercanbedifferentinyourrelease.

2)Createbackupcopyofcurrentfile.Callitforexample
"com.sap.ide.jvm.check_1.0.0.140103091951.jar.BAK".

3)Copyoriginalfiletotemporarylocation.Iused
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951.jar"

4)ExtractfilesfromJAR.JARfilesarebasicallyZIPfiles.Iused7zipprogramtoextract
sourcetofolderbasedonfilename:
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\".

5)Locateandeditconfigurationfile
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\config.xml".Add
vendornode"OracleCorporation"(partingreencolor).Justcopyexistingnodeand
replacevendorname.

<supportedRuntimesshutdownIfNotMatches="false"warnIfNotMatches="true">
<vendorname="SAPAG">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
<vendorname="SunMicrosystemsInc.">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
<vendorname="OracleCorporation">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
</supportedRuntimes>

6)Packdirectory.Packwholecontentofdirectoryfromstep5)backtoZIPformat.
Changeextensionto.JARinyourfavoritecompressionprogram,orrenamenewfilefrom
".zip"to".jar"aftercompressionisdone.Nowwehaveournewcorrectedfilefor
checkingJVMversioninNWDS
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar

7)Replaceoriginalfile.Copyfileoveroriginalone:
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar
>
"<SAPNWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar".
Overwriteifasked.

8)Done.

https://scn.sap.com/thread/2108827

2/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN

HelpfulAnswersbyRahulGirmaji,SagarPande,TomasChrastina

8647Views

AverageUserRating
(0ratings)

RahulGirmaji Jan2,20126:33PM (inresponsetoKavithaG)

HelpfulAnswer Re:JVMVendornotsupportederrorinNWDS.
Hikavitha,
TrytoinstallJDKversion1.6.0_7andcheckbelowarticlelinkforNWCE7.3installationguide
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80a100d2109f2e10e996
c2b80803740b?QuickLink=index&overridelayout=true

Hopeithelps......

Thanks,
Rahul.

Editedby:rahul.girmajionJan2,20126:30PM

Like(0)

KavithaG Jan3,201210:43AM (inresponsetoRahulGirmaji)

Re:JVMVendornotsupportederrorinNWDS.
Thisversiongivesmethebelowerrorsinsidenwds:
Unabletoexecuteearlystartupcodeforanextension
Problemsoccurredwheninvokingcodefromplugin:"org.eclipse.ui.workbench".
Anerroroccurredwhileautomaticallyactivatingbundlecom.sap.mw.jco3.eclipse(471).

Like(0)

SagarPande Jan3,201212:39PM (inresponsetoKavithaG)

HelpfulAnswer Re:JVMVendornotsupportederrorinNWDS.
ihavejdk1.6.0_26,anditsworkingsmoothly
Tryjdk1.6.0_26....
hopeitwillresolve
trythislinkforinstallingjdk

http://www.oracle.com/technetwork/java/javase/downloads/jdk6u26download400750.html

Editedby:PandeSagaronJan3,20125:09PM

Like(2)

KavithaG Jan20,20124:03PM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.
Isolvedit.Thanks.

Like(0)

ManchariNarayanan May22,20122:59PM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.

https://scn.sap.com/thread/2108827

3/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN
HIKavitha,

Couldyoupleasetellushowdidusolvethis!

wearefacingasimilarissue

Like(0)

KavithaG May22,20123:13PM (inresponsetoManchariNarayanan)

Re:JVMVendornotsupportederrorinNWDS.
IguessIinstalledtherightjdkversionandthenIreinstalledtheNWDSassome
perspectivesweremissing.

Like(0)

ManchariNarayanan May22,20123:19PM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.
IhavetheJavaversionjdk1.6.0_26
AlsoIthinkallnecessaryperspectivesareavailable.Stilligettheerrorlog

"Unabletoexecuteearlystartupcodeforanextension
UnhandledException
Problemsoccurredwheninvokingcodefromplugin:"org.eclipse.ui.workbench".
Anerroroccurredwhileautomaticallyactivatingbundlecom.sap.mw.jco3.eclipse
(478)."

Anyidea?

Like(0)

KavithaG May22,20123:20PM (inresponsetoManchariNarayanan)

Re:JVMVendornotsupportederrorinNWDS.
Thislookslikeeclipseinstallationerror.Whydontyoutrytoreinstallit?

Like(0)

ManchariNarayanan May22,20123:31PM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.
Thanksforthereply!

ForNWDS7.3,itisexefiledirectlyopensfromthefolderstructure(notexactly
theinstallation)
SoItriedchangingtheworkspaceandreopenbutthesameerrorhappens.

Like(0)

KavithaG May22,20124:23PM (inresponsetoManchariNarayanan)

Re:JVMVendornotsupportederrorinNWDS.
Ihopeyoufollowedallthestepsinthisinstallationguide:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80a100d2
109f2e10e996c2b80803740b?QuickLink=index&overridelayout=true

Like(0)

https://scn.sap.com/thread/2108827

4/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN

Dillipkumar Mar21,20137:46AM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.
Thanksalotforthepost.

IwaslookingforthesameissuefromlasttwodaysandtodayIsolvedthis.

Theerrorcomesmainlyduetomissing4nativelibrariesmentionedinstep4.

Insomemachinesitautomaticallycomesbutsometimesitdoesnot.Soinstallingthese4native
librariesisimportant.

Ididsoanditsolvedmyproblem.

Thanks,
Dillip.

Like(0)

AaronMyers Oct2,201310:20PM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.
IhadthiserrortodayandgettingJDK6_26gotaroundtheissue.Thanksforthepost.

Like(0)

TomasChrastina Feb3,20145:29PM (inresponsetoKavithaG)

CorrectAnswer Re:JVMVendornotsupportederrorinNWDS.
Hi,

Ialsocometothiswarning.Ididalittleresearch,andfoundsolutionthatworkedformebysolving
sourceofproblem,withoutneedoftryingdifferentJDKversions.

Mycurrentconfiguration:

SAPNWDS:
v7.30EHP1(7.31)SP10PAT0001(8.31.100001.140103092401SP10PAT0001)
file:"nwdsextsoa7.3EHP1SP10PAT0001win32.zip"
Downloadlocation:
https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/doc/auto_latest_distributions.html
JDK:
v7Update51bothx86andx64versions.AsNWDSisx86version,thatplatfotmisenoughtif
youdon'tneednativesupportforx64applications.
Latestversiondownloadlocation:
http://www.oracle.com/technetwork/java/javase/downloads/jdk7downloads1880260.html
Olderversionsdownloadlocation:http://www.oracle.com/technetwork/java/javase/archive
139210.html
I'mnotsuggestingthatyouneedtoinstalllastversion.Itesteditonthisversionandit
workedforme,butIuseNWDSonlyforfewspecifictasks.SoIdid'ttestallfunctionsforJVM
compatibility.Butmysolutionshouldworkforsolvingcauseofvendorspecificproblem.Not
otherJVMproblems.AndinstallingnewerJavamaybesourceofotherproblems,likeisevery
release.Butwithcorrectbackupthereshouldn'tbeaproblem.

Problem:

ProblemisinoldercodeofinitialJVMcheck,wherearespecifiedallowedvendors.Oracleisnot
includedinconfiguration,sowarningisshown.Moduleislocatedinpluginsfolder:

"<SAPNWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"

Versionnumber(orange)candiffersbasedonNWDSdistribution.Injarfileisconfigurationstoredin
file"config.xml".Thereisthispart,thatspecifiesallowedvendors:

<supportedRuntimesshutdownIfNotMatches="false"warnIfNotMatches="true">
<vendorname="SAPAG">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>

https://scn.sap.com/thread/2108827

5/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN
</vendor>
<vendorname="SunMicrosystemsInc.">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
</supportedRuntimes

Hereyoucanseethatonly"SAPAG"and"SunMicrosystemsInc."fromolderJavareleasesare
included.Andthat'stheproblem,asnewversionsarereleasedbyOracle.Sovendordiffersand
warningishere.

Solution:

Beforewebeginit'sbesttobackupwholeNWDSdirectoryandalso
workspace(s)!

1)LocatefilewithJVMcheckingmodule:
"<SAPNWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
Asmentionedbefore,versionnumbercanbedifferentinyourrelease.

2)Createbackupcopyofcurrentfile.Callitforexample
"com.sap.ide.jvm.check_1.0.0.140103091951.jar.BAK".

3)Copyoriginalfiletotemporarylocation.Iused
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951.jar"

4)ExtractfilesfromJAR.JARfilesarebasicallyZIPfiles.Iused7zipprogramtoextract
sourcetofolderbasedonfilename:
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\".

5)Locateandeditconfigurationfile
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\config.xml".Add
vendornode"OracleCorporation"(partingreencolor).Justcopyexistingnodeandreplace
vendorname.

<supportedRuntimesshutdownIfNotMatches="false"warnIfNotMatches="true">
<vendorname="SAPAG">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
<vendorname="SunMicrosystemsInc.">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
<vendorname="OracleCorporation">
<versionRangejdkRequired="true"minInclusive="1.6.0_07"/>
</vendor>
</supportedRuntimes>

6)Packdirectory.Packwholecontentofdirectoryfromstep5)backtoZIPformat.Change
extensionto.JARinyourfavoritecompressionprogram,orrenamenewfilefrom".zip"to
".jar"aftercompressionisdone.NowwehaveournewcorrectedfileforcheckingJVM
versioninNWDS
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar

7)Replaceoriginalfile.Copyfileoveroriginalone:
"C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar
>
"<SAPNWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar".
Overwriteifasked.

8)Done.

Like(15)

LB Feb26,20146:48PM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThanksTomas,greatpost.ExactlywhatI'mlookingfor.Somanypeoplesaytojustusetheold
JDKbuttherearebigsecurityholesinthoseoldJDKs.

IhaveWinzip,soIjustrenamethe.jarfileto.zip,openitwithwinzip,locatetheconfig.xml,edited
itandupdatedthezipfile(winzipwillpromptwhenexisting),renamethe.jarbackto.zip.

https://scn.sap.com/thread/2108827

6/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN
Cutdownalotofthestepsanditworkedforme.

Like(0)

TomasChrastina Feb26,20148:47PM (inresponsetoLB)

HelpfulAnswer Re:JVMVendornotsupportederrorinNWDS.
Hi,

you'rewelcome.Suresomestepsarenotneededforskilleduser,andit'spossibletouser
anotherwayaround.Ijusttriedtomakeitclearanddetailedenoughevenforless
experiencedusers.

PS:Alsotestedonnewversion:
SAPNWDS:
v7.30EHP1(7.31)SP10PAT0002(8.30.100002.140207121738SP10PAT0002)
file:"nwdsextsoa7.3EHP1SP10PAT0002win32.zip"

Pluginfile:
"<SAP
NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140207094830.jar"

Like(2)

AliASIF Jul30,20149:50AM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThanksTomas,

Luckytofindyouposttoresolvethisissue.:)

Like(0)

KumarasamyVenkatesan Nov19,20148:01AM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
Thomasgreatjobyoudid.Itworksformetoo.Itresolved(byfollowingyoursteps)our
issueaftersomanyinvestigations

Like(0)

DarinBilek Jul30,20156:08AM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThanksTomas!
ThisseemstoworkfinewhenItryit,buthasanybodyhadmuchexperiencewiththis
method,orfoundanyissueswhileusinganunsupportedJDKwithNWDS?Ifso,does
SAPdenysupportduetousinganunsupportedJDK?

Like(0)

PRABHATSINGH Aug23,201512:21PM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThanksatonThomas.Yousavedmanyofushere.

Like(0)

https://scn.sap.com/thread/2108827

7/9

18/4/2016

JVMVendornotsupportederrorinNWDS.|SCN

MukteshMohan Sep30,201412:00PM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThanksTomas.

Greathelp

Like(0)

KialaNtona Nov27,201411:52AM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThankyouverymuchThomas!

Like(0)

E.Theuns Dec9,20146:26PM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
Greatdetailexplanation,thankyouforthat!

Like(0)

malinimg May11,201512:39PM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
ThankTomas!!

Solutionworkedlikeacharm.

Like(0)

NimrodGisis Jul9,20153:44PM (inresponsetoTomasChrastina)

Re:JVMVendornotsupportederrorinNWDS.
Notsurewheredoyouknowthisbutitworked!
likemagic.

10x!

Like(0)

RecepArda Jul10,20141:33PM (inresponsetoKavithaG)

Re:JVMVendornotsupportederrorinNWDS.
ThanksTomas

Afteralongsearchyourposthassolvedmyproblem!

Like(0)

Share

Tweet

https://scn.sap.com/thread/2108827

Like

8/9

18/4/2016

SiteIndex
Privacy

JVMVendornotsupportederrorinNWDS.|SCN

ContactUs
TermsofUse

https://scn.sap.com/thread/2108827

SAPHelpPortal
LegalDisclosure

Copyright

FollowSCN

9/9

You might also like