Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.
0
votes
0answers
12 views
query XML while ignoring namespace?
I'm trying to query XML while ignoring namespaces, because the result set has multiple namespaces. I've gotten to the DataSets node, but I can't figure out how to get out the multiple ...
0
votes
0answers
16 views
how to retrieve only updated products in long query?
I have build an xml/aspx page that retrieves all rows in a producttable through sql server. This page is used as an xmlfeed. This xml displays productdetails like name, price and stock etc. Because ...
0
votes
2answers
19 views
How to have an XML file in my App?
I need an XML file in my app, so I added it to Files part of AppResources.resx and it appeared in Resources folder with its name myFile.xml
var myFile = MyApp.Resources.AppResources.myFile;
this ...
0
votes
0answers
4 views
SAS PROC SOAP to update Sharepoint List
I am trying to update a Sharepoint (2007) list using SAS (9.3) via PROC SOAP (SAS is living on a Unix GRID). The sharepoint site has basic authentication enabled (since PROC SOAP cannot authenticate ...
0
votes
2answers
37 views
Parse and edit XML file in PHP
How can I do the following edits to an XML file in PHP. I basically want to keep some elements and write those elements to a new XML file.
So, I know how to open the new file and prepare it for ...
-3
votes
1answer
37 views
Show Content of XML [on hold]
Iam would like to show a xml content on a homepage. The problem is that I dont know have so much knowledge and how to start.
I got an XML file online. And for tools I have Visual Studio 2012. I ...
1
vote
1answer
19 views
adding xml innertext with foreach loop
I am trying to add values to the saml:AttributeValue elements of this xml document:
<saml:AttributeStatement xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">
<saml:Attribute ...
1
vote
0answers
5 views
XML dig sig error after upgrade to java7u25
I have java aplication for signing xml documents after upgrade java to latest version java7u25 it stops working with error
javax.xml.crypto.dsig.XMLSignatureException: ...
0
votes
1answer
5 views
PhoneGap Android Softkeyboard Shifts elements up
Using phonegap I have a textarea, a button, and two images. When I click in the textarea - the softkeyboard initiates but it shifts the elements mentioned above upward above the softkeyboard. I need ...
1
vote
0answers
47 views
doc.createElement() forgot the opening “<”
I was working on a Java Application and I have to map lots of data then generate an XML output.
All the output Looks good, except this 1 random element. As you can see in the image below all the ...
-3
votes
0answers
32 views
Loop dirs and write xml of content files in php
How to recursively run into a folder and his subdirectories while adding in each directories an xml file with the content list of the current directory ?
I have tried something like that :
$dir = ...
-2
votes
0answers
16 views
How can I use stats/data from a JSON or XML API to reproduce graphics/charts?
I use a management software that provides an API. With this API I can generate XML/JSON reports of usage stats.
Now, I would like to translate these text stats to a graphic interface, using charts, ...
0
votes
0answers
14 views
Adding Ascii characters to a code snippet
I'm trying to write a code snippet for Visual Studio 2012 that will include an ascii character in it. Coincidentally, I've never dealt with XML before, so I'm pretty shaky about the whole process in ...
0
votes
2answers
13 views
How to return xml data from webservice to jquery ajax call from a webform
This is my JQuery AJAX call. This is inside the document.ready() function. This is supposedly the one that will read the xml data returned by the webmethod in my webservice:
$.ajax({
...
0
votes
0answers
24 views
passing xml to stored procedure and getting xml output
I am struggling to create a WCF service method which calls a SQL Server stored procedure.
The stored procedure expects a SqlDbType.Xml input and returns an SqlDbType.Xml.
Stored procedure parameters ...