History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: XFIRE-92
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Dan Diephouse
Reporter: Christoph Sturm
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
XFire

let aegis handle xmlbeans (and other marshalling frameworks)

Created: 17/Jun/05 01:30 PM   Updated: 04/Jul/05 12:50 PM
Component/s: None
Affects Version/s: None
Fix Version/s: 1.0-M5

Time Tracking:
Not Specified


 Description  « Hide
it would be cool if aegis could use xmlbeans for marshalling and unmarshalling.we could then mix normal java types with schema types.

 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Dan Diephouse - 17/Jun/05 01:33 PM
XMLBeans used to use aegis see:

http://cvs.xfire.codehaus.org/viewrep/xfire/xfire/xfire-xmlbeans/src/main/org/codehaus/xfire/xmlbeans/XMLBeansType.java?r=1.6

I think what could happen is you could write a TypeCreator which would be responsilbe for creating the XMLBeans type. Override getDefaultType() to look something like this:

if (XmlObject.class.isAssignableFrom(typeClass))
{
return new XMLBeansType()
}
else
{
return nextCreator.createDefaultType(...);
}


Dan Diephouse - 04/Jul/05 12:50 PM
This works now in CVS