Re: Which ORM and XML binding

2007-11-13 Thread Boudigué Alioum
Hi Mansour, Please take a look at https://hyperjaxb.dev.java.net/ Maybe, it can give you some inspiration. It has nothing to do with XMLBeans, but with JAXB. regards, alioum > -Ursprüngliche Nachricht- > Von: user@xmlbeans.apache.org > Gesendet: 14.11.07 06:14:55 > An: user@xmlbeans.a

Re: Which ORM and XML binding

2007-11-13 Thread Jacob Danner
>From previous posting on teh mailing list it sounds like some folks have had some success with hibernate. I can't say I've needed to do what you are describing, but it should be possible with some additional impl on your part. As far as managing the database side of things, XMLBeans doesn't do any

Re: Which ORM and XML binding

2007-11-13 Thread Mansour
If there's something not clear about my question, then please let me know. Mansour wrote: Hello every one: I am new to xmlbeans, and before I start reading and try to learn about it I need to know which ORM plays well with XMLBeans. First thing, I have a huge number of XML schema files that con

RE: Controlling encoding/escaping of an attribute

2007-11-13 Thread Wing Yew Poon
Garth, what you need is XmlOptionCharEscapeMap. See http://xmlbeans.apache.org/docs/2.1.0/reference/org/apache/xmlbeans/XmlO ptionCharEscapeMap.html. E.g., XmlOptionCharEscapeMap escapes = new XmlOptionCharEscapeMap(); escapes.addMapping('A', XmlOptionCharEscapeMap.HEXADECIMAL);

Controlling encoding/escaping of an attribute

2007-11-13 Thread Garth Patil
Hi, I am using xmlbeans to generate the xml that is posted to a web service. The web service provider is rather picky about the encoding/escaping of the content of one of the attributes. Particularly, they ask that line feeds be terminated by For example: If I try to just use a \r\n or a \n

Working with multiple namespace.

2007-11-13 Thread Youssef
hi everyone, in my schema, i have an element that extends an other element from an other namespace like this: the house type in foo namespace is:

SchemaType - get annotation for Element

2007-11-13 Thread berthold . scheuringer
Hi all, I ´m pretty new to XmlBeans and try to exctract the annotation information for XmlBenas from Xml-Schema in a generic way. Now I encountered the problem that I don´t get annotation information for XmlBenas with SchemaType Element (myObj.schemaType().getAnnotation() returns null). Wh

Re: Parsing from input stream

2007-11-13 Thread Balakumar Narayanasamy
Hi Jacob, Actually the problem is on back end which is has send the junk characters. So it is not a java or xml problem. Thanks, Balakumar, N Jacob Danner-2 wrote: > > Is there additional content at the start of the file? > can you check the start of the contents of the stream too? i.e, I > thi