Log in to follow, share, and participate in this community.
Thread Broken JBossXB tests
Broken JBossXB testsSome of the JBossXB tests are broken in head. I don't see anything in JIRA or here that shows this is a known issue? e.g. the misc/sandbox test is broken because it is not applying the type defined in the xsd. (trie...
getting access to arbitrary contentJBoss AOP has the concept of generic metadata that you can apply to a class and/or the fields, constructors, methods of that class:
<metadata group="transaction" class="com.acme.MyBean">
<method name="so...
problems with multiple pluggable schema'sI have the following XML:
<aop xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:jboss:aop-deployer aop-deployer_1_1.xsd"
xmlns="urn:jboss:aop-deployer">
<interceptor name="...
Wildcard XSModel supportDuring my changes to support XSModel, I noticed that wildcard serialization requires a mapped uri to reparse. How do you feel about an attempted search of the current XSModel that is being processed? -Jason
Thread Unmarshalling without specifying the top schema
Unmarshalling without specifying the top schemaOne last issue with integrating the jbxb framework into the legacy SARDeployer is having to know the schema of the document root passed to the jbxb Unmarshaller. Since the SARDeployer does not use the jbxb Unmarshalle...
Thread ObjectModelFactory, schemas and type conversion
ObjectModelFactory, schemas and type conversionSo I was looking at adding the ignoreUnresolvedFieldOrClass setting to the jbxb:schemaBindings as an element, the addition to the jndi-binding-service_1_0.xsd being:
<xs:schema version="1.0beta"
attributeFormDe...
Thread Adding support for system property reference replacement
Adding support for system property reference replacementWe have so many places that depend on being able to replace system property references, this is going to be a roadblock to migrating configuration files over to parsing using the jbxb framework unless it also supports...
JBossEntityResolver updates neededThe current hard-coded publicID to dtd/xsd mapping in the JBossEntityResolver needs to be externalized to allow for augmenting with user schemas. I created the following feature request issue: http://jira.jboss.com/j...
Java object vs xml parse stackSo in going through the some debugging of the attribute defaults issue, I have a problem understanding the current relationship between the java object stack and the xml document parse stack. Let's start with the xsd ...
Mapping attributes with default valuesSee http://jira.jboss.com/jira/browse/JBXB-32 for an example issue. Currently if a schema defines attributes with default values, the defaults are not being set on the associated java object unless explicitly present ...
Thread Xerces 2.7.0 changes the XSImplementation implementation
Xerces 2.7.0 changes the XSImplementation implementationSo I'm trying to test the xerces 2.7.0 release and the compile fails because the org.apache.xerces.xs.XSImplementation has changed from org.apache.xerces.dom3.bootstrap.DOMImplementationRegistry to org.apache.xerces.i...
Supporting non-default ctorshttp://jira.jboss.com/jira/browse/JBXB-28 I created this issue to request support for non-default ctors for elements as its a common scenario for an existing object model to require that the immutable properties be p...
Mapping comments?Wouldn't it make sense to be able to map also the comments from an xml file to a POJO model, as well? (and the reverse) From a deployment point of view, this would allow reading, modifiying and writing back an existi...
Transparent location of document xsd filesOne ease of use issue I mentioned on the dev list is having to know how to obtain the xsd file for a given namespace's schema using the current schema driven binding api. The current testscases start with at least the...
JBoss web servicesGenerating artifacts that involve attachments with the wscompile tool is not very straightforward. Even though WS-I Basic Profile 1.0 (Part of J2EE 1.4) does not endorse attachments, JBossWS tools should provide suppo...
Inline bindings with jbxbI've been working on binding bean-deployer XSD to the corresponding Java classes. Current state can be tracked by checking out
package org.jboss.test.xml;
public class JbxbPojoServerUnitTestCase
The annotated sche...
Thread Need advice for AOP/Microcontainer XML integration
Need advice for AOP/Microcontainer XML integrationI'm currently writing a JBossXB implementation for AOP XML and wondering what approach I should take. Should I use the ObjectModelFactory or the SchemaBinding approach(what MC uses)? What I think will end up happenin...