Robert Timothy
Robert Timothy

Reputation: 86

Progress Developer Studio for OpenEdge 11.6 (32-bit) Crash when enter .NET events

I'm using .NET GUI for the project, sometimes the program (Progress Developer Studio 11.6 32-bit) went not responding when I make an event by GUI properties especially on new event.

Other info :

OS : Windows 10 (64-bit)

java version "1.8.0_73" Java(TM) SE Runtime Environment (build 1.8.0_73-b02)


eclipse.ini

-startup plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar

--launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20130807-1835

-showsplash com.progress.tools.branding

--launcher.XXMaxPermSize 256m

--launcher.defaultAction openFile

-name

Progress Developer Studio

-vm

C:/OpenEdge11.6/jre/bin/javaw.exe

-vmargs

-Xms768m

-Xmx768m

-Dhttps.protocols=TLSv1.2


Error Message Screenshot

How to prevent the crashes? Does it affected by eclipse.ini Xms Xmx value?

Thank you.

Upvotes: 0

Views: 1546

Answers (2)

Robert Timothy
Robert Timothy

Reputation: 86

Alternative startup parameters can be found in Progress Developer Studio shortcut (.lnk) properties. Just copy-paste your current shortcut and replace the startup with the new one.

In my case :

Previous startup (target) :

C:\OpenEdge11.6\oeide\eclipse\eclipse.exe -clean -vm "C:\OpenEdge11.6\jre\bin\javaw.exe"


New startup (target) :

C:\OpenEdge11.6\oeide\eclipse\eclipse.exe -clean -vm "C:\OpenEdge11.6\jre\bin\client\jvm.dll"

Upvotes: 0

Mike Fechner
Mike Fechner

Reputation: 7182

Try to use the Eclipse and Java version that ships with OpenEdge. You can try the following alternative startup parameters:

C:\Progress\OpenEdge116\oeide\eclipse\eclipse.exe -vm "C:/Progress/OpenEdge116/jre/bin/client/jvm.dll"

where c:\Progress\OpenEdge116 is the installation folder of OpenEdge 11.6.

Upvotes: 0

Related Questions