Tagged Questions
The xsi tag has no wiki summary.
2
votes
1answer
39 views
JAXB - empty tags with no xsi:nil
I have a String property in an object annotated as follows:
@XmlElement(name = "Item", required = true, nillable = true)
private String item;
The result after marshaling is
<Item ...
2
votes
3answers
358 views
XPath returns null when I remove the prefix
I am using XPath in Java under Eclipse. I am writing a soap web service, the XML is using prefix and a namespace and I wanted to remove the prefix and only keep the namespace because I prefer a more ...
1
vote
1answer
38 views
using php, how do I access XML element's attributes declared by XML Schema declaration?
I have a an xml file located at the URL specified, which includes a probability-of-precipitation node, which has several "value" elements whose schema-instance declaration(s) allows them to be ...
1
vote
0answers
61 views
xml serialization - adding name space to element that is not root
I am working in C#, I'm trying to do xml serialization I get xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" and xmlns:xsd="http://www.w3.org/2001/XMLSchema" on the root element, I need that ...
1
vote
2answers
87 views
replacing namespace - problem with attribute's values that have namespace
i'm moving from one namespace to another in a XML and i have been facing problems with xsi:type attributes for typed elements.
I have been using next template that easily moves element that have one ...
0
votes
2answers
68 views
Is it valid to set nillable=true and use the default property in an XML document?
Using C# and .Net 4.0
I have a generated schema that looks like this:
<xsd:element name="EstimatedDate" minOccurs="0" nillable="true" default="1900-01-01T00:00:00">
<xsd:complexType>
...
0
votes
1answer
106 views
Web Service Response returns <item xsi:nil=“true” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”/>
I am very new to Web Services. I am creating Apache CXF (apache-cxf-2.5.0) SOAP based Web Services. It creates WSDL from Java class (Java first approach).
Following is my Java class:
package ...
0
votes
0answers
53 views
castor marshaller suppress xsi
i read a post written by you about:
Marshaller marshaller = new Marshaller(w);
marshaller.setSuppressXSIType(true);
the problem is that i'm using that method but the result didn't changed.
...
0
votes
1answer
230 views
JAXB marshaller to marshal super-class as root-element and use xsi:type
I'm trying to marshal a sub-class as super-class with xsi:type information as the XML Root element attributes.
Currently this is what I have (let's say..):
XMLDOCUMENTTYPE is a super class of ...
0
votes
1answer
229 views
Xerces SAX parser ignore the xmlxs:xsi attribute as an attribute of an element
Using Xerces SAX parser I try to retrieve all elements and their attributes of this XML file:
-------------- Begin XML file to parse ---------------->
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
1answer
281 views
How to generate xsi:nil element with attributes?
I have a WCF client that needs to generate a request containing this XML fragment :
<reason xsi:nil="true" nullFlavor="NA" typeCode="RSON" />
The schema is determined by the server and isn't ...
0
votes
3answers
339 views
What's the difference between <a_element /> and <a_element xsi:nil=“true” />?
do you know if there's a difference between these tags on XML/XSD?
<a_element /> and <a_element xsi:nil="true"/>
e.g:
<SpreadCurve>
<Index>3M</Index>
...
0
votes
1answer
132 views
Interchange xsd and xsi in the output of XmlSerializer
XmlSerializer serializer = new XmlSerializer(typeof(IxComment));
System.IO.StringWriter aStream = new System.IO.StringWriter();
serializer.Serialize(aStream,Comments);
commentsString = ...
0
votes
1answer
369 views
XQuery: weird xsi tag being inserted into my XQuery output
Here is an example of the XQuery output that I get:
<clinic>
<Name xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Healthy Kids Pediatrics</Name>
<Address ...