[prev in list] [next in list] [prev in thread] [next in thread] 

List:       xmlbeans-user
Subject:    Re: Parsing an XML fragment
From:       "Pascal Maugeri" <pascal.maugeri () gmail ! com>
Date:       2008-05-02 18:35:11
Message-ID: 990aed650805021135v4d45c0a3n1a6303c10135a41b () mail ! gmail ! com
[Download RAW message or body]

:-O What a mistake on my part ! Sorry for that ...

Everything works pretty well now. Thank you Radu for your great help.

Regards
Pascal



On Fri, May 2, 2008 at 2:07 AM, Radu Preotiuc-Pietro <radup@bea.com> wrote:

>  Hi Pascal,
>
> You have to decide whether "uri" is an element or an attribute. In your
> original example it was an attribute, but in the Schema you send it shows
> it's an element. If it is element, obviously, your XML would have to look
> like (it has nothing to do with fragments):
>
>         String xml = "<ns:element xmlns:ns=\"
> http://www.example.org/docelement\ <http://www.example.org/docelement%5C>
> "><ns:uri>www.apache.org</ns:uri></ns:element>";
> Radu
>
>  ------------------------------
> *From:* Pascal Maugeri [mailto:pascal.maugeri@gmail.com]
> *Sent:* Thursday, May 01, 2008 1:54 PM
>
> *To:* user@xmlbeans.apache.org
> *Subject:* Re: Parsing an XML fragment
>
> Hi Radu
>
> There is some progress here...
>
> I did modified the xml as you recommended and the following code:
>
>         String xml = "<ns:element uri=\"www.apache.org\" xmlns:ns=\"
> http://www.example.org/docelement\ <http://www.example.org/docelement%5C>
> "/>";
>         XmlOptions xmlOptions = new
> XmlOptions().setDocumentType(DocDocument.Doc.type);
>         DocDocument.Doc doc = (DocDocument.Doc)
> XmlObject.Factory.parse(xml, xmlOptions);
>         System.out.println(doc.toString());
>         System.out.println(doc.getElement().toString());
>         System.out.println(doc.getElement().getUri());
>
> outputs:
>
> <ns:element uri="www.apache.org" xmlns:ns="
> http://www.example.org/docelement"/>
> <xml-fragment uri="www.apache.org" xmlns:ns="
> http://www.example.org/docelement"/>
> null
>
> As you can see the doc.getElement.getUri() still returns null :-(
>
> I've played around with the schema, for instance I switched
> elementFormDefault to "unqualified":
>
>         String xml = "<element uri=\"www.apache.org\"/>";
>         XmlOptions xmlOptions = new
> XmlOptions().setDocumentType(DocDocument.Doc.type);
>         DocDocument.Doc doc = (DocDocument.Doc)
> XmlObject.Factory.parse(xml, xmlOptions);
>         System.out.println(doc.toString());
>         System.out.println(doc.getElement().toString());
>         System.out.println(doc.getElement().getUri());
>
> outputs:
>
> <element uri="www.apache.org"/>
> <xml-fragment uri="www.apache.org"/>
> null
>
> I get the same results (doc.getElement().getUri() is null).
>
> I also tried with attributeFormDefault="unqualified" with no success
> neither:
>
>         String xml = "<ns:element ns:uri=\"www.apache.org\" xmlns:ns=\"
> http://www.example.org/docelement\ <http://www.example.org/docelement%5C>
> "/>";
>         XmlOptions xmlOptions = new
> XmlOptions().setDocumentType(DocDocument.Doc.type);
>         DocDocument.Doc doc = (DocDocument.Doc)
> XmlObject.Factory.parse(xml, xmlOptions);
>         System.out.println(doc.toString());
>         System.out.println(doc.getElement().toString());
>         System.out.println(doc.getElement().getUri());
>
> Do you have any idea why I can't access the element attribute ?
>
> Thanks
> Pascal
>
> On Thu, May 1, 2008 at 1:09 AM, Radu Preotiuc-Pietro <radup@bea.com>
> wrote:
>
> > Yep, in your Schema you have elementFormDefault="qualified". So this
> > means your doc fragment has to look like:
> >
> > String xml = "<ns:element uri=\"www.apache.org\" xmlns:ns=
> > \"http://www.example.org/docelement\<http://www.example.org/docelement%5C>
> > "/>";
> >
> > Radu
> >
> > On Wed, 2008-04-30 at 15:07 +0200, Pascal Maugeri wrote:
> > > Hi Radu
> > >
> > > Sorry again to comment on this issue but I do not find the same
> > > results as yours.
> > >
> > > with the following source code:
> > >
> > >         String xml = "<element uri=\"www.apache.org\"/>";
> > >         XmlOptions xmlOptions = new
> > > XmlOptions().setDocumentType(DocDocument.Doc.type);
> > >         DocDocument.Doc doc = (DocDocument.Doc)
> > > XmlObject.Factory.parse(xml, xmlOptions);
> > >         System.out.println(doc.toString());
> > >         System.out.println(doc.getElement().toString());
> > >
> > > The first sysout prints the correct result:
> > >
> > >   <element uri="www.apache.org"/>
> > >
> > > The last sysout throws a NullPointerException because doc.getElement()
> > > returns null
> > >
> > >   java.lang.NullPointerException
> > >       at
> > > xmlbeans.ParsingXmlFragment.<init>(ParsingXmlFragment.java:17)
> > >       at xmlbeans.ParsingXmlFragment.main(ParsingXmlFragment.java:22)
> > >
> > > I've attached to this email the beans jar I've generated and the piece
> > > of code I tested. If you want to dedicate more time to this issue it
> > > may be interesting to execute it in your environment. Please confirm
> > > me that you do not get the exception.
> > >
> > > Regards,
> > > Pascal
> > >
> > >
> > >
> > > On Tue, Apr 29, 2008 at 2:27 AM, Radu Preotiuc-Pietro <radup@bea.com>
> > > wrote:
> > >         Actually, I have made some experiments myself and you may have
> > >         success
> > >         with something like:
> > >
> > >         DocDocument.Doc doc = (DocDocument.Doc)
> > >         XmlObject.Factory.parse(new
> > >         File("test.xml"), new
> > >         XmlOptions().setDocumentType(DocDocument.Doc.type));
> > >
> > >         to parse from the <element> level.
> > >
> > >         Let me know if this works for you,
> > >         Radu
> > >
> > >
> > >         > -----Original Message-----
> > >         > From: Jim the Standing Bear [mailto:standingbear@gmail.com]
> > >         > Sent: Monday, April 28, 2008 8:38 AM
> > >         > To: user@xmlbeans.apache.org
> > >         > Subject: Re: Parsing an XML fragment
> > >         >
> > >         > I ran into the same problem and toyed around it over the
> > >         weekend.
> > >         > what I found out was that it helps if you parse it from "a
> > >         level up".
> > >         >
> > >         > So in your case, you would have to parse it from the
> > >         Document
> > >         > level, since that is the only thing above "Element" nodes.
> > >         >
> > >         > In other words, doing
> > >         > Doc.Factory.parse(xml).getDoc().getElement().getUri() is the
> > >         > way to go.  However, you said you needed to parse from
> > >         > Element level - is there any constraints that force you to
> > >         > parse from Element level?
> > >         >
> > >         > HTH
> > >         >
> > >         > Jim
> > >         >
> > >         >
> > >         >
> > >         > On Mon, Apr 28, 2008 at 6:17 AM, Pascal Maugeri
> > >         > <pascal.maugeri@gmail.com> wrote:
> > >         > > Radu
> > >         > >
> > >         > > You're right in the example below the <element> is not a
> > >         > global schema type.
> > >         > >
> > >         > > So what should I do if a server (XCAP server) sends me
> > >         this
> > >         > XML fragment:
> > >         > >
> > >         > >
> > >         > > <element uri="www.apache.org"/>
> > >         > >
> > >         > > and I want to parse it having the xml beans set from the
> > >         > corresponding
> > >         > > schema ?
> > >         > >
> > >         > > Is there a way to do that ?
> > >         > >
> > >         > > Regards,
> > >         > > Pascal
> > >         > >
> > >         > >
> > >         > >
> > >         > >
> > >         > > On Sat, Apr 19, 2008 at 3:35 AM, Radu Preotiuc-Pietro
> > >         > <radup@bea.com> wrote:
> > >         > >
> > >         > > > I'd have to see the Schema to be able to figure out the
> > >         name of
> > >         > > > elements and types and what the exact code should look
> > >         > like. I think
> > >         > > > that your problem might be that <element> is not a
> > >         global Schema
> > >         > > > type and so auto-typing doesn't work if at the root
> > >         level
> > >         > (in other
> > >         > > > words, Schema doesn't allow <element> to be a top-level
> > >         element).
> > >         > > >
> > >         > > > But even then, you should not have to parse and save to
> > >         > String only
> > >         > > > to parse again.
> > >         > > >
> > >         > > > Radu
> > >         > > >
> > >         > > >
> > >         > > >
> > >         > > >
> > >         > > > On Tue, 2008-04-08 at 06:49 -0700, Pascal Maugeri wrote:
> > >         > > > > Hi
> > >         > > > >
> > >         > > > > I would like to have a clarification about the parsing
> > >         of a XML
> > >         > > > > fragment.
> > >         > > > >
> > >         > > > > For instance, having the following XML document, I
> > >         want
> > >         > to obtain
> > >         > > > > the "uri" attribute value:
> > >         > > > >
> > >         > > > >   <?xml version="1.0" encoding="UTF-8"?>
> > >         > > > >   <doc>
> > >         > > > >      <element uri="www.apache.org"/>
> > >         > > > >   </doc>
> > >         > > > >
> > >         > > > > with
> > >         > > > >
> > >         Doc.Factory.parse(xml).getDoc().getElement().getUri()
> > >         > > > > it returns the attribute value.
> > >         > > > >
> > >         > > > > but with
> > >         > > > >   Element.Factory.parse("<element
> > >         > > > > uri=\"www.apache.org\"/>").getUri()
> > >         > > > > it returns null, also a call to
> > >         Element.Factory.parse("<element
> > >         > > > > uri=
> > >         > > > > \"www.apache.org\"/>").toString() returns the XML
> > >         content.
> > >         > > > >
> > >         > > > > As I do need to parse XML fragment such as this
> > >         > "element", I have
> > >         > > > > found the following workaround:
> > >         > > > > a) I get the String representation of the Element (eg.
> > >         > > > > Element.Factory.parse(...).toString() ),
> > >         > > > > b) I insert the result of (a) into a container
> > >         <doc>...</doc>
> > >         > > > > c) then I parse the result of (b) with the
> > >         > Doc.Factory.parse( (b)
> > >         > > > > ).getDoc().getElement().getUri() and it does work.
> > >         > > > > ... also I'm not very proud of myself :-)
> > >         > > > >
> > >         > > > > Could you explain why I can't access the attributes of
> > >         a XML
> > >         > > > > fragment I parsed ?
> > >         > > > >
> > >         > > > > I there a better/cleaner workaround than the one
> > >         above ?
> > >         > > > >
> > >         > > > > Thanks in advance for your help
> > >         > > > > Pascal
> > >         > > >
> > >         > > > Notice:  This email message, together with any
> > >         attachments, may
> > >         > > > contain
> > >         > > information  of  BEA Systems,  Inc.,  its subsidiaries
> > >          and
> > >         > > affiliated entities,  that may be confidential,
> > >          proprietary,
> > >         > > copyrighted  and/or legally privileged, and is intended
> > >         > solely for the
> > >         > > use of the individual or entity named in this message. If
> > >         > you are not
> > >         > > the intended recipient, and have received this message in
> > >         error,
> > >         > > please immediately return this by email and then delete
> > >         it.
> > >         > > >
> > >         > > >
> > >         >
> > >
> > --------------------------------------------------------------------
> > >         > > > - To unsubscribe, e-mail:
> > >         user-unsubscribe@xmlbeans.apache.org
> > >         > > > For additional commands, e-mail:
> > >         user-help@xmlbeans.apache.org
> > >         > > >
> > >         > > >
> > >         > >
> > >         > >
> > >         >
> > >         >
> > >         >
> > >         > --
> > >         > --------------------------------------
> > >         > Standing Bear Has Spoken
> > >         > --------------------------------------
> > >         >
> > >         >
> > >
> > ---------------------------------------------------------------------
> > >         > To unsubscribe, e-mail: user-unsubscribe@xmlbeans.apache.org
> > >         > For additional commands, e-mail:
> > >         user-help@xmlbeans.apache.org
> > >         >
> > >         >
> > >
> > >         Notice:  This email message, together with any attachments,
> > >         may contain information  of  BEA Systems,  Inc.,  its
> > >         subsidiaries  and  affiliated entities,  that may be
> > >         confidential,  proprietary,  copyrighted  and/or legally
> > >         privileged, and is intended solely for the use of the
> > >         individual or entity named in this message. If you are not the
> > >         intended recipient, and have received this message in error,
> > >         please immediately return this by email and then delete it.
> > >
> > >
> > ---------------------------------------------------------------------
> > >         To unsubscribe, e-mail: user-unsubscribe@xmlbeans.apache.org
> > >         For additional commands, e-mail: user-help@xmlbeans.apache.org
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: user-unsubscribe@xmlbeans.apache.org
> > > For additional commands, e-mail: user-help@xmlbeans.apache.org
> >
> > Notice:  This email message, together with any attachments, may contain
> > information  of  BEA Systems,  Inc.,  its subsidiaries  and  affiliated
> > entities,  that may be confidential,  proprietary,  copyrighted  and/or
> > legally privileged, and is intended solely for the use of the individual or
> > entity named in this message. If you are not the intended recipient, and
> > have received this message in error, please immediately return this by email
> > and then delete it.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@xmlbeans.apache.org
> > For additional commands, e-mail: user-help@xmlbeans.apache.org
> >
> >
>
> Notice: This email message, together with any attachments, may contain
> information of BEA Systems, Inc., its subsidiaries and affiliated entities,
> that may be confidential, proprietary, copyrighted and/or legally
> privileged, and is intended solely for the use of the individual or entity
> named in this message. If you are not the intended recipient, and have
> received this message in error, please immediately return this by email and
> then delete it.
>

