[JBoss JIRA] (JBIDE-18428) Connection wizard: get "Unknown error" instead of "Authentication error" when using bad credentials (WATCHER)
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18428?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-18428:
-------------------------------------
Description:
The issues is that OpenShift Online responds with *500 Internal Server Error" when invalid credentials are being used (where *401 Unauthorized* is expect)
{code}
curl -v --user adietish@redhat.com:bogus https://openshift.redhat.com/broker/rest/user* Adding handle: conn: 0xaa8a80
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0xaa8a80) send_pipe: 1, recv_pipe: 0
* About to connect() to openshift.redhat.com port 443 (#0)
* Trying 50.19.249.93...
* Connected to openshift.redhat.com (50.19.249.93) port 443 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
* CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
* SSL connection using TLS_RSA_WITH_AES_128_CBC_SHA
* Server certificate:
* subject: CN=openshift.redhat.com,O=Red Hat Inc.,L=Raleigh,ST=North Carolina,C=US
* start date: Jul 23 00:00:00 2014 GMT
* expire date: Jul 27 12:00:00 2017 GMT
* common name: openshift.redhat.com
* issuer: CN=DigiCert SHA2 High Assurance Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US
* Server auth using Basic with user 'adietish(a)redhat.com'
> GET /broker/rest/user HTTP/1.1
> Authorization: Basic YWRpZXRpc2hAcmVkaGF0LmNvbTpib2d1cw==
> User-Agent: curl/7.32.0
> Host: openshift.redhat.com
> Accept: */*
>
< HTTP/1.1 500
< Cache-Control: no-cache, private
< Content-Type: application/json; charset=utf-8
< Date: Wed, 24 Sep 2014 10:18:21 GMT
< ProxyTime: D=374659
* Server Apache/2.2.15 (Red Hat) is not blacklisted
< Server: Apache/2.2.15 (Red Hat)
< Status: 500
< Strict-Transport-Security: max-age=15768000, includeSubDomains
< Vary: Accept-Encoding,User-Agent
< X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 3.0.21
< X-Rack-Cache: miss
< X-Request-Id: b25500e832d6bbebb1bc7eee5e3175b4
< X-Runtime: 0.367919
< X-UA-Compatible: IE=Edge,chrome=1
< Content-Length: 376
< Connection: keep-alive
<
* Connection #0 to host openshift.redhat.com left intact
{"api_version":1.7,"data":null,"messages":[{"exit_code":1,"field":null,"index":null,"severity":"error","text":"Unable to authenticate the user. Please try again and contact support if the issue persists. \nReference ID: b25500e832d6bbebb1bc7eee5e3175b4"}],"status":"internal_server_error","supported_api_versions":[1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7],"type":null,"version":"1.7"}
{code}
stg.openshift.redaht.com is responding with the correct 401:
{code}
[adietish@localhost openshift-java-client]$ curl -v --proxy https://file.rdu.redhat.com:3128 --user adietish@redhat.com:bogus https://stg.openshift.redhat.com/broker/rest/user
* Adding handle: conn: 0x178dae0
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x178dae0) send_pipe: 1, recv_pipe: 0
* About to connect() to proxy file.rdu.redhat.com port 3128 (#0)
* Trying 10.11.5.7...
* Connected to file.rdu.redhat.com (10.11.5.7) port 3128 (#0)
* Establish HTTP proxy tunnel to stg.openshift.redhat.com:443
* Server auth using Basic with user 'adietish(a)redhat.com'
> CONNECT stg.openshift.redhat.com:443 HTTP/1.1
> Host: stg.openshift.redhat.com:443
> User-Agent: curl/7.32.0
> Proxy-Connection: Keep-Alive
>
< HTTP/1.0 200 Connection established
<
* Proxy replied OK to CONNECT request
* Initializing NSS with certpath: sql:/etc/pki/nssdb
* CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
* SSL connection using TLS_DHE_RSA_WITH_AES_256_CBC_SHA
* Server certificate:
* subject: CN=stg.openshift.redhat.com,O=Red Hat Inc.,L=Raleigh,ST=North Carolina,C=US
* start date: Apr 30 00:00:00 2014 GMT
* expire date: May 04 12:00:00 2016 GMT
* common name: stg.openshift.redhat.com
* issuer: CN=DigiCert SHA2 High Assurance Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US
* Server auth using Basic with user 'adietish(a)redhat.com'
> GET /broker/rest/user HTTP/1.1
> Authorization: Basic YWRpZXRpc2hAcmVkaGF0LmNvbTpib2d1cw==
> User-Agent: curl/7.32.0
> Host: stg.openshift.redhat.com
> Accept: */*
>
< HTTP/1.1 401
< Date: Wed, 24 Sep 2014 10:19:22 GMT
* Server Apache/2.2.15 (Red Hat) is not blacklisted
< Server: Apache/2.2.15 (Red Hat)
< X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 3.0.21
* Authentication problem. Ignoring this.
< WWW-Authenticate: Basic realm="Application"
< X-UA-Compatible: IE=Edge,chrome=1
< Cache-Control: no-cache, private
< X-Request-Id: 5217138e18f0e036b1880d006e4c3cb6
< X-Runtime: 0.569233
< X-Rack-Cache: miss
< Status: 401
< Content-Length: 27
< Content-Type: text/html; charset=utf-8
< Vary: Accept-Encoding,User-Agent
< Strict-Transport-Security: max-age=15768000, includeSubDomains
< ProxyTime: D=574882
<
HTTP Basic: Access denied.
* Connection #0 to host file.rdu.redhat.com left intact
{code}
> Connection wizard: get "Unknown error" instead of "Authentication error" when using bad credentials (WATCHER)
> -------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-18428
> URL: https://issues.jboss.org/browse/JBIDE-18428
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.CR1
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Priority: Minor
> Labels: connection_wizard, upstream
> Fix For: 4.3.x
>
> Attachments: unknown-error.png
>
>
> The issues is that OpenShift Online responds with *500 Internal Server Error" when invalid credentials are being used (where *401 Unauthorized* is expect)
> {code}
> curl -v --user adietish@redhat.com:bogus https://openshift.redhat.com/broker/rest/user* Adding handle: conn: 0xaa8a80
> * Adding handle: send: 0
> * Adding handle: recv: 0
> * Curl_addHandleToPipeline: length: 1
> * - Conn 0 (0xaa8a80) send_pipe: 1, recv_pipe: 0
> * About to connect() to openshift.redhat.com port 443 (#0)
> * Trying 50.19.249.93...
> * Connected to openshift.redhat.com (50.19.249.93) port 443 (#0)
> * Initializing NSS with certpath: sql:/etc/pki/nssdb
> * CAfile: /etc/pki/tls/certs/ca-bundle.crt
> CApath: none
> * SSL connection using TLS_RSA_WITH_AES_128_CBC_SHA
> * Server certificate:
> * subject: CN=openshift.redhat.com,O=Red Hat Inc.,L=Raleigh,ST=North Carolina,C=US
> * start date: Jul 23 00:00:00 2014 GMT
> * expire date: Jul 27 12:00:00 2017 GMT
> * common name: openshift.redhat.com
> * issuer: CN=DigiCert SHA2 High Assurance Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US
> * Server auth using Basic with user 'adietish(a)redhat.com'
> > GET /broker/rest/user HTTP/1.1
> > Authorization: Basic YWRpZXRpc2hAcmVkaGF0LmNvbTpib2d1cw==
> > User-Agent: curl/7.32.0
> > Host: openshift.redhat.com
> > Accept: */*
> >
> < HTTP/1.1 500
> < Cache-Control: no-cache, private
> < Content-Type: application/json; charset=utf-8
> < Date: Wed, 24 Sep 2014 10:18:21 GMT
> < ProxyTime: D=374659
> * Server Apache/2.2.15 (Red Hat) is not blacklisted
> < Server: Apache/2.2.15 (Red Hat)
> < Status: 500
> < Strict-Transport-Security: max-age=15768000, includeSubDomains
> < Vary: Accept-Encoding,User-Agent
> < X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 3.0.21
> < X-Rack-Cache: miss
> < X-Request-Id: b25500e832d6bbebb1bc7eee5e3175b4
> < X-Runtime: 0.367919
> < X-UA-Compatible: IE=Edge,chrome=1
> < Content-Length: 376
> < Connection: keep-alive
> <
> * Connection #0 to host openshift.redhat.com left intact
> {"api_version":1.7,"data":null,"messages":[{"exit_code":1,"field":null,"index":null,"severity":"error","text":"Unable to authenticate the user. Please try again and contact support if the issue persists. \nReference ID: b25500e832d6bbebb1bc7eee5e3175b4"}],"status":"internal_server_error","supported_api_versions":[1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7],"type":null,"version":"1.7"}
> {code}
> stg.openshift.redaht.com is responding with the correct 401:
> {code}
> [adietish@localhost openshift-java-client]$ curl -v --proxy https://file.rdu.redhat.com:3128 --user adietish@redhat.com:bogus https://stg.openshift.redhat.com/broker/rest/user
> * Adding handle: conn: 0x178dae0
> * Adding handle: send: 0
> * Adding handle: recv: 0
> * Curl_addHandleToPipeline: length: 1
> * - Conn 0 (0x178dae0) send_pipe: 1, recv_pipe: 0
> * About to connect() to proxy file.rdu.redhat.com port 3128 (#0)
> * Trying 10.11.5.7...
> * Connected to file.rdu.redhat.com (10.11.5.7) port 3128 (#0)
> * Establish HTTP proxy tunnel to stg.openshift.redhat.com:443
> * Server auth using Basic with user 'adietish(a)redhat.com'
> > CONNECT stg.openshift.redhat.com:443 HTTP/1.1
> > Host: stg.openshift.redhat.com:443
> > User-Agent: curl/7.32.0
> > Proxy-Connection: Keep-Alive
> >
> < HTTP/1.0 200 Connection established
> <
> * Proxy replied OK to CONNECT request
> * Initializing NSS with certpath: sql:/etc/pki/nssdb
> * CAfile: /etc/pki/tls/certs/ca-bundle.crt
> CApath: none
> * SSL connection using TLS_DHE_RSA_WITH_AES_256_CBC_SHA
> * Server certificate:
> * subject: CN=stg.openshift.redhat.com,O=Red Hat Inc.,L=Raleigh,ST=North Carolina,C=US
> * start date: Apr 30 00:00:00 2014 GMT
> * expire date: May 04 12:00:00 2016 GMT
> * common name: stg.openshift.redhat.com
> * issuer: CN=DigiCert SHA2 High Assurance Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US
> * Server auth using Basic with user 'adietish(a)redhat.com'
> > GET /broker/rest/user HTTP/1.1
> > Authorization: Basic YWRpZXRpc2hAcmVkaGF0LmNvbTpib2d1cw==
> > User-Agent: curl/7.32.0
> > Host: stg.openshift.redhat.com
> > Accept: */*
> >
> < HTTP/1.1 401
> < Date: Wed, 24 Sep 2014 10:19:22 GMT
> * Server Apache/2.2.15 (Red Hat) is not blacklisted
> < Server: Apache/2.2.15 (Red Hat)
> < X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 3.0.21
> * Authentication problem. Ignoring this.
> < WWW-Authenticate: Basic realm="Application"
> < X-UA-Compatible: IE=Edge,chrome=1
> < Cache-Control: no-cache, private
> < X-Request-Id: 5217138e18f0e036b1880d006e4c3cb6
> < X-Runtime: 0.569233
> < X-Rack-Cache: miss
> < Status: 401
> < Content-Length: 27
> < Content-Type: text/html; charset=utf-8
> < Vary: Accept-Encoding,User-Agent
> < Strict-Transport-Security: max-age=15768000, includeSubDomains
> < ProxyTime: D=574882
> <
> HTTP Basic: Access denied.
> * Connection #0 to host file.rdu.redhat.com left intact
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 7 months
[JBoss JIRA] (JBIDE-18426) Central component drags in too many components
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18426?page=com.atlassian.jira.plugi... ]
Snjezana Peco commented on JBIDE-18426:
---------------------------------------
The org.jboss.tools.central plugin requires the o.j.t.projects.examples plugin that requires o.j.t.seam.core, o.j.t.portlet, o.j.t.runtime.core/ui, o.j.t.as.runtimes.integration that add new dependencies.
We would probably have to refactor the the o.j.t.projects.examples plugin to include a minimum number of dependencies.
However, central will still require project.examples, AS Tools ...
> Central component drags in too many components
> ----------------------------------------------
>
> Key: JBIDE-18426
> URL: https://issues.jboss.org/browse/JBIDE-18426
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: central
> Affects Versions: 4.2.0.CR1
> Reporter: Denis Golovin
> Priority: Critical
> Labels: f2f2014
> Fix For: 4.3.0.Alpha1
>
>
> Installing only central feature from JBT Repository leads to almost full JBT installation (see list below).
> Should we support scenario when central installs minimum and then let install what is missing depending on developer's needs?
> {code}
> Warning: You are installing software that contains unsigned content. The authenticity or validity of this software cannot be established. Do you want to continue with the installation?
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse.console_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.hibernate.eclipse.feature_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse.help_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse.jdt.apt.ui_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse.jdt.ui_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse.libs_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.hibernate.eclipse.mapper_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.archives.core_3.5.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.ide.eclipse.archives.feature_3.5.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.archives.jdt.integration_3.5.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.archives.ui_3.5.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.archives.webtools_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.ide.eclipse.as.archives.integration.feature_3.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.classpath.core_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.classpath.ui_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.core_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.dmr_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.doc.user_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.ide.eclipse.as.feature_3.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.jmx.integration_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.ide.eclipse.as.jmx.integration.feature_3.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.management.as71_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.management.core_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.management.wildfly8_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.rse.core_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.rse.ui_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.ide.eclipse.as.server.rse.integration.feature_3.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature_3.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.ui_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.ui.mbeans_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.wtp.core_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.ide.eclipse.as.wtp.ui_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.archives.scanner_3.5.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.archives.scanner.feature_3.5.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.as.catalog_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.as.runtimes.integration_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.central_1.3.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.central.feature_1.3.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.core_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.el.core_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.el.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.common.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.gef_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.model_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.model.ui_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.model.ui.capabilities_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.projecttemplates_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.resref.core_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.resref.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.text.ext_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.text.xml_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.validation_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.common.verification_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.community.central_1.3.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.community.central.feature_1.3.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.community.project.examples_2.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.community.project.examples.feature_2.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.foundation.core_1.1.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.foundation.ui_1.1.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.antlr_2.7.7.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.beanshell_2.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.dom4j_1.6.1.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.jpt.core_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.jpt.ui_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.jtidy_8.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.spi_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.ui_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.xml_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate.xml.ui_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate3_5_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate3_6_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate4_0_4.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.hibernate4_3_4.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jmx.core_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.jmx.feature_1.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jmx.jvmmonitor.core_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jmx.jvmmonitor.tools_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jmx.jvmmonitor.ui_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jmx.local_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jmx.ui_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.jsf.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.text.ext_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.text.ext.facelets_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.text.ext.richfaces_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.verification_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.ajax4jsf_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.facelets_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.jbpm_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.jsf_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.jstl_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.myfaces_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.richfaces_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jsf.vpe.seam_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.jst.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jst.web_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jst.web.kb_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.jst.web.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.maven.conversion.ui_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.maven.core_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.maven.feature_1.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.maven.project.examples_2.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.maven.project.examples.feature_2.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.maven.ui_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.portlet.core_1.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.project.examples_2.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.project.examples.cheatsheet_2.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.project.examples.feature_2.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.runtime.core_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.runtime.core.feature_3.0.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.runtime.seam.detector_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.runtime.seam.detector.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.runtime.ui_3.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.core_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.seam.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.pages.xml_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.text.ext_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.ui.pages_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.xml_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.seam.xml.ui_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.stacks.core_1.1.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.stacks.core.feature_1.1.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.usage_2.0.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.docbook_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.vpe.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.html_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.jsp_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.preview_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.preview.core_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.preview.editor_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.jboss.tools.vpe.preview.feature_3.6.0.CR2-v20140923-2244
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.resref_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.spring_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.ui.palette_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.vpe.xulrunner_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.jboss.tools.xulrunner.initializer_3.6.0.CR2-v20140923-2244.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.mozilla.xpcom_1.9.2.16
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.mozilla.xulrunner.gtk.linux.x86_64_1.9.2.19pre
> /home/eskimo/Temp/jbt-new-tern/eclipse/plugins/org.sonatype.m2e.egit_0.14.0.201406241643.jar
> /home/eskimo/Temp/jbt-new-tern/eclipse/features/org.sonatype.m2e.egit.feature_0.14.0.201406241643
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 7 months
[JBoss JIRA] (JBIDE-18287) Seam project fails to deploy after IDE restart
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18287?page=com.atlassian.jira.plugi... ]
Xavier Coulon updated JBIDE-18287:
----------------------------------
Steps to Reproduce:
0. Start with a fresh workspace
1. Add EAP 5.2 using runtime detection
2. Create a new seam web project bound to the EAP 5.2 runtime, use all defaults
3. Start the server - the seam project will be deployed successfully - no errors in server console
4. Stop the server, restart IDE
5. Start the server again - there will be errors in the server console
Workaround:
6. Undeploy the seam project
7. Deploy the project again - this time it will work.
or
6.Server>Clean publishes again the missing -ds.xml file, and problem does not occur anymore (until starting with a new project)
was:
1. Add EAP 5.2 using runtime detection
2. Create a new seam web project bound to the EAP 5.2 runtime, use all defaults
3. Start the server - the seam project will be deployed successfully - no errors in server console
4. Stop the server, restart IDE
5. Start the server again - there will be errors in the server console
Workaround:
6. Undeploy the seam project
7. Deploy the project again - this time it will work
> Seam project fails to deploy after IDE restart
> ----------------------------------------------
>
> Key: JBIDE-18287
> URL: https://issues.jboss.org/browse/JBIDE-18287
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: seam2, server
> Affects Versions: 4.2.0.CR1
> Reporter: Martin Malina
> Assignee: Rob Stryker
> Priority: Blocker
> Fix For: 4.2.0.CR2
>
> Attachments: JBIDE-18287.txt
>
>
> When you create a seam web project and deploy to EAP 5.2, then stop the server, restart JBDS and start the server again, the project fails to deploy properly:
> {code}
> 10:55:27,380 INFO [config] Initializing Mojarra (1.2_13-b01-FCS) for context '/seamproj'
> 10:55:27,900 INFO [ServletContextListener] Welcome to Seam 2.2.6.EAP5
> 10:55:28,862 WARN [PersistentPermissionResolver] no permission store available - please install a PermissionStore with the name 'org.jboss.seam.security.jpaPermissionStore' if persistent permissions are required.
> 10:55:28,961 INFO [ProfileServiceBootstrap] Loading profile: ProfileKey@6d4879f2[domain=default, server=default, name=default]
> 10:55:28,962 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
> DEPLOYMENTS MISSING DEPENDENCIES:
> Deployment "persistence.unit:unitName=seamproj.war#seamproj" is missing the following dependencies:
> Dependency "jboss.jca:name=seamprojDatasource,service=DataSourceBinding" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:name=seamprojDatasource,service=DataSourceBinding' **")
> DEPLOYMENTS IN ERROR:
> Deployment "jboss.jca:name=seamprojDatasource,service=DataSourceBinding" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:name=seamprojDatasource,service=DataSourceBinding' **
> 10:55:28,968 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-localhost%2F127.0.0.1-8080
> 10:55:28,982 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
> 10:55:28,988 INFO [ServerImpl] JBoss (Microcontainer) [5.2.0 (build: SVNTag=JBPAPP_5_2_0 date=201211232041)] Started in 15s:311ms
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 7 months