jibx

JiBX: Creating a marshaller for non-global elements?

So we have a given XSD such as this: <xsd:element name="SomeRequest"> <xsd:complexType> <xsd:sequence> <xsd:element name="RegistrationDetail" type="RegistrationDetailType" minOccurs="0" /> </xsd:sequence> </xsd:complexType> </xsd:element> <...

JIBX codegen customizations

Hi, What can I set into ... <xsd:element name = "body"> <xsd:complexType> <xsd:choice> <xsd:element ref = "AddTax"/> <xsd:element ref = "AddTaxResponse"/> <xsd:element ref = "AddData"/> <xsd:element ref = "AddDataResponse"/> ... I do not wish binding to be generated for AddData and AddDataresponse. All of these...

Is it safe to use bytecode enhancement techniques on classes that might be serialized and why?

I haven't tried this yet, but it seems risky. The case I'm thinking of is instrumenting simple VO classes with JiBX. These VOs are going to be serialized over AMF and possibly other schemes. Can anyone confirm or deny my suspicions that doing behind-the-back stuff like bytecode enhancement might mess something up in general, and provi...