[Attachment #3 (text/html)]

> -O What a mistake on my part ! Sorry for that ...<br><br>Everything works pretty \
> well now. Thank you Radu for your great \
> help.<br><br>Regards<br>Pascal<br><br><br><br><div class="gmail_quote">On Fri, May \
> 2, 2008 at 2:07 AM, Radu Preotiuc-Pietro &lt;<a \
> href="mailto:radup@bea.com">radup@bea.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); \
margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



<div>
<div dir="ltr" align="left"><span><font color="#0000ff" face="Arial" size="2">Hi \
Pascal,</font></span></div> <div dir="ltr" align="left"><span><font color="#0000ff" \
face="Arial" size="2"></font></span>&nbsp;</div> <div dir="ltr" \
align="left"><span><font color="#0000ff" face="Arial" size="2">You have to decide \
whether &quot;uri&quot; is an element or an  attribute. In your original example it \
was an attribute, but in the Schema you  send it shows it&#39;s an element. If it is \
element, obviously, your XML would have  to look like (it has nothing to do with \
fragments):</font></span></div> <div dir="ltr" align="left"><span><font \
color="#0000ff" face="Arial" size="2"></font></span>&nbsp;</div> <div dir="ltr" \
align="left"><span><font color="#0000ff" face="Arial" \
size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String xml =  \
&quot;&lt;ns:element  xmlns:ns=\&quot;<a href="http://www.example.org/docelement%5C" \
target="_blank">http://www.example.org/docelement\</a>&quot;&gt;&lt;ns:uri&gt;<a \
href="http://www.apache.org" \
target="_blank">www.apache.org</a>&lt;/ns:uri&gt;&lt;/ns:element&gt;&quot;;<br> \
</font></span></div> <div dir="ltr" align="left"><span><font color="#0000ff" \
face="Arial" size="2">Radu</font></span></div><br> <blockquote style="border-left: \
2px solid rgb(0, 0, 255); padding-left: 5px; margin-left: 5px; margin-right: 0px;">  \
<div dir="ltr" align="left" lang="en-us">  <hr>
  <font face="Tahoma" size="2"><div class="Ih2E3d"><b>From:</b> Pascal Maugeri 
  [mailto:<a href="mailto:pascal.maugeri@gmail.com" \
target="_blank">pascal.maugeri@gmail.com</a>] <br></div><b>Sent:</b> Thursday, May \
01, 2008 1:54   PM<div><div></div><div class="Wj3C7c"><br><b>To:</b> <a \
href="mailto:user@xmlbeans.apache.org" \
target="_blank">user@xmlbeans.apache.org</a><br><b>Subject:</b> Re: Parsing an   XML \
fragment<br></div></div></font><br></div><div><div></div><div class="Wj3C7c">  \
<div></div>Hi Radu<br><br>There is some progress here...<br><br>I did modified   the \
xml as you recommended and the following code:<br><br>&nbsp;&nbsp;&nbsp;   \
&nbsp;&nbsp;&nbsp; String xml = &quot;&lt;ns:element uri=\&quot;www.apache.org\&quot; \
  xmlns:ns=\&quot;<a href="http://www.example.org/docelement%5C" \
