So, as sort of an exercise in learning, I am trying to port a site I was working on for someone, written in PHP, MySQL and CSS, over to Ajax (Specifically, really, just adding Javascript so that the page is dynamic instead of needing to constantly reload).
Unfortunately, I have some scripts I'd like to keep as PHP (for instance, a scrip...
I've spent the past few days at the school of hard knocks learning how to search Sharepoint via the http://{servername}/_vti_bin/spsearch.asmx Web Service.
The remaining issue to overcome is that when I perform a search, only the first 10 results are returned. In the returned XML I can see:
<StartAt>1</StartAt>
<Count>10</Count>
<Total...
My teacher recommended TBXML so I used it, but I've noticed there are others such as the built-in NSXMLParser.
Whatcha say?
...
Hello,
I don't know anything about XSLT but I need it for a one time thing. This should be pretty simple to do. What would the XSLT need to be to take the following input and display as what is shown below.
INPUT:
<TestResult>
<set-value idref="account_lockout_duration_var">900</set-value>
<set-value idref="account_lockout_threshold_va...
I'm working with XML and Python for the first time. The ultimate goal is to send a request to a REST service, receive a response in XML, and parse the values and send emails depending on what was returned. However, the REST service is not yet in place, so for now I'm experimenting with an XML file saved on my C drive.
I have a simple bi...
Hi
To avoid repeating a lot, I will link to this post which is exactly my problem.
So what I'm trying to do is to invoke a web service with complex input types where I just have raw XML in a string as input. Obviously the XML can be parsed into xml nodes etc. but I don't have the custom complex classes which would make it easy of cours...
Hi, i have a problem with a xpath-statement.
Basically, the problem can be explained at the following code:
<xsl:for-each select="/b1im:B1IMessage/b1im:Header/b1im:Z/SortInbound/group">
<!-- Check if entry from duplicate table is found for the current AccountingEntry -->
<xsl:variable name="exter...
I have a basic zend_config_xml instance that stores some inventory information such as which products are on replenishment (replenish_departments) vs which products can't be reordered (fashion_departments). (fyi our products are classified into departments, each department has a unique alpha code)
My xml looks similar to:
<inventory>
...
Hi all,
I'm new to iphone dev, i'm just trying to get something done.
I do my first XML parser App. When my app launches i set a tableView with a custom cell. There is in the custom cell two labels and one image.
When the table view is launched i call my custom cell method which take the string od the image's adress and then make a...
When creating XML I'm wondering why the CDATA blocks are uses rather than just escaping the data. Is there something allowed in a CDATA block that can't be escaped and placed in a regular tag?
<node><![CDATA[ ...something... ]]></node>
instead of
<node>...something...</node>
Naturally you would need to escape the data in either cas...
A sever I can't influence sends very broken XML.
Specifically, a Unicode WHITE STAR would get encoded as UTF-8 (E2 98 86) and then translated using a Latin-1 to HTML entity table. What I get is â 98 86 (9 bytes) in a file that's declared as utf-8 with no DTD.
I couldn't configure W3C tidy in a way that doesn't garble this irrever...
I want to generate a CSS file based on the users choices.
I am considering which way would be best. On example is to use arrays and save them in a XML file or use a key/value store like Mongo DB.
In that way the array can be pulled from the XML or key/value database, modified and saved. After that a CSS file would be generated based on...
Hi
I'm trying to save a tree (extends JTree) which holds an XML document to a DOM Object having changed it's structure.
I have created a new document object, traversed the tree to retrieve the contents successfully (including the original encoding of the XML document), and now have a ByteArrayInputStream which has the tree contents (X...
Is there a good example showing how to query a server and downloading the response (JSON or XML)?
...
I have an XML file full of this:
<machine id="">
<application id="">
<fichier name=""/>
<fichier name=""/>
<fichier name=""/>
</application>
<application id="">
<fichier name=""/>
<fichier name=""/>
<fichier name=""/>
</application>
</machine>
I know the id of machine and application and the name of fichi...
Ok so I've read the Custom Dialog explanation on the And Dev website
http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog
It show's you how to make a custom dialog, but not how to customise the title!
Basically my title is too long and I want it to scroll (like textview) or better still have a 'marquee' effect i think...
I want to read rss from different sources and populate them in the database (sqlserver 2008). I'm planning to store the content of rss.xml in one table and the master information like the version and deep link of the rss in another table. I haven't worked in xml before and couldn't find a better solution till now... help anybody...
...
How i can make an xml file from NSString object?
In other words, how can I parse XML from an NSString object?
...
I would like to have the code completion and XML validation that comes from NetBeans having access to the schemas referenced in XML documents. Unfortunately I need to use NetBeans in an offline (completely disconnected from the Internet) location, meaning NetBeans fails in downloading the referenced .xsd files. However, I have all of t...
Is there any way to make a single XSLT file to show an overview list over a CD collection and a detailed view for single CD?
XML file
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90...