[JBoss JIRA] Created: (AS7-1804) Fix the Web Services description providers for the improved validation in jboss-as-subsystem-test
by Kabir Khan (JIRA)
Fix the Web Services description providers for the improved validation in jboss-as-subsystem-test
--------------------------------------------------------------------------------------------------
Key: AS7-1804
URL: https://issues.jboss.org/browse/AS7-1804
Project: Application Server 7
Issue Type: Feature Request
Reporter: Kabir Khan
Assignee: Alessio Soldano
Fix For: 7.1.0.Alpha1
I added a test …
[View More]called WebServicesSubsystemTestCase, which uses our subsystem testing framework which attempts to validate the description providers, this will be committed to upstream in the next few days.
To make the tests pass I had to override AdditionalInitialization.getModelValidationConfiguration() and isValidateOperations() as follows:
@Override
protected ValidationConfiguration getModelValidationConfiguration() {
return null;
}
@Override
protected boolean isValidateOperations() {
//TODO fix providers https://issues.jboss.org/browse/AS7-1789
return false;
}
Returning null basically turns off validation of the providers, and the isValidateOperations() override turns off validation of the contents of the actual operations. What I have added is a minimum of what is required for subsystem testing, the test framework allows you to do a lot of other stuff, see the jmx subsystem test for some examples.
The wip lives at https://github.com/kabir/jboss-as/tree/subsystem-test-model-fixes
The above is standard text as I'm going through and creating tests. The test has been @Ignored due to a further failure once validation 'passes' (i.e. the validation is not run due to the flags set)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
[View Less]
13 years, 2 months
[JBoss JIRA] (AS7-2977) Add sun.io package to the sun.jdk module
by Robert Reimann (Created) (JIRA)
Add sun.io package to the sun.jdk module
----------------------------------------
Key: AS7-2977
URL: https://issues.jboss.org/browse/AS7-2977
Project: Application Server 7
Issue Type: Feature Request
Affects Versions: 7.1.0.Beta1
Reporter: Robert Reimann
Please add the sun.io package to the sun.jdk module to support IBM DB2 JDBC drivers. Current DB2 JDBC drivers require access to the sun.io package as described in http:/…
[View More]/www.ibm.com/developerworks/forums/message.jspa?messageID=14230275
Otherwise it is likely to get the following exception:
{com.ibm.db2.jcc.a.SqlException: [jcc][t4][10199][10462][4.0.100] Required character converter is not available. ERRORCODE=-4220, SQLSTATE=null
at com.ibm.db2.jcc.a.yc.a(yc.java:55)
at com.ibm.db2.jcc.a.yc.a(yc.java:119)
at com.ibm.db2.jcc.a.dc.a(dc.java:1788)
at com.ibm.db2.jcc.a.dc.n(dc.java:496)
at com.ibm.db2.jcc.a.dc.F(dc.java:1262)
at com.ibm.db2.jcc.a.mk.d(mk.java:938)
at com.ibm.db2.jcc.a.mk.getString(mk.java:916)
at com.ibm.db2.jcc.a.mk.getString(mk.java:1368)
at org.jboss.jca.adapters.jdbc.WrappedResultSet.getString(WrappedResultSet.java:1359)}
After adding the following path to the sun.jdk module descriptor ($JBOSS_HOME/modules/sun/jdk/main/module.xml), the required character converter classes are found and the application behaves as expected:
{<path name="sun/io"/>}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
[View Less]
13 years, 2 months