target="_blank">http://www.example.org/docelement\</a>&quot;/&gt;&quot;;<br>&nbsp;&nbsp;&nbsp; \
  &nbsp;&nbsp;&nbsp; XmlOptions xmlOptions = new 
  XmlOptions().setDocumentType(DocDocument.Doc.type);<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; DocDocument.Doc doc = (DocDocument.Doc) 
  XmlObject.Factory.parse(xml, xmlOptions);<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; System.out.println(doc.toString()); <br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; 
  System.out.println(doc.getElement().toString());<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; 
  System.out.println(doc.getElement().getUri());<br><br>outputs:<br><br>
  <div style="margin-left: 40px;">&lt;ns:element uri=&quot;<a \
href="http://www.apache.org" target="_blank">www.apache.org</a>&quot; \
xmlns:ns=&quot;<a href="http://www.example.org/docelement" \
target="_blank">http://www.example.org/docelement</a>&quot;/&gt;<br> &lt;xml-fragment \
  uri=&quot;<a href="http://www.apache.org" target="_blank">www.apache.org</a>&quot; \
xmlns:ns=&quot;<a href="http://www.example.org/docelement" \
target="_blank">http://www.example.org/docelement</a>&quot;/&gt;<br>null<br> \
</div><br>As   you can see the doc.getElement.getUri() still returns null \
:-(<br><br>I&#39;ve   played around with the schema, for instance I switched \
elementFormDefault to   &quot;unqualified&quot;:<br><br>&nbsp;&nbsp;&nbsp; \
&nbsp;&nbsp;&nbsp; String xml =   &quot;&lt;element \
uri=\&quot;www.apache.org\&quot;/&gt;&quot;;<br>&nbsp;&nbsp;&nbsp;   \
&nbsp;&nbsp;&nbsp; XmlOptions xmlOptions = new   \
XmlOptions().setDocumentType(DocDocument.Doc.type);<br>&nbsp;&nbsp;&nbsp;   \
&nbsp;&nbsp;&nbsp; DocDocument.Doc doc = (DocDocument.Doc)   \
XmlObject.Factory.parse(xml, xmlOptions);<br>&nbsp;&nbsp;&nbsp;   &nbsp;&nbsp;&nbsp; \
System.out.println(doc.toString());<br>&nbsp;&nbsp;&nbsp;   &nbsp;&nbsp;&nbsp; 
  System.out.println(doc.getElement().toString());<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; 
  System.out.println(doc.getElement().getUri());<br><br>outputs:<br><br>
  <div style="margin-left: 40px;">&lt;element uri=&quot;<a \
href="http://www.apache.org" \
target="_blank">www.apache.org</a>&quot;/&gt;<br>&lt;xml-fragment   uri=&quot;<a \
href="http://www.apache.org" \
target="_blank">www.apache.org</a>&quot;/&gt;<br>null<br></div><br>I   get the same \
results (doc.getElement().getUri() is null).<br><br>I also tried   with \
attributeFormDefault=&quot;unqualified&quot; with no success   \
neither:<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; String xml =   \
&quot;&lt;ns:element ns:uri=\&quot;www.apache.org\&quot; xmlns:ns=\&quot;<a \
href="http://www.example.org/docelement%5C" \
target="_blank">http://www.example.org/docelement\</a>&quot;/&gt;&quot;;<br>&nbsp;&nbsp;&nbsp; \
  &nbsp;&nbsp;&nbsp; XmlOptions xmlOptions = new 
  XmlOptions().setDocumentType(DocDocument.Doc.type);<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; DocDocument.Doc doc = (DocDocument.Doc) 
  XmlObject.Factory.parse(xml, xmlOptions);<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; System.out.println(doc.toString());<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; 
  System.out.println(doc.getElement().toString());<br>&nbsp;&nbsp;&nbsp; 
  &nbsp;&nbsp;&nbsp; System.out.println(doc.getElement().getUri());<br><br>Do 
  you have any idea why I can&#39;t access the element attribute 
  ?<br><br>Thanks<br>Pascal<br><br>
  <div class="gmail_quote">On Thu, May 1, 2008 at 1:09 AM, Radu Preotiuc-Pietro 
  &lt;<a href="mailto:radup@bea.com" target="_blank">radup@bea.com</a>&gt; wrote:<br>
  <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); \
margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Yep,   in your Schema you have \
elementFormDefault=&quot;qualified&quot;. So this<br>means   your doc fragment has to \
look like:<br><br>String xml = &quot;&lt;ns:element   \
uri=\&quot;www.apache.org\&quot; xmlns:ns=<br>\&quot;<a \
href="http://www.example.org/docelement%5C" \
target="_blank">http://www.example.org/docelement\</a>&quot;/&gt;&quot;;<br><font \
color="#888888"><br>Radu<br></font>  <div>
    <div></div>
    <div><br>On Wed, 2008-04-30 at 15:07 +0200, Pascal Maugeri 
    wrote:<br>&gt; Hi Radu<br>&gt;<br>&gt; Sorry again to comment on this issue 
    but I do not find the same<br>&gt; results as yours.<br>&gt;<br>&gt; with 
    the following source code:<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    String xml = &quot;&lt;element \
uri=\&quot;www.apache.org\&quot;/&gt;&quot;;<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; \
XmlOptions xmlOptions = new<br>&gt;   \
XmlOptions().setDocumentType(DocDocument.Doc.type);<br>&gt; &nbsp; &nbsp;   &nbsp; \
&nbsp; DocDocument.Doc doc = (DocDocument.Doc)<br>&gt;   XmlObject.Factory.parse(xml, \
xmlOptions);<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; \
System.out.println(doc.toString());<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; \
System.out.println(doc.getElement().toString());<br>&gt;<br>&gt; The   first sysout \
prints the correct result:<br>&gt;<br>&gt; &nbsp; &lt;element   uri=&quot;<a \
href="http://www.apache.org" \
target="_blank">www.apache.org</a>&quot;/&gt;<br>&gt;<br>&gt; The last sysout   \
throws a NullPointerException because doc.getElement()<br>&gt; returns   \
null<br>&gt;<br>&gt; &nbsp; java.lang.NullPointerException<br>&gt; &nbsp;   &nbsp; \
&nbsp; at<br>&gt;   xmlbeans.ParsingXmlFragment.&lt;init&gt;(ParsingXmlFragment.java:17)<br>&gt; \
  &nbsp; &nbsp; &nbsp; at 
    xmlbeans.ParsingXmlFragment.main(ParsingXmlFragment.java:22)<br>&gt;<br>&gt; 
    I&#39;ve attached to this email the beans jar I&#39;ve generated and the 
    piece<br>&gt; of code I tested. If you want to dedicate more time to this 
    issue it<br>&gt; may be interesting to execute it in your environment. 
    Please confirm<br>&gt; me that you do not get the exception.<br>&gt;<br>&gt; 
    Regards,<br>&gt; Pascal<br>&gt;<br>&gt;<br>&gt;<br>&gt; On Tue, Apr 29, 2008 
    at 2:27 AM, Radu Preotiuc-Pietro &lt;<a href="mailto:radup@bea.com" \
