[JBoss JIRA] (JBIDE-15897) Server Adapter Context Menu: make all relevant OpenShift Explorer actions available from Server Adapter
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15897?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-15897:
-------------------------------------
Attachment: explorer-application-context-menu.png
> Server Adapter Context Menu: make all relevant OpenShift Explorer actions available from Server Adapter
> -------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-15897
> URL: https://issues.jboss.org/browse/JBIDE-15897
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.2.0.Final
> Reporter: Max Rydahl Andersen
> Assignee: Max Rydahl Andersen
> Labels: server_adapter
> Fix For: 4.2.0.Beta2
>
> Attachments: explorer-application-context-menu.png, explorer-context-menu.png, explorer-context-menu.png, server-adapter-context-menu.png, server-adapter-context-menu.png
>
> Original Estimate: 1 day
> Time Spent: 3 days
> Remaining Estimate: 0 minutes
>
> JBIDE-11841 was done earlier but only added the missing actions - when new actions are added we tend to forget to add them.
> Explorer:
> !explorer-context-menu.png!
> Server adapter:
> !server-adapter-context-menu.png!
> We should make it so these actions (when relevant) gets added to both places (openshift explorer / server adapter) and optimally also available in an OpenShift context menu on a project.
> Meaning you don't have to navigate to explorer view constantly.
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-15897) Server Adapter Context Menu: make all relevant OpenShift Explorer actions available from Server Adapter
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15897?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-15897:
------------------------------------------
we reordered the explorer context menu:
!explorer-application-context-menu.png!
> Server Adapter Context Menu: make all relevant OpenShift Explorer actions available from Server Adapter
> -------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-15897
> URL: https://issues.jboss.org/browse/JBIDE-15897
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.2.0.Final
> Reporter: Max Rydahl Andersen
> Assignee: Max Rydahl Andersen
> Labels: server_adapter
> Fix For: 4.2.0.Beta2
>
> Attachments: explorer-context-menu.png, explorer-context-menu.png, server-adapter-context-menu.png, server-adapter-context-menu.png
>
> Original Estimate: 1 day
> Time Spent: 3 days
> Remaining Estimate: 0 minutes
>
> JBIDE-11841 was done earlier but only added the missing actions - when new actions are added we tend to forget to add them.
> Explorer:
> !explorer-context-menu.png!
> Server adapter:
> !server-adapter-context-menu.png!
> We should make it so these actions (when relevant) gets added to both places (openshift explorer / server adapter) and optimally also available in an OpenShift context menu on a project.
> Meaning you don't have to navigate to explorer view constantly.
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17184) org.jboss.tools.jsf.ui.test failure on Windows
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17184?page=com.atlassian.jira.plugi... ]
Daniel Azarov edited comment on JBIDE-17184 at 5/8/14 1:32 PM:
---------------------------------------------------------------
I took a look into OpenKeyHelper. It looks like nothing wrong with OpenKeyHelper, but not all bundles could be found in XModel.
Method findBundles() for bundle - demo.Messages locale - null returns 2 XModelObjects on Linux and only 1 on Windows.
I inserted some System.out.print strings in this method:
{code}
public XModelObject[] findBundles(XModel model, String bundle, String locale) {
System.out.println("OpenKeyHelper.findBundles bundle - "+bundle+" locale - "+locale);
ArrayList<XModelObject> l = new ArrayList<XModelObject>();
if(locale == null || locale.length() == 0) locale = getDeafultLocale(model);
String pathPrefix = "/" + bundle.replace('.', '/');
IProject project = EclipseResourceUtil.getProject(model.getRoot());
Set<IFolder> srcs = EclipseResourceUtil.getAllVisibleSourceFolders(project);
Set<XModelObject> srcObjects = new HashSet<XModelObject>();
for (IFolder f: srcs) {
if(f.getProject() != project) {
XModelObject src = EclipseResourceUtil.createObjectForResource(f);
if(src != null) srcObjects.add(src);
}
}
while(locale != null && locale.length() > 0) {
String path = pathPrefix + "_" + locale + ".properties"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
System.out.println("OpenKeyHelper.findBundles path - "+path);
XModelObject o = model.getByPath(path);
if(o != null) l.add(o);
for (XModelObject src: srcObjects) {
o = src.getChildByPath(path.substring(1));
if(o != null) l.add(o);
}
int i = locale.lastIndexOf('_');
if(i < 0) break;
locale = locale.substring(0, i);
}
String path = pathPrefix + ".properties"; //$NON-NLS-1$ //$NON-NLS-2$
System.out.println("OpenKeyHelper.findBundles path - "+path);
XModelObject o = model.getByPath(path);
if(o != null) l.add(o);
for (XModelObject src: srcObjects) {
o = src.getChildByPath(path.substring(1));
if(o != null) {
l.add(o);
}
}
if(!l.isEmpty()) {
if(o == null) o = l.get(0);
int i = bundle.lastIndexOf('.');
String name = (i < 0) ? bundle : bundle.substring(i + 1);
XModelObject[] ps = o.getParent().getChildren();
for (XModelObject c: ps) {
if(!l.contains(c)) {
String pp = c.getPathPart();
System.out.println("OpenKeyHelper.findBundles pp - "+pp);
if(pp.endsWith(".properties") && (pp.startsWith(name + ".") || pp.startsWith(name + "_"))) {
l.add(c);
}
}
}
}
System.out.println("OpenKeyHelper.findBundles bundles found - "+l.size());
return l.toArray(new XModelObject[0]);
}
{code}
and I got on Linux:
{code}
OpenKeyHelper.findBundles bundle - demo.Messages locale - null
OpenKeyHelper.findBundles path - /demo/Messages_en_US.properties
OpenKeyHelper.findBundles path - /demo/Messages_en.properties
OpenKeyHelper.findBundles path - /demo/Messages.properties
OpenKeyHelper.findBundles pp - utils
OpenKeyHelper.findBundles pp - Messages_de.properties
OpenKeyHelper.findBundles pp - User.java
OpenKeyHelper.findBundles bundles found - 2
{code}
and on Windows:
{code}
OpenKeyHelper.findBundles bundle - demo.Messages locale - null
OpenKeyHelper.findBundles path - /demo/Messages_en_US.properties
OpenKeyHelper.findBundles path - /demo/Messages_en.properties
OpenKeyHelper.findBundles path - /demo/Messages.properties
OpenKeyHelper.findBundles pp - utils
OpenKeyHelper.findBundles pp - messages_de.properties
OpenKeyHelper.findBundles pp - user.java
OpenKeyHelper.findBundles bundles found - 1
{code}
was (Author: dazarov):
I took a look into OpenKeyHelper. It looks like nothing wrong with OpenKeyHelper, but not all bundles could be found in XModel.
Method findBundles() for bundle - demo.Messages locale - null returns 2 XModelObjects on Linux and only 1 on Windows.
I inserted some System.out.print strings in this method:
{code}
public XModelObject[] findBundles(XModel model, String bundle, String locale) {
System.out.println("OpenKeyHelper.findBundles bundle - "+bundle+" locale - "+locale);
ArrayList<XModelObject> l = new ArrayList<XModelObject>();
if(locale == null || locale.length() == 0) locale = getDeafultLocale(model);
String pathPrefix = "/" + bundle.replace('.', '/');
IProject project = EclipseResourceUtil.getProject(model.getRoot());
Set<IFolder> srcs = EclipseResourceUtil.getAllVisibleSourceFolders(project);
Set<XModelObject> srcObjects = new HashSet<XModelObject>();
for (IFolder f: srcs) {
if(f.getProject() != project) {
XModelObject src = EclipseResourceUtil.createObjectForResource(f);
if(src != null) srcObjects.add(src);
}
}
while(locale != null && locale.length() > 0) {
String path = pathPrefix + "_" + locale + ".properties"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
System.out.println("OpenKeyHelper.findBundles path - "+path);
XModelObject o = model.getByPath(path);
if(o != null) l.add(o);
for (XModelObject src: srcObjects) {
o = src.getChildByPath(path.substring(1));
if(o != null) l.add(o);
}
int i = locale.lastIndexOf('_');
if(i < 0) break;
locale = locale.substring(0, i);
}
String path = pathPrefix + ".properties"; //$NON-NLS-1$ //$NON-NLS-2$
System.out.println("OpenKeyHelper.findBundles path - "+path);
XModelObject o = model.getByPath(path);
if(o != null) l.add(o);
for (XModelObject src: srcObjects) {
o = src.getChildByPath(path.substring(1));
if(o != null) {
l.add(o);
}
}
if(!l.isEmpty()) {
if(o == null) o = l.get(0);
int i = bundle.lastIndexOf('.');
String name = (i < 0) ? bundle : bundle.substring(i + 1);
XModelObject[] ps = o.getParent().getChildren();
for (XModelObject c: ps) {
if(!l.contains(c)) {
String pp = c.getPathPart();
System.out.println("OpenKeyHelper.findBundles pp - "+pp);
if(pp.endsWith(".properties") && (pp.startsWith(name + ".") || pp.startsWith(name + "_"))) {
l.add(c);
}
}
}
}
System.out.println("OpenKeyHelper.findBundles bundles found - "+l.size());
return l.toArray(new XModelObject[0]);
}
{code}
and I got on Linux:
{code}
OpenKeyHelper.findBundles bundle - demo.Messages locale - null
OpenKeyHelper.findBundles path - /demo/Messages_en_US.properties
OpenKeyHelper.findBundles path - /demo/Messages_en.properties
OpenKeyHelper.findBundles path - /demo/Messages.properties
OpenKeyHelper.findBundles pp - utils
OpenKeyHelper.findBundles pp - Messages_de.properties
OpenKeyHelper.findBundles pp - User.java
OpenKeyHelper.findBundles bundles found - 2
{code}
> org.jboss.tools.jsf.ui.test failure on Windows
> ----------------------------------------------
>
> Key: JBIDE-17184
> URL: https://issues.jboss.org/browse/JBIDE-17184
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf
> Affects Versions: 4.2.0.Beta1
> Reporter: Daniel Azarov
> Assignee: Viacheslav Kabanovich
> Fix For: 4.2.0.Beta2
>
> Attachments: Linux17184.png, org.jboss.tools.jsf.ui.test.JsfUiAllTests.txt, Windows17184.png, Windows17184.png
>
>
> Tests run: 104, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 738.449 sec <<< FAILURE!
> Results :
> Failed tests: testMessagesInLocalizedBundles(org.jboss.tools.jsf.jsp.ca.test.CAJsfMessagesProposalsTest): The proposal to apply not found.
> Tests run: 104, Failures: 1, Errors: 0, Skipped: 0
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17184) org.jboss.tools.jsf.ui.test failure on Windows
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17184?page=com.atlassian.jira.plugi... ]
Daniel Azarov commented on JBIDE-17184:
---------------------------------------
I took a look into OpenKeyHelper. It looks like nothing wrong with OpenKeyHelper, but not all bundles could be found in XModel.
Method findBundles() for bundle - demo.Messages locale - null returns 2 XModelObjects on Linux and only 1 on Windows.
I inserted some System.out.print strings in this method:
{code}
public XModelObject[] findBundles(XModel model, String bundle, String locale) {
System.out.println("OpenKeyHelper.findBundles bundle - "+bundle+" locale - "+locale);
ArrayList<XModelObject> l = new ArrayList<XModelObject>();
if(locale == null || locale.length() == 0) locale = getDeafultLocale(model);
String pathPrefix = "/" + bundle.replace('.', '/');
IProject project = EclipseResourceUtil.getProject(model.getRoot());
Set<IFolder> srcs = EclipseResourceUtil.getAllVisibleSourceFolders(project);
Set<XModelObject> srcObjects = new HashSet<XModelObject>();
for (IFolder f: srcs) {
if(f.getProject() != project) {
XModelObject src = EclipseResourceUtil.createObjectForResource(f);
if(src != null) srcObjects.add(src);
}
}
while(locale != null && locale.length() > 0) {
String path = pathPrefix + "_" + locale + ".properties"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
System.out.println("OpenKeyHelper.findBundles path - "+path);
XModelObject o = model.getByPath(path);
if(o != null) l.add(o);
for (XModelObject src: srcObjects) {
o = src.getChildByPath(path.substring(1));
if(o != null) l.add(o);
}
int i = locale.lastIndexOf('_');
if(i < 0) break;
locale = locale.substring(0, i);
}
String path = pathPrefix + ".properties"; //$NON-NLS-1$ //$NON-NLS-2$
System.out.println("OpenKeyHelper.findBundles path - "+path);
XModelObject o = model.getByPath(path);
if(o != null) l.add(o);
for (XModelObject src: srcObjects) {
o = src.getChildByPath(path.substring(1));
if(o != null) {
l.add(o);
}
}
if(!l.isEmpty()) {
if(o == null) o = l.get(0);
int i = bundle.lastIndexOf('.');
String name = (i < 0) ? bundle : bundle.substring(i + 1);
XModelObject[] ps = o.getParent().getChildren();
for (XModelObject c: ps) {
if(!l.contains(c)) {
String pp = c.getPathPart();
System.out.println("OpenKeyHelper.findBundles pp - "+pp);
if(pp.endsWith(".properties") && (pp.startsWith(name + ".") || pp.startsWith(name + "_"))) {
l.add(c);
}
}
}
}
System.out.println("OpenKeyHelper.findBundles bundles found - "+l.size());
return l.toArray(new XModelObject[0]);
}
{code}
and I got on Linux:
{code}
OpenKeyHelper.findBundles bundle - demo.Messages locale - null
OpenKeyHelper.findBundles path - /demo/Messages_en_US.properties
OpenKeyHelper.findBundles path - /demo/Messages_en.properties
OpenKeyHelper.findBundles path - /demo/Messages.properties
OpenKeyHelper.findBundles pp - utils
OpenKeyHelper.findBundles pp - Messages_de.properties
OpenKeyHelper.findBundles pp - User.java
OpenKeyHelper.findBundles bundles found - 2
{code}
> org.jboss.tools.jsf.ui.test failure on Windows
> ----------------------------------------------
>
> Key: JBIDE-17184
> URL: https://issues.jboss.org/browse/JBIDE-17184
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf
> Affects Versions: 4.2.0.Beta1
> Reporter: Daniel Azarov
> Assignee: Viacheslav Kabanovich
> Fix For: 4.2.0.Beta2
>
> Attachments: Linux17184.png, org.jboss.tools.jsf.ui.test.JsfUiAllTests.txt, Windows17184.png, Windows17184.png
>
>
> Tests run: 104, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 738.449 sec <<< FAILURE!
> Results :
> Failed tests: testMessagesInLocalizedBundles(org.jboss.tools.jsf.jsp.ca.test.CAJsfMessagesProposalsTest): The proposal to apply not found.
> Tests run: 104, Failures: 1, Errors: 0, Skipped: 0
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17184) org.jboss.tools.jsf.ui.test failure on Windows
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17184?page=com.atlassian.jira.plugi... ]
Daniel Azarov reassigned JBIDE-17184:
-------------------------------------
Assignee: Viacheslav Kabanovich (was: Daniel Azarov)
> org.jboss.tools.jsf.ui.test failure on Windows
> ----------------------------------------------
>
> Key: JBIDE-17184
> URL: https://issues.jboss.org/browse/JBIDE-17184
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf
> Affects Versions: 4.2.0.Beta1
> Reporter: Daniel Azarov
> Assignee: Viacheslav Kabanovich
> Fix For: 4.2.0.Beta2
>
> Attachments: Linux17184.png, org.jboss.tools.jsf.ui.test.JsfUiAllTests.txt, Windows17184.png, Windows17184.png
>
>
> Tests run: 104, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 738.449 sec <<< FAILURE!
> Results :
> Failed tests: testMessagesInLocalizedBundles(org.jboss.tools.jsf.jsp.ca.test.CAJsfMessagesProposalsTest): The proposal to apply not found.
> Tests run: 104, Failures: 1, Errors: 0, Skipped: 0
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17234) Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17234?page=com.atlassian.jira.plugi... ]
Konstantin Marmalyukov commented on JBIDE-17234:
------------------------------------------------
[~maxandersen] This problem is not on java8, its on 64bit. It doesn't matter is user on java7 or java8 in this case.
In cases I describe earlier:
1(What we have now). We cannot detect suitable jvm. We have only 64bit jvm which doesn't suits us now. So we ask user to add 32bit vm.
2.We can detect 64bit jvm and use it from start. The problem is that using SWT.Webkit becomes impossible here(no 64bit Safari), only javaFx engine is available.
I want to use point2 to make browsersim working out-of-box, despite on SWT.Webkit unavailability.
> Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
> ---------------------------------------------------------------------
>
> Key: JBIDE-17234
> URL: https://issues.jboss.org/browse/JBIDE-17234
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.2.0.Beta1
> Environment: Windows 8.1 Pro, 64-bit
> Reporter: Nick Boldt
> Assignee: Konstantin Marmalyukov
> Fix For: 4.2.0.Beta2
>
> Attachments: jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png, jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png, win81pro-details.png
>
>
> System details: [^win81pro-details.png]
> I have tried the following:
> a) install jbdevstudio-product-universal-8.0.0.Beta1-v20140408-2350-B93.jar via commandline, using JDK 7 (32- and 64-bit) and JDK 8 (64-bit). Using the 32-bit JDK, I've both used and omitted the -d32 flag.
> JDK versions:
> * jdk1.7.0_55 (32- and 64-bit)
> * jdk1.8.0_05 (64-bit)
> b) In Central, click either `Start from scratch > HTML5 Project`, or `Start from a sample > Mobile Applications > kitchensink-html5-mobile`
> c) In Project Explorer, open `src > main > webapp > index.html`
> d) right-click the file and select `Open With > BrowserSim`
> If JBDS was installed in 32-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png!
> If JBDS was installed in 64-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png!
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17234) Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17234?page=com.atlassian.jira.plugi... ]
Max Rydahl Andersen commented on JBIDE-17234:
---------------------------------------------
[~kmarmaliykov] why don't we just run with what we can detect works ? if he is on java8 - use fx, if not on java8 use webkit for 32 bit and if on 64 bit and not java 8 you show the error explaining his opttions (run 32-bit jdk or use JAva 8)
> Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
> ---------------------------------------------------------------------
>
> Key: JBIDE-17234
> URL: https://issues.jboss.org/browse/JBIDE-17234
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.2.0.Beta1
> Environment: Windows 8.1 Pro, 64-bit
> Reporter: Nick Boldt
> Assignee: Konstantin Marmalyukov
> Fix For: 4.2.0.Beta2
>
> Attachments: jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png, jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png, win81pro-details.png
>
>
> System details: [^win81pro-details.png]
> I have tried the following:
> a) install jbdevstudio-product-universal-8.0.0.Beta1-v20140408-2350-B93.jar via commandline, using JDK 7 (32- and 64-bit) and JDK 8 (64-bit). Using the 32-bit JDK, I've both used and omitted the -d32 flag.
> JDK versions:
> * jdk1.7.0_55 (32- and 64-bit)
> * jdk1.8.0_05 (64-bit)
> b) In Central, click either `Start from scratch > HTML5 Project`, or `Start from a sample > Mobile Applications > kitchensink-html5-mobile`
> c) In Project Explorer, open `src > main > webapp > index.html`
> d) right-click the file and select `Open With > BrowserSim`
> If JBDS was installed in 32-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png!
> If JBDS was installed in 64-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png!
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17234) Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17234?page=com.atlassian.jira.plugi... ]
Konstantin Marmalyukov commented on JBIDE-17234:
------------------------------------------------
[~gercan] could you please merge aerogear PR?
> Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
> ---------------------------------------------------------------------
>
> Key: JBIDE-17234
> URL: https://issues.jboss.org/browse/JBIDE-17234
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.2.0.Beta1
> Environment: Windows 8.1 Pro, 64-bit
> Reporter: Nick Boldt
> Assignee: Konstantin Marmalyukov
> Fix For: 4.2.0.Beta2
>
> Attachments: jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png, jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png, win81pro-details.png
>
>
> System details: [^win81pro-details.png]
> I have tried the following:
> a) install jbdevstudio-product-universal-8.0.0.Beta1-v20140408-2350-B93.jar via commandline, using JDK 7 (32- and 64-bit) and JDK 8 (64-bit). Using the 32-bit JDK, I've both used and omitted the -d32 flag.
> JDK versions:
> * jdk1.7.0_55 (32- and 64-bit)
> * jdk1.8.0_05 (64-bit)
> b) In Central, click either `Start from scratch > HTML5 Project`, or `Start from a sample > Mobile Applications > kitchensink-html5-mobile`
> c) In Project Explorer, open `src > main > webapp > index.html`
> d) right-click the file and select `Open With > BrowserSim`
> If JBDS was installed in 32-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png!
> If JBDS was installed in 64-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png!
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months
[JBoss JIRA] (JBIDE-17234) Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
by Ilya Buziuk (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17234?page=com.atlassian.jira.plugi... ]
Ilya Buziuk commented on JBIDE-17234:
-------------------------------------
merged to master
> Cannot launch BrowserSim on Windows 8.1 (32- or 64-bit) w/ JDK 7 or 8
> ---------------------------------------------------------------------
>
> Key: JBIDE-17234
> URL: https://issues.jboss.org/browse/JBIDE-17234
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.2.0.Beta1
> Environment: Windows 8.1 Pro, 64-bit
> Reporter: Nick Boldt
> Assignee: Konstantin Marmalyukov
> Fix For: 4.2.0.Beta2
>
> Attachments: jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png, jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png, win81pro-details.png
>
>
> System details: [^win81pro-details.png]
> I have tried the following:
> a) install jbdevstudio-product-universal-8.0.0.Beta1-v20140408-2350-B93.jar via commandline, using JDK 7 (32- and 64-bit) and JDK 8 (64-bit). Using the 32-bit JDK, I've both used and omitted the -d32 flag.
> JDK versions:
> * jdk1.7.0_55 (32- and 64-bit)
> * jdk1.8.0_05 (64-bit)
> b) In Central, click either `Start from scratch > HTML5 Project`, or `Start from a sample > Mobile Applications > kitchensink-html5-mobile`
> c) In Project Explorer, open `src > main > webapp > index.html`
> d) right-click the file and select `Open With > BrowserSim`
> If JBDS was installed in 32-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk7_installed_d32.png!
> If JBDS was installed in 64-bit mode, you get this error:
> !jbds8b1-win81-failure-to-launch_with_32-bit-jdk.png!
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
11 years, 11 months