Log in to follow, share, and participate in this community.
Thread performance test of fast jaxb, xb, jaxb
performance test of fast jaxb, xb, jaxbI've added JAXB to the mix. And also modified the test a bit. There is ParsingCommand per framework (fast jaxb, xb and jaxb). run() method of each of them unmarshals Person object from the same person.xml one time. Th...
XB profiling during the AS start-upTo get an idea of what's taking time in XB during the AS start-up, I added simple time checks for three things: - creation of unmarshaller instances (parsers) - unmarshalling (parsing xml + assembling the Java graph) ...
Thread Error occures while trying to enqueue message (in xml format
Error occures while trying to enqueue message (in xml formatWe are working on Operation System Solaris: SunOS 5.9 with jdk1.5.0_11 jboss-4.0.5.GA Here is a problem: In our customer site occured some error, while trying to enqueue payload message (in xml format) into Oracle ...
Thread Property order cannot be defined on super type
Property order cannot be defined on super typeCould you please have a look/comment on https://jira.jboss.org/jira/browse/JBXB-210
Caused by: org.jboss.xb.binding.JBossXBRuntimeException: Property order is not specified for type org.jboss.osgi.blueprint.parser...
Thread How can I map an attribute to List of String
How can I map an attribute to List of StringThe value of the 'depends-on' attribute is a space delimited list of strings
* <xsd:complexType name="Tcomponent" abstract="true">
* <xsd:attribute name="id" type="xsd:ID" />
* <xsd:attribute name...
Thread @XmlType.propOrder required with no schema sequence
@XmlType.propOrder required with no schema sequence
Caused by: org.jboss.xb.binding.JBossXBRuntimeException: Property order is not specified for type org.jboss.osgi.blueprint.parser.xb.TRegistrationListener bound to a sequence. Property order can be specified u...
Thread Referencing the bean-deployer namespace from a custom metada
Referencing the bean-deployer namespace from a custom metadaIn the jboss-logging.xml deployer that I'm developing, I want to reuse the MC's "AbstractPropertyMetaData" type in order to represent arbitrary properties that can be set on jboss-logging entities. To that end I have ...
JBXB-206: Performance workTo follow up on the JIRA - the code as it stands currently is:
UnmarshallerFactory unmarshallerFactory = UnmarshallerFactory.newInstance();
Unmarshaller unmarshaller = unmarshallerFactory.newUnmarshaller();
Mut...
Thread JBossXB does not assign schema defined attribute defaults
JBossXB does not assign schema defined attribute defaults
[tdiesler@tdvaio blueprint]$ mvn -Dtest=BasicRootParserTestCase install
-------------------------------------------------------------------------------
Test set: org.jboss.test.osgi.blueprint.parser.BasicRoot...
JAXB annotations for OSGi Blueprint> JAXB annotations is the recommended way now. I looked at http://www.jboss.org/community/wiki/JBossXBPOTutorial but could not find a tutorial that uses JAXB annotations. Could you please provide one? Using ann...
JBoss XB on IBM VMHi Alexey, I am resolving some failures of AOP on IBMs VM for EAP 5, and seem to have run into an issue with JBoss XB. The problems are to do with deploying things like
<?xml version="1.0" encoding="UTF-8"?>...
multi-version, xsd/dtd, annotation, default namespace parserThere are some ra.xml files, they are 1.5/1.6 version, defined by xsd or DTD, some properties defined in annotation in the class and overrided in the xml, and maybe it use default namespace (see JBMETA-198/199) So ho...
Marshalling an AbstractKernelDeploymentI've been trying to marshal an AbstractKernelDeployment without success: AbstractKernelDeployment deployment = new AbstractKernelDeployment();
AbstractBeanMetaData beanMetaData = new AbstractBeanMetaData();
beanMe...
about JBMETA 198/199 > > The problem is there is no way to specify the namespace for the root > > element. So, this approach (hack in fact) will only work for DTDs and > > schemas with default namespace. Which is...
Thread Annotating a List which must appear as an element
Annotating a List which must appear as an elementGiven the following XML: <?xml version="1.0" encoding="UTF-8"?>
<jboss-mb xmlns="http://www.jboss.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.jbo...
SchemaResolverDeployer and JBossXBSo I'm trying to minimize the work I have to do inside my deployer chain by using the SchemaResolver as the base class. But I keep getting
Caused by: java.lang.Exception: The xml ra15inoutjbossra.rar/META-INF/ra.xm...
problem parsing sip.xml with JBossXBHi, First, sorry for the long post :-) We are currently porting our implementation of Sip Servlets (see http://www.mobicents.org/products_sip_servlets.html) on top of JBoss 5 (currently working on Tomcat and Jboss A...
Thread Registering an XSD for use by a SchemaResolverDeployer
Registering an XSD for use by a SchemaResolverDeployerAles says this is a JBossXB question, not a MC question, so here goes: Where can I put my .xsd file so that my SchemaResolverDeployer uses it for validation? If I put it in META-INF, will JBossXB (or something else) ...
Thread Integrating PropertyMetaData into another model
Integrating PropertyMetaData into another modelI tried reusing the mc beans PropertyMetaData/AbstractPropertyMetaData in a custom bean factory model I'm working on
@JBossXmlSchema(namespace="urn:jboss:proxied-mbean:1.0", elementFormDefault=XmlNsForm.QUALIFIED, ...