target="_blank">radup@bea.com</a>&gt;<br>&gt; wrote:<br>&gt;   &nbsp; &nbsp; &nbsp; \
&nbsp; Actually, I have made some experiments myself   and you may have<br>&gt; \
&nbsp; &nbsp; &nbsp; &nbsp; success<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; with \
something like:<br>&gt;<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; DocDocument.Doc doc = \
(DocDocument.Doc)<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; \
XmlObject.Factory.parse(new<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; \
File(&quot;test.xml&quot;), new<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   \
XmlOptions().setDocumentType(DocDocument.Doc.type));<br>&gt;<br>&gt; &nbsp;   &nbsp; \
&nbsp; &nbsp; to parse from the &lt;element&gt;   level.<br>&gt;<br>&gt; &nbsp; \
&nbsp; &nbsp; &nbsp; Let me know if this works   for you,<br>&gt; &nbsp; &nbsp; \
&nbsp; &nbsp; Radu<br>&gt;<br>&gt;<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; &gt; \
-----Original Message-----<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; &gt; From: Jim the \
Standing Bear [mailto:<a href="mailto:standingbear@gmail.com" \
target="_blank">standingbear@gmail.com</a>]<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; \
&gt; Sent: Monday, April 28, 2008 8:38   AM<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; \
To: <a href="mailto:user@xmlbeans.apache.org" \
target="_blank">user@xmlbeans.apache.org</a><br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; \
&gt; Subject: Re: Parsing an XML   fragment<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; \
&gt;<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; &gt; I ran into the same problem and toyed \
around it over   the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; weekend.<br>&gt; &nbsp; \
&nbsp;   &nbsp; &nbsp; &gt; what I found out was that it helps if you parse it from 
    &quot;a<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; level up&quot;.<br>&gt; &nbsp; &nbsp; \
  &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; So in your case, 
    you would have to parse it from the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    Document<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; level, since that is the 
    only thing above &quot;Element&quot; nodes.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; In other words, doing<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; 
    Doc.Factory.parse(xml).getDoc().getElement().getUri() is the<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; way to go. &nbsp;However, you said you needed to 
    parse from<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Element level - is there 
    any constraints that force you to<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 
    parse from Element level?<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; HTH<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Jim<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; On Mon, 
    Apr 28, 2008 at 6:17 AM, Pascal Maugeri<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &gt; &lt;<a href="mailto:pascal.maugeri@gmail.com" \
