Re: [Axis2] [XMLBeans] handling binary content with data binding

2005-09-01 Thread Davanum Srinivas
Ajith, Could you walk the schema stuff as mentioned here: http://mail-archives.apache.org/mod_mbox/xmlbeans-dev/200508.mbox/[EMAIL PROTECTED] The way I would do it is: compile the schemas using the API (XmlBeans.compileXmlBeans()) instead of using scomp, get a SchemaTypeSystem back and call

Re: [Axis2] [XMLBeans] handling binary content with data binding

2005-09-01 Thread Davanum Srinivas
Dennis, this is currently a research/hack effort. let's see what info we can extract and then we can decide what to do next. worst case, no mtom if you use databinding... thanks, dims On 9/1/05, Dennis Sosnoski [EMAIL PROTECTED] wrote: I may be misunderstanding how XMLBeans works, but I don't

Re: [Axis2] [XMLBeans] handling binary content with data binding

2005-09-01 Thread Ajith Ranabahu
Hi Dims, This is exactly the approach that I have taken. I never call 'scomp' :) . Instead the schema DOM element is fed into the XMLBeans.CompileXMLBeans() method to generate a schema type system and then from that I take the Document types (schemas) and a make a mapping. Have a look at the

Re: [Axis2] [XMLBeans] handling binary content with data binding

2005-09-01 Thread Davanum Srinivas
Ajith, we can't override what they generate, i just want us to note which elements are marked by the xmime stuff and do the needful at runtime (extract the contents that are base64'ed and then MTOM-it) -- dims On 9/1/05, Ajith Ranabahu [EMAIL PROTECTED] wrote: Hi Dims, This is exactly the