[JBoss JIRA] Created: (AS7-1247) Messaging Configuration not support all setings defined in jboss-messaging.xsd schema file.
by Tomaz Zupan (JIRA)
Messaging Configuration not support all setings defined in jboss-messaging.xsd schema file.
-------------------------------------------------------------------------------------------
Key: AS7-1247
URL: https://issues.jboss.org/browse/AS7-1247
Project: Application Server 7
Issue Type: Bug
Components: JMS
Affects Versions: 7.0.0.CR1
Environment: Windows 7 x64
Java 1.6.25 x64
JBoss 7.0.0 CR1 - standalone-preview
Reporter: Tomaz Zupan
Assignee: Clebert Suconic
Only settings included in standalone-preview.xml configuration file are supported. If some other settings from jboss-messaging.xsd schema file are included, org.jboss.as.controller.persistence.ConfigurationPersistenceException exception is thrown while the JBoss server is starting.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (AS7-1164) add jdbc-driver : documentation incomplete or misleading
by Heiko Rupp (JIRA)
add jdbc-driver : documentation incomplete or misleading
--------------------------------------------------------
Key: AS7-1164
URL: https://issues.jboss.org/browse/AS7-1164
Project: Application Server 7
Issue Type: Bug
Components: Domain Management
Affects Versions: 7.0.0.CR1
Reporter: Heiko Rupp
I want to add a jdbc driver to a profile. The driver has been uploaded to /deployment
[domain@localhost:9999 subsystem=datasources] pwd
/profile=default/subsystem=datasources
[domain@localhost:9999 subsystem=datasources] ./jdbc-driver=postgres9:add(driver-name=postgres9,deployment-name=postgresql-9.0-801.jdbc4.jar,driver-class-name=org.postgresql.Driver)
{
"outcome" => "failed",
"failure-description" => {"domain-failure-description" => "Operation handler failed: java.util.NoSuchElementException: No child 'driver-module-name' exists"},
"rolled-back" => true
}
Documentation says:
[domain@localhost:9999 jdbc-driver=h2] :read-operation-description(name=add)
{
"outcome" => "success",
"result" => {
"operation-name" => "add",
"description" => "Adds a new JDBC driver service",
"attributes" => {
"driver-name" => {
"description" => "The symbolic name of this driver used to reference it in the register",
"type" => STRING,
"required" => true
},
"deployment-name" => {
"description" => "The name of the deployment unit from which the driver was loaded, if it was loaded from a deployment",
"type" => STRING
},
"driver-module-name" => {
"description" => "The name of the module from which the driver was loaded, if it was loaded from the module path",
"type" => STRING
},
"module-slot" => {
"description" => "The slot of the module from which the driver was loaded, if it was loaded from the module path",
"type" => STRING
},
"driver-class-name" => {
"description" => "The fully qualified class name of the driver's implementation of java.sql.Driver",
"type" => STRING
},
"driver-major-version" => {
"description" => "The driver's major version number",
"type" => INT
},
"driver-minor-version" => {
"description" => "The driver's minor version number",
"type" => INT
},
"jdbc-compliant" => {
"description" => "Whether or not the driver is JDBC compliant",
"type" => BOOLEAN
}
}
}
}
Here, only the driver-name is required.
For driver-module-name it says "if loaded from module", which I read as "optional".
Obviously from above error message, this is not optional
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (AS7-879) missing resource for description infinispan.container.default-cache
by Michal Linhard (JIRA)
missing resource for description infinispan.container.default-cache
-------------------------------------------------------------------
Key: AS7-879
URL: https://issues.jboss.org/browse/AS7-879
Project: Application Server 7
Issue Type: Bug
Components: Clustering
Affects Versions: 7.0.0.Beta3
Reporter: Michal Linhard
Priority: Minor
LocalDescriptions.properties is missing description for infinispan.container.default-cache
when you run ./standalone.sh -server-config clustering-standalone.xml
and in jboss-admin do:
/subsystem=infinispan/cache-container=web:read-operation-description(name=add)
you get java.util.MissingResourceException
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (JBLOGGING-51) jboss-logging-spi in OSGI
by luca stancapiano (JIRA)
jboss-logging-spi in OSGI
-------------------------
Key: JBLOGGING-51
URL: https://issues.jboss.org/browse/JBLOGGING-51
Project: JBoss Logging
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Environment: felix
Reporter: luca stancapiano
Assignee: David Lloyd
I'ld like jboss-logging-spi be a OSGI bundle so it can be installed in all OSGI repositories. Actually I tested it with felix. To do it it is enough add this plugin configuration in the pom.xml:
<!-- It configures the package to use inside a OSGI repository -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.1.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-DocURL>http://community.jboss.org/wiki/JBossCommonProject</Bundle-DocURL>
<Export-Package>
${project.groupId}.*;version=${project.version};-split-package:=error
</Export-Package>
</instructions>
</configuration>
</plugin>
and modify the <packaging> row from 'jar' to 'bundle' so:
<packaging>bundle</packaging>
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months