target="_blank">pascal.maugeri@gmail.com</a>&gt;   wrote:<br>&gt; &nbsp; &nbsp; \
&nbsp; &nbsp; &gt; &gt; Radu<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; &gt; &gt;<br>&gt; \
&nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;   You&#39;re right in the example below the \
&lt;element&gt; is not a<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; &gt; global schema \
type.<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; \
&nbsp; &gt; &gt; So   what should I do if a server (XCAP server) sends me<br>&gt; \
&nbsp; &nbsp;   &nbsp; &nbsp; this<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; XML 
    fragment:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; 
    &lt;element uri=&quot;<a href="http://www.apache.org" \
target="_blank">www.apache.org</a>&quot;/&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   \
&gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; and I want to parse   it \
having the xml beans set from the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   &gt; \
corresponding<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; schema   ?<br>&gt; &nbsp; \
&nbsp; &nbsp; &nbsp; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; &gt; &gt; Is \
there a way to do that ?<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; &gt; &gt;<br>&gt; \
&nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;   Regards,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; \
&gt; &gt; Pascal<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; &gt; &gt;<br>&gt; &nbsp; \
&nbsp; &nbsp; &nbsp; &gt;   &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; \
&gt;<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; \
&nbsp; &gt; &gt; On   Sat, Apr 19, 2008 at 3:35 AM, Radu Preotiuc-Pietro<br>&gt; \
&nbsp; &nbsp;   &nbsp; &nbsp; &gt; &lt;<a href="mailto:radup@bea.com" \
target="_blank">radup@bea.com</a>&gt;   wrote:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; \
&gt; &gt;<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; &gt; &gt; &gt; I&#39;d have to see \
the Schema to be able to figure   out the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; name \
of<br>&gt; &nbsp; &nbsp;   &nbsp; &nbsp; &gt; &gt; &gt; elements and types and what \
the exact code   should look<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; like. I \
think<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; that your problem might be \
that   &lt;element&gt; is not a<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; global 
    Schema<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; type and so 
    auto-typing doesn&#39;t work if at the root<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    level<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; (in other<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; words, Schema doesn&#39;t allow 
    &lt;element&gt; to be a top-level<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    element).<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; But even then, you should not have to 
    parse and save to<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; String 
    only<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; to parse 
    again.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; Radu<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; On 
    Tue, 2008-04-08 at 06:49 -0700, Pascal Maugeri wrote:<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; &gt; &gt; &gt; &gt; Hi<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &gt; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; 
    I would like to have a clarification about the parsing<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; of a XML<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; 
    &gt; fragment.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; 
    &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; For instance, 
    having the following XML document, I<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    want<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; to obtain<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; the &quot;uri&quot; attribute \
