[jira] [Commented] (XMLBEANS-490) XML tag is not created for [minOccurs=1 and nillable=false]

2012-09-22 Thread Yuriy Glushanin (JIRA)

[ 
https://issues.apache.org/jira/browse/XMLBEANS-490?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13461047#comment-13461047
 ] 

Yuriy Glushanin commented on XMLBEANS-490:
--

Hi Jacob,
Method addNotificationId() does not exist in the class.
The class only contains getter and setter methods for notificationId field.


 XML tag is not created for [minOccurs=1 and nillable=false]
 ---

 Key: XMLBEANS-490
 URL: https://issues.apache.org/jira/browse/XMLBEANS-490
 Project: XMLBeans
  Issue Type: Bug
Affects Versions:  Version 2.3
Reporter: Yuriy Glushanin

 Hello all,
 My XSD scheme:
 xs:element name=Info
 xs:complexType
 xs:sequence minOccurs=1 maxOccurs=1
 xs:element minOccurs=1 maxOccurs=1 name=Name 
 type=xs:string/
 xs:element minOccurs=1 maxOccurs=1 name=Value 
 type=xs:string/
 /xs:sequence
 /xs:complexType
 /xs:element
 XML message when Name is test and Value is NULL:
 Info
 Nametest/Name
 Info
 I expect empty Value / tag in the result:
 Info
 Nametest/Name
 Value /
 Info
 Why empty Value / tag was not created?
 Best regards,
 Yuriy.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
For additional commands, e-mail: dev-h...@xmlbeans.apache.org



[jira] [Commented] (XMLBEANS-490) XML tag is not created for [minOccurs=1 and nillable=false]

2012-09-21 Thread Wing Yew Poon (JIRA)

[ 
https://issues.apache.org/jira/browse/XMLBEANS-490?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13460646#comment-13460646
 ] 

Wing Yew Poon commented on XMLBEANS-490:


Yuriy, can you please post the java code you use to produce the xml? (In other 
words, what did you do in your Info XMLBean?)
FYI,

Info
Nametest/Name
Value/
Info

is invalid according to your schema.

Info
Nametest/Name
Value xsi:nil=true/
Info

is valid.
Also, XMLBeans only puts in what you set. If you didn't set the Value element 
in your Info bean, then it is not there. XMLBeans does not guarantee that what 
you do is valid.


 XML tag is not created for [minOccurs=1 and nillable=false]
 ---

 Key: XMLBEANS-490
 URL: https://issues.apache.org/jira/browse/XMLBEANS-490
 Project: XMLBeans
  Issue Type: Bug
Affects Versions:  Version 2.3
Reporter: Yuriy Glushanin

 Hello all,
 My XSD scheme:
 xs:element name=Info
 xs:complexType
 xs:sequence minOccurs=1 maxOccurs=1
 xs:element minOccurs=1 maxOccurs=1 name=Name 
 type=xs:string/
 xs:element minOccurs=1 maxOccurs=1 name=Value 
 type=xs:string/
 /xs:sequence
 /xs:complexType
 /xs:element
 XML message when Name is test and Value is NULL:
 Info
 Nametest/Name
 Info
 I expect empty Value / tag in the result:
 Info
 Nametest/Name
 Value /
 Info
 Why empty Value / tag was not created?
 Best regards,
 Yuriy.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
For additional commands, e-mail: dev-h...@xmlbeans.apache.org