xml

SELECT Data from xml variable

I done with this but still no expected result out through this proc DECLARE @nvarval NVARCHAR(max) DECLARE @xmlval xml DECLARE @tblxml TABLE(xmlfld XML) SET @nvarval='' SET @nvarval =@nvarval + '<ROOT>' SET @nvarval =@nvarval + ' <Customers>' SET @nvarval =@nvarval + ' <CustomerId>1111</CustomerId>' SET @nvarval =@nvarval + ' ...

Convert SimpleXML to DOMDocument, not DOMElement

I neeed to convert a SimpleXML object to a DOMDocument, to use it with DOMXPath. I need DOMXPath for it's method registerPHPFunctions. Can this be done? With dom_import_simplexml I get a DOMElement, not DOMDocument. ...

A potentially dangerous Request.Form value was detected

I'm using a php script to http post some xml files to a .net URL. When I submit I get the response: A potentially dangerous Request.Form value was detected from the client (<?xml version="...UTF-8"?> <!DOCTYPE cXML SYSTE..."). Description: Request Validation has detected a potentially dangerous client input value, and p...

.NET Web Services - managing web requests

Hello I have a .NET WeBService project and a reference to it from another project. Visual Studio generates a proxy class (SoapHttpClient) with all methods of my Web Service. The project that I use the WebService from is a .NET CF mobile application. This means that Internet access and WebService is not always available. What I need to d...

A good resource for learning xsl?

Hey all Know a bit of XML but am struggling to get my head around XSL - just wondering if anybody knows of any good resources to get me up to par quickly. Websites or books etc. Thanks in advance. ...

if XML file has "xmlns",how can I get Text from XML file using XPath

I get a XML file from website (http://www.abc.com/), URL is: http://www.abc.com/api/api.xml content is: <?xml version="1.0" encoding="utf-8"?> <root xmlns="http://www.abc.com/"&gt; <name>Hello!</name> </root> it has xmlns="http://www.abc.com/" in XML file, now, I using JDOM XPath to get text Hello! XPath xpath = XPath.newInsta...

Writing to a file on a server with jQuery?

I am developing an application which requires the reading and writing of XML files. Reading I've got covered, but is writing possible at all? The layout of my webapp is like this: ../includes/ (irrelevant) ../content.xml (xml to be written to) ../index.html (irrelevant) ../admin.html (file to write with) Any help appreciated, thanks. ...

Removing RapidXML newlines & whitespace in output

How can I prevent RapidXML from adding tabs and newlines between element tags when calling the print(...) function to output XML? ...

Read namespaces from xml document

hi, how do I read namespaces from the XML document? <fx:FIBEX xmlns:fx="http://www.asam.net/xml/fbx" xmlns:can="http://www.asam.net/xml/fbx/can" xmlns:flexray="http://www.asam.net/xml/fbx/flexray" xmlns:ho="http://www.asam.net/xml" xmlns:ni="http://www.ni.com/xnet" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...

Basic Standards of Exporting to XML?

I'm just writing a small, data gathering application, and I want to export the output to XML. Is it perfectly find if the output just looks like this? <?xml version="1.0" encoding="ISO-8859-1"?> <output> <data> foo </data> <data> foo2 </data> <data> foo3 </data> <data> foo4 ...

Where should I save an xml file so it can be written to by a service when Windows is logged off?

Hi all, Where should I save an xml file so it can be written to by a service (written in C#) when Windows is logged off? Thanks Steven ...

How do I create a specific key for each control on a form in Android?

Trying to assign a key to each field in android to reference in Java. ...

Web Service: Single String Parameter Or Complex Type Parameters

Is it more or less acceptable (i.e. standard) to create a publicly-exposed web service with these method signatures: ThisMethodDoesSomething(ComplexType param) ThisMethodDoesSomethingElse(AnotherComplexType param) Or this: ThisMethodDoesSomethingAndSomethingElse(string xml) Where the operation being performed depends upon the XML ...

Performing a check in XSL

Hey I am trying to perform a check on individual nodes of an XML file, and depending on the contents of a specific node do something, for example if the type is bool display a checkbox or if the type is text display a textarea or a pull down options box. For example: <Questions> <Question> <Data>What gender are you?</Data> <Type>pulld...

Is there a declarative way to parse XML to Java objects?

I'm writing an import function of XML files to my Java application. I am using XOM to parse the XML files. The code for parsing the XML is not easy to understand, it is some hardcoded .getChild(3) and so on. It is hard to follow the code compared to the declarative XML document. Isn't there a more maintainable way to parse XML documents...

pull unique groups from xml using xslt

I realize you can't use arrays in xsl and normally to do the task below it would take an array. Here's what I need... Sample xml code... <products> <product> <productNumber>1</productNumber> <productType>TypeA</productType> </product> <product> <productNumber>2</productNumber> <productType>TypeB</productType> </product> <p...

XSLT with overlapping elements?

So the title of this post may be a little misleading, but it's the best I can come up with. I'm working on a project that uses TEI for encoding texts. One of the requirements of my current work is to write XSL transformations to render the XML-encoded texts as HTML. For the most part, no problem. I'm kind of stuck on this issue, thou...

Help with multiline regex match

I am trying to have a regular expression match a value that spans multiple lines. I am using the re.S flag, but still get no results. Any ideas why? This is the text that I am searching through: <File id="abc.txt" EngRev="74"> <Identifier id="STRING_ID" isArray="1" goesWith="3027253"> <EngTranslation>"Value 1","Value 2","Value 3"...

Forcing firefox to render XML in a tree like fashion?

Hi there, I am trying to get firefox to render the xml that is being returned to it in a tree like format as in Internet explorer.. Currently it just displays the field values .. i.e. NO XML Is there some special setting i am missing? EDIT Here is the xml that is being returned <ArrayOfSampleItem xmlns="http://schemas.datacontract....

Passing xml via query string to Classic ASP form

I have a test form, (see below), that if I Submit manually, (clicking the Submit button), returns an XML list of orders from the action script. I would like to be able to pass the XML currently contained in the test HTML form programmaticaly via xmlHTTP. So far no luck. Any help would be appreciated. <form action="processorders.asp" m...