value:<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt;<br>&gt; &nbsp; \
&nbsp; &nbsp;   &nbsp; &gt; &gt; &gt; &gt; &nbsp; &lt;?xml version=&quot;1.0&quot; 
    encoding=&quot;UTF-8&quot;?&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; \
&gt;   &gt; &nbsp; &lt;doc&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; 
    &gt; &nbsp; &nbsp; &nbsp;&lt;element uri=&quot;<a href="http://www.apache.org" \
target="_blank">www.apache.org</a>&quot;/&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   \
&gt; &gt; &gt; &gt; &nbsp; &lt;/doc&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   &gt; \
&gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt;   with<br>&gt; \
&nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt;<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; \
  Doc.Factory.parse(xml).getDoc().getElement().getUri()<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; &gt; &gt; &gt; &gt; it returns the attribute value.<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; &gt; &gt; &gt; &gt; but with<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 
    &gt; &gt; &gt; &nbsp; Element.Factory.parse(&quot;&lt;element<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; 
    uri=\&quot;www.apache.org\&quot;/&gt;&quot;).getUri()<br>&gt; &nbsp; &nbsp; \
&nbsp; &nbsp;   &gt; &gt; &gt; &gt; it returns null, also a call to<br>&gt; &nbsp; \
&nbsp;   &nbsp; &nbsp; Element.Factory.parse(&quot;&lt;element<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; &gt; &gt; &gt; &gt; uri=<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &gt; &gt; &gt; &gt; \&quot;www.apache.org\&quot;/&gt;&quot;).toString() returns \
the   XML<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; content.<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; &gt; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 
    &gt; &gt; &gt; As I do need to parse XML fragment such as this<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &quot;element&quot;, I have<br>&gt; &nbsp; \
