[Hibernate-JIRA] Created: (HHH-6754) Derived Identifiers and Inheritance not working together
by Jason Pyeron (JIRA)
Derived Identifiers and Inheritance not working together
--------------------------------------------------------
Key: HHH-6754
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6754
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.6.7
Reporter: Jason Pyeron
// striped down for clarity
@Entity
public class Base //Works
{
@Id @ManyToOne ParentA id1;
@Id @ManyToOne Value id2;
}
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
@DiscriminatorColumn(name="dtype",discriminatorType=DiscriminatorType.STRING)
public class Base2 //Works
{
@Id @ManyToOne ParentA id1;
@Id @ManyToOne Value id2;
}
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
@DiscriminatorColumn(name="dtype",discriminatorType=DiscriminatorType.STRING)
public class Base3 //Fails
{
@Id @ManyToOne ParentA id1;
@Id @ManyToOne Value id2;
}
@Entity
@DiscriminatorValue("subtype")
public class Subtype extends Base3
{
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 5 months
[Hibernate-JIRA] Created: (HHH-6760) Test failures on Oracle due identity IDs
by Gail Badner (JIRA)
Test failures on Oracle due identity IDs
----------------------------------------
Key: HHH-6760
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6760
Project: Hibernate Core
Issue Type: Bug
Components: testsuite
Reporter: Gail Badner
Assignee: Gail Badner
Fix For: 4.0.0.next
Some unit tests specify identity IDs, but Oracle does not support identities.
The following tests fail because they specify identity IDs, but Oracle does not support identities:
- org.hibernate.test.annotations.inheritance.joined.JoinedSubclassTest
- org.hibernate.test.criteria.OuterJoinCriteriaTest
These tests don't appear to be specific to identities in any way, so the fix will be to use the default ID generator in the first, and "increment" generator in the second.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 5 months
[Hibernate-JIRA] Created: (HHH-6188) java.util.UUID cannot be used for Ids
by Thomas Oellrich (JIRA)
java.util.UUID cannot be used for Ids
-------------------------------------
Key: HHH-6188
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6188
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.6.3
Environment: Hibernate 3.6.3Final, Oracle 9i
Reporter: Thomas Oellrich
Attachments: Foo.java, foo.sql, fullstacktrace.txt
Hibernate successfully maps java.util.UUID to a database field defined as raw(16) in Oracle. However, as soon as I add the @Id annotation from the JPA-API, I get the following error:
Caused by: org.hibernate.MappingException: No Dialect mapping for JDBC type: -2
at org.hibernate.dialect.TypeNames.get(TypeNames.java:77)
at org.hibernate.dialect.TypeNames.get(TypeNames.java:100)
at org.hibernate.dialect.Dialect.getTypeName(Dialect.java:296)
at org.hibernate.mapping.Column.getSqlType(Column.java:208)
at org.hibernate.mapping.Table.sqlTemporaryTableCreateString(Table.java:371)
at org.hibernate.mapping.PersistentClass.prepareTemporaryTables(PersistentClass.java:774)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:272)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1845)
at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:906)
I'm using org.hibernate.dialect.Oracle9iDialect.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 5 months
[Hibernate-JIRA] Created: (HHH-6758) Test failure due to Oracle restrictions on Blob comparison and missing equals() and hashcode()
by Gail Badner (JIRA)
Test failure due to Oracle restrictions on Blob comparison and missing equals() and hashcode()
-----------------------------------------------------------------------------------------------
Key: HHH-6758
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6758
Project: Hibernate Core
Issue Type: Bug
Components: testsuite
Affects Versions: 4.0.0.CR4
Reporter: Gail Badner
Assignee: Gail Badner
Fix For: 4.0.0.next
The following test fails because Oracle requires Blob comparisons to be done using dbms_lob.compare():
org.hibernate.test.annotations.entity.BasicHibernateAnnotationsTest.testSerialized()
In the following, Forest_near.near is a blob column:
delete from Forest_near where Forest_id=? and near=?
When executed, it fails with: ORA-00932: inconsistent datatypes: expected - got BLOB
Oracle requires the comparison be done as follows:
delete from Forest_near where Forest_id=? and dbms_lob.compare( near, ? ) == 0
This delete statement was being executed for collection elements of an unchanged collection because the Serializable class did not implement equals() or hashCode().
Adding equals() and hashCode() avoids executing these delete statements.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 5 months
[Hibernate-JIRA] Created: (HHH-6756) Test failures due to Oracle LONG limitatations
by Gail Badner (JIRA)
Test failures due to Oracle LONG limitatations
----------------------------------------------
Key: HHH-6756
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6756
Project: Hibernate Core
Issue Type: Bug
Components: testsuite
Affects Versions: 4.0.0.CR4
Reporter: Gail Badner
Assignee: Gail Badner
Fix For: 4.0.0.next
The following tests fail due to Oracle LONG limitations:
- org.hibernate.test.immutable.ImmutableTest (all tests)
- org.hibernate.test.onetoone.formula.OneToOneFormulaTest.testOneToOneFormula
Test failures are caused by: java.sql.SQLException: Stream has already been closed
Fix will register a type override for Hibernate "text" to be treated like "materialized_clob".
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 5 months
[Hibernate-JIRA] Created: (WEBSITE-10) https://hibernate.onjira.com in the website project displaying "All" vs "Comments" takes a very long time, and then displays fisheye errors
by Jason Pyeron (JIRA)
https://hibernate.onjira.com in the website project displaying "All" vs "Comments" takes a very long time, and then displays fisheye errors
-------------------------------------------------------------------------------------------------------------------------------------------
Key: WEBSITE-10
URL: http://opensource.atlassian.com/projects/hibernate/browse/WEBSITE-10
Project: Hibernate Website
Issue Type: Bug
Environment: IE8
Reporter: Jason Pyeron
The error message from https://hibernate.onjira.com/browse/WEBSITE-9?page=com.atlassian.jira.plu...
This list of changesets may be incomplete, as errors occurred retrieving changesets from the following repositories:
•Repository SavaraToolsEclipse on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SavaraToolsEclipse}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository HibernateTools on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=HibernateTools}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossAS6 on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossAS6}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository riftsaw on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=riftsaw}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesBuild on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesBuild}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamParent on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamParent}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossTools on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossTools}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository TeiidDesigner on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=TeiidDesigner}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamDrools on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamDrools}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossEnterpriseDataGrid on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossEnterpriseDataGrid}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Weld on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Weld}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Hibernate-search on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Hibernate-search}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository SeamJMS on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamJMS}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamCron on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamCron}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository picketlink on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=picketlink}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JOPR on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JOPR}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SavaraCore on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SavaraCore}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamCatch on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamCatch}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamServlet on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamServlet}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossSerialization on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossSerialization}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository EmbeddedJopr on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=EmbeddedJopr}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesShadeTransformers on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesShadeTransformers}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository jBPM on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=jBPM}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Javassist on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Javassist}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossProfiler on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossProfiler}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JSFUnit on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JSFUnit}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossPortal on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossPortal}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFaces on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFaces}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesParent on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesParent}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SavaraIntegration on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SavaraIntegration}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository ModeShape on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=ModeShape}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamFaces on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamFaces}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Savara on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Savara}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamSolder on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamSolder}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository savara on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=savara}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamExamples on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamExamples}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RailoProject on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RailoProject}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository CDITCK on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=CDITCK}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesShowcase on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesShowcase}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Hibernate on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Hibernate}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Messaging on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Messaging}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesArchetypes on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesArchetypes}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamForge on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamForge}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossCommon on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossCommon}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamSocial on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamSocial}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Overlord on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Overlord}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository HornetQ on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=HornetQ}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamConfig on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamConfig}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository exo-jcr on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=exo-jcr}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository APIviz on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=APIviz}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository l2jfree on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=l2jfree}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository HibernateCore on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=HibernateCore}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Netty on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Netty}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository javassist on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=javassist}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository PortletBridge on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=PortletBridge}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamInternational on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamInternational}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository jbossidentity on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=jbossidentity}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RiftSaw on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RiftSaw}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository mod_cluster on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=mod_cluster}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository BlackTie on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=BlackTie}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamWicket on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamWicket}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Hornetq on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Hornetq}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossInstaller on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossInstaller}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SavaraToolsWeb on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SavaraToolsWeb}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamDist on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamDist}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossOSGi on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossOSGi}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Documentation on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Documentation}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossCache on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossCache}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Blacktie on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Blacktie}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossTS on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossTS}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamJBPM on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamJBPM}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository HibernateOGM on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=HibernateOGM}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository JBossWS on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossWS}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossAS on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossAS}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository scribble on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=scribble}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository PicketBox on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=PicketBox}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamBuild on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamBuild}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Hibernate-Validator on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Hibernate-Validator}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository weld on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=weld}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesSandbox on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesSandbox}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamJCR on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamJCR}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository qa on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=qa}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository EMBJOPR on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=EMBJOPR}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Teiid on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Teiid}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossRules on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossRules}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamPersistence on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamPersistence}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Seam on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Seam}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesCDK on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesCDK}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Tauto on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Tauto}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository PicketLink on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=PicketLink}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesComponents on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesComponents}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Errai on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Errai}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossWeb on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossWeb}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Drools on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Drools}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Infinispan on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Infinispan}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamSecurity on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamSecurity}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesQA on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesQA}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Portal on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Portal}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossMarshalling on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossMarshalling}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository rubytree on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=rubytree}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository picketbox on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=picketbox}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository GateIn on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=GateIn}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossMessaging on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossMessaging}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Marshalling on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Marshalling}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesCore on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesCore}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamValidation on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamValidation}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository jBPM3 on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=jBPM3}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamREST on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamREST}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository TorqueBox on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=TorqueBox}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Tattletale on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Tattletale}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Scribble on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Scribble}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository eXo-JCR on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=eXo-JCR}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamRemoting on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamRemoting}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossTransactions on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossTransactions}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository TDesigner on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=TDesigner}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Hibernate-metamodelgen on http://fisheye2.atlassian.com/ failed: Error in remote call to 'FishEye 0 (http://fisheye2.atlassian.com/)' (http://fisheye2.atlassian.com) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Hibernate-metamodelgen}, methodType=POST}] : repository not in correct state: Repository is stopped
•Repository JBossNative on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossNative}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository gatein on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=gatein}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Maven on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Maven}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Wise on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Wise}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository Byteman on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=Byteman}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SOAG on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SOAG}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository SeamMail on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=SeamMail}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesCheckstyle on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesCheckstyle}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository JBossESB on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=JBossESB}, methodType=POST}] : java.net.SocketException: Connection reset
•Repository RichFacesDevExamples on http://fisheye.jboss.org/ failed: Error in remote call to 'FishEye 1 (http://fisheye.jboss.org/)' (http://fisheye.jboss.org) [AbstractRestCommand{path='api/rest/query', params={query=select revisions from dir / where comment matches 'WEBSITE-9' order by date group by changeset return csid, rep=RichFacesDevExamples}, methodType=POST}] : java.net.SocketException: Connection reset
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 5 months