xml

Getting content of the node having childs via DOMDocument

I have following html: <html ><body >Body text <div >div content</div></body></html> How could I get content of body without nested <div>? I need to get 'Body text', but do not have a clue how to do this. result of running $domhtml = DOMDocument::loadHTML($html); print $domhtml->getElementsByTagName('body')->item(0)->nodeValue; ...

ignoring elements order in xml validation against xsd

Hi, Ia processing an email and saving some header inside a xml document. I also need to validate the document against a xml schema. As the subject suggest, I need to validate ignoring the elements order but, as far as I read this seems to be impossible. Am I correct? If I put the headers in a<xsd:sequence>, the order obviously matter....

Xs:pattern interpretation in XML

How to interpret the following xml element? xs:pattern value="[ !-~]*" ...

Controling XML Within Tab Widget (Android)

I am using the following code to setup a TabWidget: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); TabHost mTabHost = getTabHost(); mTabHost.addTab(mTabHost.newTabSpec("tab_1").setIndicator("Tab1", getResources().getDraw...

WCF Method is returning xml fragment but no xml UTF-8 header

My method does not return the header, just the root element xml. internal Message CreateReturnMessage(string output, string contentType) { // create dictionaryReader for the Message byte[] resultBytes = Encoding.UTF8.GetBytes(output); XmlDictionaryReader xdr = XmlDictionaryRea...

Get content of XML node using c#

Hi all, simple question but I've been dinking around with it for an hour and it's really starting to frustrate me. I have XML that looks like this: <TimelineInfo> <PreTrialEd>Not Started</PreTrialEd> <Ambassador>Problem</Ambassador> <PsychEval>Completed</PsychEval> </TimelineInfo> And all I want to do is use C# to get...

Storing the selection changed behaviour of Word bookmark in XML format

I am attempting to put together a Word application using VSTO that, amongst other things would contain bookmarks that, when clicked, display information in a custom task pane. I would like to be able to export this document into XML, but if you simply save it in this format, the "pop up" behaviour is lost. I am intending to write an "ex...

question about prefix and suffix in java

hi!!I have an issue and i want your help!I have a specific REGEX which i have named it "unique" and i want to store the data that it gives me!! The prefix and the suffix of this regex!!so!!someone has told me to use var prefix and var suffix but i don't know how to do it! for your convinience i give u my xml for this regex <reg n...

test="" on a boolean always returns true

Why does <xsl:if test="<XPATH to boolean value here>"> ... </xsl:if> ALWAYS return true? Since boolean can be 0,1,"false" and "true" by definition, the ONLY way to test for a boolean value is to do string comparison against these. This can't be right. ...

Lift XML Parsing Error

I know there are other questions on this and I have read through almost all of them and none of them solved my problem. I have inside a home directory: def search(in: NodeSeq) : NodeSeq = { bind("work", in, "docId" -> text("", did = _), "visitId" -> text("", vid = _), "provider" -> text("", prov = _), "...

Flex 4: Getter getting before setter sets

I've created an AS class to use as a data model, shown here: package { import mx.controls.Alert; import mx.rpc.events.FaultEvent; import mx.rpc.events.ResultEvent; import mx.rpc.http.HTTPService; public class Model { private var xmlService:HTTPService; private var _xml:XML; private va...

Validate Unicode String and Escape if Unicode is Invalid (C/C++)

I have a program that reads arbitrary data from a file system and outputs results in Unicode. The problem I am having is that sometimes filenames are valid Unicode and sometimes they aren't. So I want a function that can validate a string (in C or C++) and tell me if it is a valid UTF-8 encoding. If it is not, I want to have the invalid ...

Bulk Insert Multiple XML files with SSIS 2008

I have a folder with multiple XML files. I need to bulk insert each one into a table in sql server. I am at a complete loss as to how to get this to work, as I am new to SSIS. Currently, My SSIS package pulls the files off an FTP server and uses a command line to unzip the xml (the come as .xml.gz). This all works great, but now I'm ...

loading an xml in web apps directory from a library dll

my web application has an xml file here: /files/xml/test.xml I need to load a XDocument from within a class library project, how will I reference the xml? I don't want to pass any path parameters to this method. I want to assume the location is fixed at /files/xml/test.xml. How can I load a XDocument know this? I don't seem to hav...

Best PHP xml2array function

I need a function that takes a string as XML input and change that into an array. Example: <a> <b> <c></c> </b> </a> So I can read it in PHP like this: $array = xml2array($xmlcode); echo $array['a']['b']['c']; Note: I tried all xml2array functions in PHP's documentation on xml_parse, and they all didn't work or had problems. ...

Use XSL to transform an XML list into an XHTML tree

I need to take this xml… <root> <item id=’1’ parent_id=’0’>ONE</item> <item id=’2’ parent_id=’1’>TWO</item> <item id=’3’ parent_id=’1’>THREE</item> <item id=’4’ parent_id=’2’>FOUR</item> <item id=’5’ parent_id=’0’>FIVE</item> </root> And produce this xhtml… <div class=’parent’>ONE</div> <div class=’child’> <div clas...

Most Lite-Weight XML Parser with XPath and Wide-char Support

I want a lite-weight C++ XML parser/DOM that: Can take UTF-8 as input, and parse into UTF-16. Maybe it does this directly (ideal!), or perhaps it provides a hook for the conversion (such as taking a custom stream object that does the conversion before parsing). Offers some XPath support. I've been looking at RapidXML, the Kranf xmlP...

php SimpleXMLElement set text

how to set text for a SimpleXMLElement in php? ...

PHP: How to handle <![CDATA[ with SimpleXMLElement?

I noticed that when using SimpleXMLElement on a document that contains those CDATA tags, the content is always NULL. How do I fix this? Also, sorry for spamming about XML here. I have been trying to get an XML based script to work for several hours now... <content><![CDATA[Hello, world!]]></content> I tried the first hit on Google if...

Getting XML Element by name in ajax responseXML?

I'm having an issue with an AJAX script I'm fixing - an AJAX connection is being made, XML data is returned (Properly), however the data is not being shown correctly in any browser other than IE. Elements are being gotten by using xmlData.childNodes[1] - which works fine in IE, but in Opera, Firefox, Chrome, etc., different data is retur...