[JBoss JIRA] (JBIDE-10519) Inform user about wrong openshift URL he provided
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-10519?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-10519:
-------------------------------------
Fix Version/s: 4.1.0.CR1
(was: 4.2.x)
> Inform user about wrong openshift URL he provided
> -------------------------------------------------
>
> Key: JBIDE-10519
> URL: https://issues.jboss.org/browse/JBIDE-10519
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 3.3.0.M5
> Reporter: Lucia Jelinkova
> Assignee: Andre Dietisheim
> Priority: Minor
> Fix For: 4.1.0.CR1
>
> Attachments: could-not-connect.png
>
>
> A user has currently an option to provide his own openshift URL. However, if this URL is not correct, the wizard complains about wrong credentials. It would be helpful if the wizard can check if the URL is correct and if not, show a meaningful message to the user.
> # ASSERT: make sure you have an invalid URL in the libra_server key (either in the system properties, or in /etc/openshift/express.conf or in ~/.openshift/express.conf)
> # EXEC: launch the OpenShift Application wizard
> # EXEC: on the first page, provide username and password
> # EXEC: hit "Validate" or "Next"
> Result:
> The wizard informs you that your credentials are invalid
> Expected:
> You should get informed that the url of the OpenShift server is not valid
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months
[JBoss JIRA] (JBIDE-10519) Inform user about wrong openshift URL he provided
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-10519?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-10519:
-------------------------------------
Fix Version/s: 4.2.x
(was: 4.1.0.CR1)
> Inform user about wrong openshift URL he provided
> -------------------------------------------------
>
> Key: JBIDE-10519
> URL: https://issues.jboss.org/browse/JBIDE-10519
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 3.3.0.M5
> Reporter: Lucia Jelinkova
> Assignee: Andre Dietisheim
> Priority: Minor
> Fix For: 4.2.x
>
> Attachments: could-not-connect.png
>
>
> A user has currently an option to provide his own openshift URL. However, if this URL is not correct, the wizard complains about wrong credentials. It would be helpful if the wizard can check if the URL is correct and if not, show a meaningful message to the user.
> # ASSERT: make sure you have an invalid URL in the libra_server key (either in the system properties, or in /etc/openshift/express.conf or in ~/.openshift/express.conf)
> # EXEC: launch the OpenShift Application wizard
> # EXEC: on the first page, provide username and password
> # EXEC: hit "Validate" or "Next"
> Result:
> The wizard informs you that your credentials are invalid
> Expected:
> You should get informed that the url of the OpenShift server is not valid
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months
[JBoss JIRA] (JBIDE-13312) Unnecessary code generated in web.xml
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13312?page=com.atlassian.jira.plugi... ]
Xavier Coulon updated JBIDE-13312:
----------------------------------
Fix Version/s: 4.2.0.Alpha1
(was: 4.1.x)
> Unnecessary code generated in web.xml
> -------------------------------------
>
> Key: JBIDE-13312
> URL: https://issues.jboss.org/browse/JBIDE-13312
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Webservices
> Affects Versions: 4.0.0.Final
> Reporter: Pete Muir
> Assignee: Xavier Coulon
> Fix For: 4.2.0.Alpha1
>
>
> The new RESTful Webservice wizard is generating a load of unnecessary stuff in the endpoint
> {code}
> <servlet>
> <servlet-name>Resteasy</servlet-name>
> <servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher</servlet-class>
> </servlet>
> <servlet-mapping>
> <servlet-name>Resteasy</servlet-name>
> <url-pattern>/*</url-pattern>
> </servlet-mapping>
> <context-param>
> <param-name>javax.ws.rs.Application</param-name>
> <param-value>org.jboss.samples.rs.webservices.MyRESTApplication</param-value>
> </context-param>
> <listener>
> <listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class>
> </listener>
> {code}
> None of this is needed
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months
[JBoss JIRA] (JBIDE-13309) New Restful Webservice wizard shouldn't change web.xml by default
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13309?page=com.atlassian.jira.plugi... ]
Xavier Coulon updated JBIDE-13309:
----------------------------------
Fix Version/s: 4.2.0.Alpha1
(was: 4.1.x)
> New Restful Webservice wizard shouldn't change web.xml by default
> -----------------------------------------------------------------
>
> Key: JBIDE-13309
> URL: https://issues.jboss.org/browse/JBIDE-13309
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Webservices
> Affects Versions: 4.0.0.Final
> Reporter: Pete Muir
> Assignee: Xavier Coulon
> Fix For: 4.2.0.Alpha1
>
>
> We recommend the class-style activation of JAX-RS applications
> {code}
> /**
> * A class extending {@link Application} and annotated with @ApplicationPath is the Java EE 6
> * "no XML" approach to activating JAX-RS.
> *
> * <p>
> * Resources are served relative to the servlet path specified in the {@link ApplicationPath}
> * annotation.
> * </p>
> */
> @ApplicationPath("/rest")
> public class JaxRsActivator extends Application {
> /* class body intentionally left blank */
> }
> {code}
> JBDS should offer this as the default approach.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months
[JBoss JIRA] (JBIDE-15054) embed cartridges: cannot embed rockmongo + mongo + phpmyadmin + mysql at the same time
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15054?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-15054:
-------------------------------------
Steps to Reproduce:
# EXEC: launch OpenShift application wizard
# EXEC: choose some name and some application type (ex. jbossas-7)
# EXEC: in the embedded cartridges, choose
* rockmongo
* mongodb
* phpmyadmin
* mysql
* EXEC: hit Finish
Result:
After some processing, the wizards becomes all enabled again, no error is visible even though it's clear that the was a problem. In the EClipse log you spot:
{code}
!ENTRY org.jboss.tools.common.ui 4 0 2013-06-28 10:02:59.789
!MESSAGE The operation 'Adding/removing cartridges for application "tescht"...' was cancelled
{code}
The application was created and the cartridges were imported though. Sp it was the wizard that cancelled the job since it looked to him as it took too much time.
The user MUST get informed of this, currently the wizard simply just stays as is, nothing is displayed to the user.
was:
# EXEC: launch OpenShift application wizard
# EXEC: choose some name and some application type (ex. jbossas-7)
# EXEC: in the embedded cartridges, choose
* rockmongo
* mongodb
* phpmyadmin
* mysql
* EXEC: hit Finish
Result:
After some processing, the wizards becomes all enabled again, no error is visible even though it's clear that the was a problem. In the EClipse log you spot:
{code}
!ENTRY org.jboss.tools.common.ui 4 0 2013-06-28 10:02:59.789
!MESSAGE The operation 'Adding/removing cartridges for application "tescht"...' was cancelled
{code}
The application was created and the cartridges were imported though. Sp it was the wizard that cancelled the job since it looked to him as it took too much time.
> embed cartridges: cannot embed rockmongo + mongo + phpmyadmin + mysql at the same time
> --------------------------------------------------------------------------------------
>
> Key: JBIDE-15054
> URL: https://issues.jboss.org/browse/JBIDE-15054
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.CR1
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.2.x
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months