&nbsp;   &nbsp; &nbsp; &gt; &gt; &gt; &gt; found the following workaround:<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; a) I get the String 
    representation of the Element (eg.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 
    &gt; &gt; &gt; Element.Factory.parse(...).toString() ),<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; b) I insert the result of (a) into 
    a container<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    &lt;doc&gt;...&lt;/doc&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; 
    &gt; &gt; c) then I parse the result of (b) with the<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; &gt; Doc.Factory.parse( (b)<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; &gt; &gt; &gt; &gt; ).getDoc().getElement().getUri() and it does 
    work.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; ... also I&#39;m 
    not very proud of myself :-)<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; 
    &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; Could you 
    explain why I can&#39;t access the attributes of<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; a XML<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; 
    fragment I parsed ?<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; 
    &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; I there a 
    better/cleaner workaround than the one<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    above ?<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt;<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; Thanks in advance for your 
    help<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; &gt; Pascal<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; &gt; &gt; &gt; Notice: &nbsp;This email message, together with 
    any<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; attachments, may<br>&gt; &nbsp; 
    &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; contain<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; &gt; &gt; information &nbsp;of &nbsp;BEA Systems, &nbsp;Inc., 
    &nbsp;its subsidiaries<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;and<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; affiliated entities, &nbsp;that may be 
    confidential,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;proprietary,<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; copyrighted &nbsp;and/or legally 
    privileged, and is intended<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; solely 
    for the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; use of the individual 
    or entity named in this message. If<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 
    you are not<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; the intended 
    recipient, and have received this message in<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; error,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; please 
    immediately return this by email and then delete<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; it.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; 
    &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    --------------------------------------------------------------------<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt; &gt; - To unsubscribe, e-mail:<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:user-unsubscribe@xmlbeans.apache.org" \
target="_blank">user-unsubscribe@xmlbeans.apache.org</a><br>&gt;   &nbsp; &nbsp; \
&nbsp; &nbsp; &gt; &gt; &gt; For additional commands,   e-mail:<br>&gt; &nbsp; &nbsp; \
&nbsp; &nbsp; <a href="mailto:user-help@xmlbeans.apache.org" \
target="_blank">user-help@xmlbeans.apache.org</a><br>&gt;   &nbsp; &nbsp; &nbsp; \
&nbsp; &gt; &gt; &gt;<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; &gt; &gt; &gt;<br>&gt; \
&nbsp; &nbsp; &nbsp; &nbsp; &gt; &gt;<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; &gt; \
&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; \
&gt;<br>&gt; &nbsp; &nbsp; &nbsp;   &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; \
&gt; --<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; &gt; \
--------------------------------------<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; &gt; \
Standing Bear Has Spoken<br>&gt; &nbsp;   &nbsp; &nbsp; &nbsp; &gt; \
--------------------------------------<br>&gt;   &nbsp; &nbsp; &nbsp; &nbsp; \
&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    ---------------------------------------------------------------------<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; &gt; To unsubscribe, e-mail: <a \
href="mailto:user-unsubscribe@xmlbeans.apache.org" \
target="_blank">user-unsubscribe@xmlbeans.apache.org</a><br>&gt;   &nbsp; &nbsp; \
&nbsp; &nbsp; &gt; For additional commands, e-mail:<br>&gt;   &nbsp; &nbsp; &nbsp; \
&nbsp; <a href="mailto:user-help@xmlbeans.apache.org" \
target="_blank">user-help@xmlbeans.apache.org</a><br>&gt;   &nbsp; &nbsp; &nbsp; \
&nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   &gt;<br>&gt;<br>&gt; &nbsp; &nbsp; \
&nbsp; &nbsp; Notice: &nbsp;This email   message, together with any \
attachments,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;   may contain information &nbsp;of \
&nbsp;BEA Systems, &nbsp;Inc.,   &nbsp;its<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; \
subsidiaries &nbsp;and   &nbsp;affiliated entities, &nbsp;that may be<br>&gt; &nbsp; \
&nbsp; &nbsp;   &nbsp; confidential, &nbsp;proprietary, &nbsp;copyrighted \
&nbsp;and/or   legally<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; privileged, and is \
intended   solely for the use of the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; individual \
or   entity named in this message. If you are not the<br>&gt; &nbsp; &nbsp; 
    &nbsp; &nbsp; intended recipient, and have received this message in 
    error,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; please immediately return this by 
    email and then delete it.<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 
    ---------------------------------------------------------------------<br>&gt; 
    &nbsp; &nbsp; &nbsp; &nbsp; To unsubscribe, e-mail: <a \
href="mailto:user-unsubscribe@xmlbeans.apache.org" \
target="_blank">user-unsubscribe@xmlbeans.apache.org</a><br>&gt;   &nbsp; &nbsp; \
&nbsp; &nbsp; For additional commands, e-mail: <a \
href="mailto:user-help@xmlbeans.apache.org" \
                target="_blank">user-help@xmlbeans.apache.org</a><br>&gt;<br>&gt;<br>&gt;<br>&gt; \
                
    ---------------------------------------------------------------------<br>&gt; 
    To unsubscribe, e-mail: <a href="mailto:user-unsubscribe@xmlbeans.apache.org" \
target="_blank">user-unsubscribe@xmlbeans.apache.org</a><br>&gt;   For additional \
commands, e-mail: <a href="mailto:user-help@xmlbeans.apache.org" \
target="_blank">user-help@xmlbeans.apache.org</a><br><br>Notice:   &nbsp;This email \
message, together with any attachments, may contain   information &nbsp;of &nbsp;BEA \
Systems, &nbsp;Inc., &nbsp;its subsidiaries   &nbsp;and &nbsp;affiliated entities, \
&nbsp;that may be confidential,   &nbsp;proprietary, &nbsp;copyrighted &nbsp;and/or \
legally privileged, and is   intended solely for the use of the individual or entity \
named in this   message. If you are not the intended recipient, and have received \
this   message in error, please immediately return this by email and then delete 
    it.<br><br>---------------------------------------------------------------------<br>To \
  unsubscribe, e-mail: <a href="mailto:user-unsubscribe@xmlbeans.apache.org" \
target="_blank">user-unsubscribe@xmlbeans.apache.org</a><br>For   additional \
commands, e-mail: <a href="mailto:user-help@xmlbeans.apache.org" \
target="_blank">user-help@xmlbeans.apache.org</a><br><br></div></div></blockquote></div><br></div></div></blockquote></div><div><div></div><div \
class="Wj3C7c">

<br>
Notice:  This email message, together with any attachments, may contain information  \
of  BEA Systems,  Inc.,  its subsidiaries  and  affiliated entities,  that may be \
confidential,  proprietary,  copyrighted  and/or legally privileged, and is intended \
solely for the use of the individual or entity named in this message. If you are not \
the intended recipient, and have received this message in error, please immediately \
return this by email and then delete it.</div> </div></blockquote></div><br>



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic