active questions tagged xml - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:29:28Zhttp://stackoverflow.com/feeds/tag/xmlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1877576/c-socket-message-contains-extra-ascii-0-character0C++ socket message contains extra ASCII 0 characterDopyiii2009-12-09T23:09:00Z2009-12-09T23:20:29Z
<p>So this is a really strange problem. I have a Java app that acts as a server, listens for and accepts incoming client connections, and then read data (XML) off of the socket. Using my Java client driver, everything works great. I receive messages as expected. However, using my C++ client driver on the first message only, the very first character is read to be an ASCII 0 (shows up like a little box). We're using the standard socket API in C++, sending in a char* (we've done char*, std::string, and just text in quotes).</p>
<p>I used Wireshark to sniff the packet and sure enough, it's in there off of the wire. Admittedly, I haven't done the same on the client computer. My argument is that it really shouldn't matter, but correct me if that assumption is incorrect.</p>
<p>So my question: what the heck? Why does just the first message contain this extra prepended data, but all other messages are fine? Is there some little trick to making things work?</p>
http://stackoverflow.com/questions/1876022/net-dataset-getxml-whats-the-default-encoding1.NET DataSet.GetXml() - what's the default encoding?joedotnot2009-12-09T18:52:16Z2009-12-09T23:15:56Z
<p>Existing app passes XML to a sproc in SQLServer 2000, input parameter data type is TEXT;
The XML is derived from Dataset.GetXML(). But I notice it doesn't specify an encoding. </p>
<p>So when the user sneaks in an inappropriate character into the dataset, specifically ASCII 146 (which appears to be an apostrophe) instead of ASCII 39 (single quote), the sproc fails.</p>
<p>One approach is to prefix the result of GetXML with</p>
<pre><code><?xml version="1.0" encoding="ISO-8859-1"?>
</code></pre>
<p>It works in this case, but what would be a more correct approach to ensure the sproc does not crash (if other unforeseen characters pop up)?</p>
<p>PS. I suspect the user is typing text into MS-Word or similar editor, and copy & pasting into the input fields of the app; I would probably want to allow the user to continue working this way, just need to prevent the crashes.</p>
<p>EDIT: I am looking for answers that confirm or deny a few aspects, For example:<br/>
- as per title, whats the default encoding if none specified in the XML?<br/>
- Is the encoding ISO-8859-1 the right one to use?<br/>
- if there a better encoding that would encompass more characters in the english-speaking world and thus less likely to cause an error in the sproc?<br/>
- would you filter at the app's UI level for standard ASCII (0 to 127 only), and not allow extended ASCII?<br/>
- any other pertinent details.</p>
http://stackoverflow.com/questions/1876925/parse-shred-huge-complex-xml-to-sql-server-2008-database-30-tables1Parse/Shred Huge Complex XML to SQL Server 2008 Database (30+ tables) NealWalters2009-12-09T21:14:14Z2009-12-09T23:09:22Z
<p>I read this already: <a href="http://stackoverflow.com/questions/61233/the-best-way-to-shred-xml-data-into-sql-server-database-columns">http://stackoverflow.com/questions/61233/the-best-way-to-shred-xml-data-into-sql-server-database-columns</a> and <a href="http://stackoverflow.com/questions/223376/looking-for-a-good-bulk-insert-xml-shredding-example-for-sql-2005">http://stackoverflow.com/questions/223376/looking-for-a-good-bulk-insert-xml-shredding-example-for-sql-2005</a>. </p>
<p>The differences of why I'm posting is that I'm using BizTalk 2009 and SQL 2008. </p>
<p>I'm receiving a huge XML structure from a vendor using BizTalk. The client has normalized the XML structure into about 30 tables on a MS/SQL Server 2008 database. </p>
<p>Is there any magic solution yet? </p>
<p>Seems like to me these are the options: </p>
<p>1) BizTalk SQL adapter only good for simple flat databases (not a lot of joins and one-to-many relationships). </p>
<p>2) Write a WCF program
a) use LINQ and expose the LINQ object
b) use traditional XML DOM or SAX parsing and build ADO.NET to store in database </p>
<p>3) Write a complex Stored Proc that uses Open/XML. </p>
<p>4) Store the database temporarily in an SQL/XML Column, then use some other tool to "shred and normalize" the data. Is there anything in SSIS that would do this? </p>
<p>5) Leave the data in an XML column, and use XML indices and never normalize it. Embed the ugly XQuery/Xpath statements in a view. Not sure if response time or queries would be adequate. Might take as long to generate the xqueries and views as it would to do one of the other steps above. </p>
<p>I'm guessing that #2 or #3 would take at least one or two hours per table, thus if we have 30 tables, at least 30 (if not 60 hours) of various tedious boring and error-prone work. </p>
<p>Thanks,</p>
<p>Neal Walters </p>
http://stackoverflow.com/questions/1877108/select-value-with-linux-command-xpath-from-perl0Select value with Linux command xpath (from Perl)falstaff2009-12-09T21:42:00Z2009-12-09T22:58:34Z
<p>I want to get an attribute out of a XML-Tree. Therefor I use the command xpath from package libxml-xpath-perl. I figured out this command:</p>
<pre><code>virsh dumpxml save | xpath -e "/domain/devices/disk[@type='file']/source/@file[1]"
</code></pre>
<p>This gives me</p>
<pre><code> file="/var/lib/libvirt/images/save.raw"
</code></pre>
<p>How can I select the value only? (/var/lib/libvirt/images/save.raw)</p>
<p>Thanks</p>
<p>falstaff</p>
http://stackoverflow.com/questions/1877344/flex-loading-an-xml-file-that-isnt-accessible-by-users1Flex: Loading an XML File That Isn't Accessible By UsersJulia2009-12-09T22:22:21Z2009-12-09T22:27:24Z
<p>We have a Flex app that is currently loading an XML file that contains Multiple Choice Question data. I don't want a user to be able to access this file via http, but if I use HTTPService to load the file (what we're doing currently) it seems as though I have to place the XML file within the public_html folder on our server.</p>
<p>Is there a better way to load the XML file so that users wouldn't be able to see it in their activity viewer/access it via http://</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1877329/how-to-control-dtd-reading-with-net0How to control DTD reading with .NET?bmargulies2009-12-09T22:18:35Z2009-12-09T22:18:35Z
<p>A C# program of ours reads an XML file. The XML file has standalone='no' header. </p>
<p>The DOCTYPE used to look like:</p>
<pre><code><!DOCTYPE foo SYSTEM "silly.dtd">
</code></pre>
<p>where silly.dtd is not sitting right there next to the file.</p>
<p>For various reasons, I changed this to</p>
<pre><code><!DOCTYPE foo PUBLIC "-//Some Public Id" "urn:outerspace:silly.dtd">
</code></pre>
<p>I expected nothing to change, since the DTD could not be opened as './silly.dtd' before, and it can't be opened at 'urn:outerspace:silly.dtd' now. The only difference was that a catalog resolver wouldn't have to worry about the absolutization of the system ID.</p>
<p>Imagine my surprise to get an exception from the .NET runtime, apparently trying to open the DTD at the urn: address.</p>
<p>Can some kind person direct me to a recipe to tell .NET to just quietly give up in this case? I know how to do this in Java, but in .NET I'm a bit lost.</p>
<pre><code>at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Xml.XmlDownloadManager.GetNonFileStream(Uri uri, ICredentials credentials)
at System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials)
at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
at System.Xml.XmlTextReaderImpl.OpenStream(Uri uri)
at System.Xml.XmlTextReaderImpl.DtdParserProxy_PushExternalSubset(String systemId, String publicId)
at System.Xml.XmlTextReaderImpl.DtdParserProxy.System.Xml.IDtdParserAdapter.PushExternalSubset(String systemId, String publicId)
at System.Xml.DtdParser.ParseExternalSubset()
at System.Xml.DtdParser.ParseInDocumentDtd(Boolean saveInternalSubset)
at System.Xml.DtdParser.Parse(Boolean saveInternalSubset)
at System.Xml.XmlTextReaderImpl.DtdParserProxy.Parse(Boolean saveInternalSubset)
at System.Xml.XmlTextReaderImpl.ParseDoctypeDecl()
at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.LoadXml(String xml)
</code></pre>
http://stackoverflow.com/questions/1877101/wpf-binding-xml-list0WPF Binding XML ListChris 2009-12-09T21:41:13Z2009-12-09T21:41:13Z
<p>Hi</p>
<p>I want to bind the following XML to a couple of controls in WPF. </p>
<p>Each category name should bind to the items source of a combo box, then when a category is selected in the combo box I want to bind the list of Products from the selected category to a listview</p>
<p>Here is the XML:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Categories>
<Category Name="Category1">
<Products>
<Product Name="Product 1"/>
<Product Name="Product 2"/>
</Products>
</Category>
<Category Name="Category2">
<Products>
<Product Name="Product 1"/>
<Product Name="Product 2"/>
<Product Name="Product 3"/>
</Products>
</Category>
</Categories>
</code></pre>
<p>and so on..</p>
http://stackoverflow.com/questions/1776578/c-bind-xml-to-combobox-via-dataset0C#: Bind XML to ComboBox via DataSetsamunai2009-11-21T19:57:56Z2009-12-09T21:18:22Z
<p>Hello guys,</p>
<p>I am trying to get this code work for about 2 hours =( I am new to C# and don't know all the .NET library classes.</p>
<p>The target is to populate XML data to comboBox</p>
<pre><code>DataSet dataSet = new DataSet();
DataTable dataTable = new DataTable("table1");
dataTable.Columns.Add("col1", typeof(string));
dataSet.Tables.Add(dataTable);
StringReader strR = new StringReader("<root><parm1>val1</parm1><parm2>val2</parm2></root>");
dataSet.ReadXml(strR);
comboBox1.DataSource = dataSet.Tables[0];
comboBox1.DisplayMember = "col1";
comboBox1.ValueMember = "col1";
</code></pre>
<p>Well, it doesn't work as expected. The ComboBox should show
val1
val2</p>
<p>I don't really understand how column names of DataTable in a DataSet are related to XML-Tags... Maybe that's the point?</p>
<p>Thank You in advance!</p>
http://stackoverflow.com/questions/1845736/jboss-jndi-binding-manager-maximum-length-of-value0JBoss JNDI Binding Manager - maximum length of value?William2009-12-04T09:01:16Z2009-12-09T20:47:39Z
<p>I'm using the technique described <a href="http://www.redhat.com/docs/manuals/jboss/jboss-eap-4.2/doc/Server%5FConfiguration%5FGuide/Additional%5FNaming%5FMBeans-JNDI%5FBinding%5FManager.html" rel="nofollow">here</a> to register string values on the JNDI tree via an XML file deployed to JBoss.</p>
<p>This is working fine for my system constants (URLs and the like). However I am also trying to register the contents of a file which has been encoded to a Base64 string. The file is fairly large (about 400k), so the resulting string is very long.</p>
<p>When I try to deploy the XML file to JBoss, I get the following error:</p>
<pre><code>DEPLOYMENTS IN ERROR:
Deployment "vfsfile:/usr/local/jboss-5.1.0.GA/server/default/deploy/customers-service.xml" is in error due to the following reason(s): org.xml.sax.SAXParseException: XML document structures must start and end within the same entity.
</code></pre>
<p>Is this likely to be because I am exceeding the maximum allowable length for the string value and hence it is only reading it to a certain point?</p>
http://stackoverflow.com/questions/1876387/how-to-use-javascript-to-validate-xml-against-schema-in-firefox0how to use javascript to validate xml against schema in firefox?unknown (google)2009-12-09T19:53:59Z2009-12-09T20:04:43Z
<p>I can do this in IE using ActiveXObject, however mozilla doesn't support ActiveXObject. Is there any way I can use JS to validate an XML against an XSD schema in firefox?</p>
http://stackoverflow.com/questions/1006380/should-i-use-json-or-ajax-for-response-data1Should I use JSON or AJAX for response data?Uffo2009-06-17T11:04:57Z2009-12-09T20:03:14Z
<p>Why JSON? I have done some tests today, and the request time for both JSON, or a normal AJAX request was the same. In the "normal request" I have returned the complete text+html tags, in the JSON request, logically I returned a "json return type" and I have created the HTML with client-side JavaScript.</p>
<p>I don't get it, why are the big sites (Google Reader etc), or even small sites using JSON? Or do I not understand when I should use JSON? </p>
http://stackoverflow.com/questions/1876060/linq-to-xml-how-do-you-determine-if-something-of-type-var-is-null-or-empty0Linq to XML: How do you determine if something of type "var" is null or empty?onekidney2009-12-09T18:59:22Z2009-12-09T19:57:10Z
<p>So, I've got a small chunk of stabby, pointy xml that looks like this:</p>
<pre><code><Groups UseGroup='True'>
<Group>1264,182,1979</Group>
</Groups>
</code></pre>
<p>And I've got a small chunk of linq that gets the value from that looks like this:</p>
<pre><code>var group = from a in xml.Descendants("Groups")
select a.Element("Group").Value;
</code></pre>
<p>It's all fine and dandy but I don't know how to handle a null response? If I use:</p>
<pre><code>if(group != null)
</code></pre>
<p>It will always evaluate <code>true</code> because there is something there. If I use:</p>
<pre><code>if(group.ToString() == "")
</code></pre>
<p>It will always evaluate true because ToString() called on that object returns System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] For some reason, I'm having a hard time casting my result from my linq query to a string so I'm using var because that seems to be the only way I can get it to work...</p>
<p>So the question is, am I using the correct linq syntax and if so, how do i tell if it returned anything or not?</p>
http://stackoverflow.com/questions/1871076/are-there-any-free-xml-diff-merge-tools-available3Are there any free Xml Diff/Merge tools available?Russell2009-12-09T01:28:41Z2009-12-09T19:00:42Z
<p>I have several config files in my .net applications which I would like to merge application settings elements etc.</p>
<p>I was about to begin doing it manually as I usually do, however thought there must be an XML diff GUI tool available somewhere. </p>
<p>The tool would be able to go to the element level to compare and display the differences etc. </p>
<p>However Google gave no substantive free tool results and no hints for anything of value.</p>
<p>Is such a tool available? That is very useful? For free? </p>
<p>Thanks in advance. :)</p>
<p>Edit:</p>
<p>Here is a bit of clarification of the functionality that would turn my error-prone, tedious manual job into a 1-minute simpler task (and potential to automate):</p>
<p>In KDiff3, you can do a diff/merge of entire directories. There is a hierarchical diff which is very accurate, user-friendly and clear. I was interested in finding a similar solution, however instead of directory hierarchy, an XML element hierarchy.</p>
<p>If there is no such open source software, I am considering creating one on CodePlex to provide this functionality. </p>
http://stackoverflow.com/questions/1243210/is-soap-obsolete5Is SOAP obsolete?DevDevDev2009-08-07T06:28:50Z2009-12-09T17:58:34Z
<p>What is the current best practice for implementing Web Services? Is it still with SOAP?</p>
<p>Windows Communication Framework is seemingly better, but isn't it SOAP under the covers?</p>
http://stackoverflow.com/questions/1863429/can-not-read-xml-data-into-flash0can not read xml data into flashjohn2009-12-07T22:41:18Z2009-12-09T17:52:38Z
<p>I write a simple xml code, and I try to read the xml file into flash, but I got "undefined" in my output.
The codes are as following. Do you know how to sove the problem? Thanks.</p>
<p>xml file (test.xml):</p>
<pre><code><?xml version='1.0' encoding='ISO-8859-1'?>
<note>
<to>Tom</to>
<from>Peter</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
</code></pre>
<p>Flash program: </p>
<pre><code>xmlDoc=loadXMLDoc("test.xml");
x=xmlDoc.getElementsByTagName("to")[0];
t1.text=x.childNodes[0].nodeValue;
</code></pre>
<p>Sincerely,
John</p>
http://stackoverflow.com/questions/1674787/convert-xaml-ui-to-net-compact-framework-ui0Convert Xaml UI to .Net Compact Framework UIBen Crowhurst2009-11-04T16:02:21Z2009-12-09T17:20:49Z
<p>Is it possible to convert Xaml into a .Net Compact Framework UI (dll, exe, etc...)? In fact any XML based representation would be nice (QT, GTK, etc...).</p>
http://stackoverflow.com/questions/1875379/loading-cross-domain-xml-with-javascript-using-a-hybrid-iframe-proxy-xsl-jsonp-co0Loading cross domain XML with Javascript using a hybrid iframe-proxy/xsl/jsonp concept?Josef2009-12-09T17:11:31Z2009-12-09T17:11:31Z
<p>On our site <code>www.foo.com</code> we want to download and use <code>http://feeds.foo.com/feed.xml</code> with Javascript. We'll obviously use <a href="http://www.w3.org/TR/access-control/" rel="nofollow">Access-Control</a> but for browsers that don't support it we are considering the following as a fallback:</p>
<p><strong>On <code>www.foo.com</code></strong>, we set <code>document.domain</code>, provide a callback function and load the feed into a (hidden) <code>iframe</code>:</p>
<pre><code>document.domain = 'foo.com';
function receive_data(data) {
// process data
};
var proxy = document.createElement('iframe');
proxy.src = 'http://feeds.foo.com/feed.xml';
document.body.appendChild(proxy);
</code></pre>
<p><strong>On <code>feeds.foo.com</code></strong>, add an XSL to <code>feed.xml</code> and use it to transform the feed into an html document that also sets <code>document.domain</code> and calls the callback function in its parent with the feed data as json:</p>
<pre><code><?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="ROOT">
<html><body>
<script type="text/javascript">
document.domain = 'foo.com';
parent.receive_data([<xsl:apply-templates/>]);
</script>
</body></html>
</xsl:template>
<!-- templates that transform data into json objects go here -->
</xsl:stylesheet>
</code></pre>
<p><hr></p>
<p><strong>Is there a better way to load XML from feeds.foo.com and what are the ramifications of this iframe-proxy/xslt/jsonp trick? (..and in what cases will it fail?)</strong></p>
<p><hr></p>
<p><em>Remarks</em></p>
<ul>
<li>This does not work in Safari & Chrome but since both support <a href="http://www.w3.org/TR/access-control/" rel="nofollow">Access-Control</a> it's fine.</li>
<li>We want little or no change to <code>feeds.foo.com</code></li>
<li>We are aware of (but not interested in) server-side proxy solutions</li>
</ul>
http://stackoverflow.com/questions/806864/create-dynamic-navigation-from-xml-file-in-flash-cs30create dynamic navigation from xml file in flash cs3mjr2009-04-30T13:22:32Z2009-12-09T17:10:37Z
<p>action script newbie here :-)</p>
<p>What I want to do is this, hand an xml file to a swf and have the swf generate a dynamic text box and button for each of the links in the xml file</p>
<p>a rudimentary navigation</p>
<p>here's the xml</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<page>
<page name="Page Name 1" url="/page-1/" />
<page name="Page Name 2" url="/page-2/" />
<page name="Page Name 3" url="/page-3/" />
<page name="Page Name 4" url="/page-4/" />
</page>
</code></pre>
<p>and in my fla I have a button in my library named 'nav_button'</p>
<p>there's a layer named actions and in frame 1 I have this</p>
<pre><code>var xml:XML;
var xmlList:XMLList;
var xmlLoader:URLLoader = new URLLoader();
var button:Button = new Button();
xmlLoader.load(new URLRequest("links.xml"));
xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
function xmlLoaded(event:Event):void
{
xml = XML(event.target.data);
xmlList = xml.children();
trace(xml.length());
for(var i:int = 0; i < xmlList.length(); i++)
{
button = new Button();
button.x = 25;
button.y = i * 50 +25;
addChild(button);
}
}
</code></pre>
<p>the xml imports fine, but when it comes to the for loop and adding the buttons and text boxes to the stage, I'm toast</p>
http://stackoverflow.com/questions/1874903/how-to-deserialize-xml-using-xmlarrayitem0How to deserialize xml using XmlArrayItemRychu2009-12-09T16:04:54Z2009-12-09T17:01:18Z
<p>I want to deserialize xml like this:</p>
<pre><code><Product>
<Classification>
<NewClassification>1</NewClassification>
<NewClassification>2</NewClassification>
<NewClassification>3</NewClassification>
<OldClassification>A</OldClassification>
<OldClassification>B</OldClassification>
</Classification>
</Product>
</code></pre>
<p>My classes are:</p>
<pre><code>public class Product
{
public Classification Classification { get; set; }
}
public class Classification
{
[XmlArrayItem(typeof(int), ElementName = "NewClassification")]
public List<int> NewClassificationList { get; set; }
[XmlArrayItem(typeof(int), ElementName = "OldClassification")]
public List<int> OldClassificationList { get; set; }
}
</code></pre>
<p>Why this code is wrong? </p>
http://stackoverflow.com/questions/76424/how-to-remove-xmlns-attribute-with-net-xml-api1How to remove xmlns attribute with .NET XML APIaxk2008-09-16T20:13:04Z2009-12-09T16:21:14Z
<p>XmlElement.Attributes.Remove* methods are working fine for arbitrary attributes resulting in the removed attributes being removed from XmlDocument.OuterXml property. Xmlns attribute however is different. Here is an example:</p>
<pre><code>XmlDocument doc = new XmlDocument();
doc.InnerXml = @"<Element1 attr1=""value1"" xmlns=""http://mynamespace.com/"" attr2=""value2""/>";
doc.DocumentElement.Attributes.RemoveNamedItem("attr2");
Console.WriteLine("xmlns attr before removal={0}", doc.DocumentElement.Attributes["xmlns"]);
doc.DocumentElement.Attributes.RemoveNamedItem("xmlns");
Console.WriteLine("xmlns attr after removal={0}", doc.DocumentElement.Attributes["xmlns"]);
</code></pre>
<p>The resulting output is</p>
<pre><code>xmlns attr before removal=System.Xml.XmlAttribute
xmlns attr after removal=
<Element1 attr1="value1" xmlns="http://mynamespace.com/" />
</code></pre>
<p>The attribute seems to be removed from the Attributes collection, but it is not removed from XmlDocument.OuterXml.
I guess it is because of the special meaning of this attribute.</p>
<p>The question is how to remove the xmlns attribute using .NET XML API.
Obviously I can just remove the attribute from a String representation of this, but I wonder if it is possible to do the same thing using the API.</p>
<p>@Edit: I'm talking about .NET 2.0.</p>
http://stackoverflow.com/questions/1874235/how-to-query-this-xml-document-in-c-net-3-50How to query this XML document in C#.NET 3.5Daniel Skinner2009-12-09T14:24:10Z2009-12-09T15:57:09Z
<p>I have an XML document of the form:</p>
<pre><code><metadata>
<item name="Name" type="xs:string" length="102"/>
<item name="Email" type="xs:string" length="202"/>
</metadata>
<data>
<row>
<value>Daniel</value>
<value>daniel@no-reply.com</value>
</row>
<row>
<value>George</value>
<value>george@no-reply.com</value>
</row>
</data>
</code></pre>
<p>The ordering and number of columns may change so it is not sufficient to assume //row/value[1]/text() always holds 'Name'.</p>
<p>What is the best way to query the document using the metadata names to pull the right values?</p>
<p>I am querying the document in C#.NET3.5 so can use XDocument, XPath etc... whichever is the best for the job.</p>
http://stackoverflow.com/questions/1873242/how-to-capture-curl-xml-data-with-apache1how to capture CURL / XML data with Apache?Rudi2009-12-09T11:20:50Z2009-12-09T15:50:14Z
<p>Hi, </p>
<p>I'm developing a gateway script that needs to send info to another provider's server, and I need to debug the code. </p>
<p>Is there a way, on my own Linux + Apache + PHP server to capture the CURL / XML data from this script? </p>
<p>I know with PHP, that I could see for example the $_POST, $_GET or $_REQUEST data in a script, but with CURL I don't actually get to the <a href="http://intranet/capture.php" rel="nofollow">http://intranet/capture.php</a> script in my browser - so this doesn't work. </p>
<p>Is there any other way, with a script on the server to capture everything that's passed to the server, and dump it to a database / flat file?</p>
<p>I even tried monitoring /var/logs/http/access_log on the Linux server, but it didn't reveal much </p>
<p>So, how can I see what the CURL script does, exactly, as the server sees it?</p>
http://stackoverflow.com/questions/1873821/google-maps-markers-not-displayed-in-ie71Google Maps markers not displayed in IE7Guillaume Flandre2009-12-09T13:18:08Z2009-12-09T15:46:17Z
<p>I managed to load the map cross-browser but when it comes to populating it with markers, it doesn't work in IE7 (markers are not displayed).
Everything's fine in Firefox.</p>
<p>The locations are stored in XML which is then parsed by javascript and markers are added.</p>
<p>XML structure:</p>
<pre><code><?xml version='1.0' standalone='yes'?>
<stores>
<store>
<lat>47.00565</lat> <!-- Note: fake values here -->
<lng>26.25879</lng>
</store>
</stores>
</code></pre>
<p>jQuery code:</p>
<pre><code>var loadMarkers = function(xml){
var $allstores = $(xml).find("store");
for($i=0; $i<$allstores.length; $i++){
var $store = $allstores.eq($i);
var marker= new GMarker(new GLatLng($store.find("lat").text(),$store.find("lng").text()));
MaCarte.addOverlay(marker);
}
}
</code></pre>
<p>It may be useful to know that there are 300+ stores in the XML file.</p>
<p>Did you ever have such a problem?</p>
<p><strong>UPDATE:</strong></p>
<p>The problem seems to be on the XML parsing.
Indeed if I alert the number of stores returned like this:</p>
<pre><code>alert($allmagasins.length);
</code></pre>
<p>I get "0" on IE and "252" on Firefox.
Is jQuery not correctly parsing XML in IE?</p>
http://stackoverflow.com/questions/1871921/how-to-read-xml-respone-using-in-oracle-sql0How to read xml respone using in oracle sqlRam2009-12-09T06:17:25Z2009-12-09T15:26:35Z
<p>How to read xml respone using in oracle sql(I have one node status. I want read the status node and insert into a table)</p>
<p>plz help me</p>
<p>regards
ram</p>
http://stackoverflow.com/questions/1872861/extract-resulted-list-data-to-a-xml-file-in-python0Extract resulted list data to a xml file in pythonrahman.bd2009-12-09T10:05:01Z2009-12-09T14:04:43Z
<p>Hi,
How can I extract my resulted list data to an xml file?</p>
<p>My resulted list is given below:</p>
<p>week=[{'item': Electrelane, 'weight': 140}, {'item': Kraftwerk, 'weight': 117},{'item': The Flaming Lips, 'weight': 113}]</p>
http://stackoverflow.com/questions/1873943/problem-while-fetching-xml-file-from-server1Problem while fetching xml file from serverpujakhemka2009-12-09T13:37:01Z2009-12-09T13:55:29Z
<p>Hi,</p>
<p>I am trying to download an XML file(in my J2ME Application) from a location in the server.
My problem is that, in the beginning of the XML file these characters-"", are getting appended.</p>
<p>Can anybody tell me where the problem lies??</p>
http://stackoverflow.com/questions/1872943/traversing-xml-schemas-failed-system-xml-schema-and-c-used0Traversing XML Schemas Failed. (System.Xml.Schema and C# used)Nano HE2009-12-09T10:18:35Z2009-12-09T13:38:43Z
<p>Hello all,</p>
<p>Good day.</p>
<p>When i try to run the example from MSDN. But it failed at running time.</p>
<p>Error Alert:</p>
<p>An unhandled exception of type 'System.Xml.XmlException' occurred in System.Xml.dll</p>
<p>Additional information: 'type' is an unexpected token. Expecting white space. Line 7, position 24.</p>
<p>My Code
<a href="http://msdn.microsoft.com/en-us/library/ms255932.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms255932.aspx</a></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Data;
using System.IO;
using System.Xml;
using System.Xml.Schema;
class XmlSchemaTraverseExample
{
static void Main()
{
// Add the customer schema to a new XmlSchemaSet and compile it.
// Any schema validation warnings and errors encountered reading or
// compiling the schema are handled by the ValidationEventHandler delegate.
XmlSchemaSet schemaSet = new XmlSchemaSet();
schemaSet.ValidationEventHandler += new ValidationEventHandler(ValidationCallback);
schemaSet.Add("http://www.w3.org/2001/XMLSchema", "address.xsd");
schemaSet.Compile();
// Retrieve the compiled XmlSchema object from the XmlSchemaSet
// by iterating over the Schemas property.
XmlSchema customerSchema = null;
foreach (XmlSchema schema in schemaSet.Schemas())
{
customerSchema = schema;
}
// Iterate over each XmlSchemaElement in the Values collection
// of the Elements property.
foreach (XmlSchemaElement element in customerSchema.Elements.Values)
{
Console.WriteLine("Element: {0}", element.Name);
// Get the complex type of the Customer element.
XmlSchemaComplexType complexType = element.ElementSchemaType as XmlSchemaComplexType;
// If the complex type has any attributes, get an enumerator
// and write each attribute name to the console.
if (complexType.AttributeUses.Count > 0)
{
IDictionaryEnumerator enumerator =
complexType.AttributeUses.GetEnumerator();
while (enumerator.MoveNext())
{
XmlSchemaAttribute attribute =
(XmlSchemaAttribute)enumerator.Value;
Console.WriteLine("Attribute: {0}", attribute.Name);
}
}
// Get the sequence particle of the complex type.
XmlSchemaSequence sequence = complexType.ContentTypeParticle as XmlSchemaSequence;
// Iterate over each XmlSchemaElement in the Items collection.
foreach (XmlSchemaElement childElement in sequence.Items)
{
Console.WriteLine("Element: {0}", childElement.Name);
}
}
}
static void ValidationCallback(object sender, ValidationEventArgs args)
{
if (args.Severity == XmlSeverityType.Warning)
Console.Write("WARNING: ");
else if (args.Severity == XmlSeverityType.Error)
Console.Write("ERROR: ");
Console.WriteLine(args.Message);
}
}
</code></pre>
<p>`</p>
http://stackoverflow.com/questions/1873923/how-i-get-an-external-xml-file-from-my-list-data-in-python0how I get an external xml file from my list data in python [closed]rahman.bd2009-12-09T13:32:33Z2009-12-09T13:37:46Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1872861/extract-resulted-list-data-to-a-xml-file-in-python">Extract resulted list data to a xml file in python</a> </p>
</blockquote>
<p>Hi,
How can i make an external xml file having my list data output in python?</p>
<p>For example:</p>
<pre><code>list=[{"denver", "I want to go"},{"celin","home sick"},{"shania","Situation dont change"}]
</code></pre>
<p>Any idea please??</p>
http://stackoverflow.com/questions/1873747/how-to-deserialize-xml-when-root-declare-namespaces0How to deserialize xml when root declare namespaces?Rychu2009-12-09T13:02:52Z2009-12-09T13:05:39Z
<p>I have xml:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<wnio:Dokument xmlns:wnio="http://crd.gov.pl/wzor/2009/03/31/119/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ... >
</wnio:Dokument>
</code></pre>
<p>I want to deserialize it to object, for example:</p>
<pre><code>[Serializable()]
[XmlRoot(Namespace = "wnio")]
public class Dokument
{ ... }
</code></pre>
<p>What parameter should XmlSerializer constructor has?</p>
<pre><code>XmlSerializer serializer = new XmlSerializer(typeof(Dokument), 'What here?' );
</code></pre>
<p><code>XmlSerializer.Deserialize</code> complains that it did not expect element <code>http://crd.gov.pl/wzor/2009/03/31/119/'></code>. Why is that?</p>
http://stackoverflow.com/questions/1873449/how-to-transform-xml-and-keep-newlines1How to transform xml and keep newlines?kaze2009-12-09T11:57:40Z2009-12-09T12:36:50Z
<p>Hi,</p>
<p>I'm trying to preserve row breaks in an xml file when transforming it to html, but I cant find a way that works.</p>
<pre><code><meta>
<name>Message</name>
<value>Hi!
I need info!
Mr Test</value>
</meta>
</code></pre>
<p>And I use this xsl:</p>
<pre><code> <xsl:if test="name='Message'">
<tr>
<th align="left" colspan="2">Message:</th>
</tr>
<tr>
<td colspan="2"><xsl:value-of select="value"/></td>
</tr>
</xsl:if>
</code></pre>
<p>But the new line (cr/lf) characters dissapear, and everything becomes one single line in html. Is is possible to match the cr/lf and replace them with html "<_br >", or any other method?</p>