xml

Spring configuration file gives BeanDefinitionStoreException

I am trying to complete the Spring MVC tutorial at: http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html My problem is similar to this one http://stackoverflow.com/questions/266601/spring-configuration-error However none of those solutions seem relevant. I am getting the following stack trace: org.springframework...

An XML language for describing file attributes of a directory tree?

I have an application in mind which will record directory listings of a file system in text form. That is, it should say something like: File name is: abc.txt Last modification date is: 2009-12-31T01:23 Read-only attribute is: True Hidden attribute is: False The listings will persist for years in a long-term archive, so the language s...

Does javadoc have an equivalent to <![CDATA[ ... ]]> ?

Unfortunately, there is no CDATA in HTML. This is a pity, because it would be perfect for adding javadoc comments that include XML, so you don't have to escape the < and >, for example: /**<![CDATA[ This parses <complexType name=""> ]]>*/ However, it would be possible for javadoc to recognize the CDATA section, and convert it to HTML...

.NET - working with MS Word XML

It's always hard for me to understandably (especially in English which isn't my first language) explain, what my problem is, so I'm sorry in advance for intricacy or excessive triviality ;). What I need to do is to 'parse' Word XML document in a specific way. The document converted to xml has some parts that will be put between some fix...

How can I filter a large file into two separate files?

I've got a huge file (500 MB) that is organized like this: <link type="1-1" xtargets="1;1"> <s1>bunch of text here</s1> <s2>some more here</s2> </link> <link type="1-1" xtargets="1;1"> <s1>bunch of text here</s1> <s2>some more here</s2> </link> <link type="1-1" xtargets="1;1"> <s1>bunch of text here</s1> <s2>some...

PHP object has semicolon (or other strange character) in variable name

Hi, I've got an object, which contains semicolons in the property names, when I var_dump, I get: object(Sales) { [thisisa:propertyname] => 'some value' } So, how do I access the property? $object->thisisa:propertyname throws an error. I read somewhere a while ago you can wrap thisisa:propertyname in some characters (I've tried ...

Free XML based java gui language with builder

Is there a free decent java GUI descriptor language (probably XML based), which has a Glade-like (WYSIWYG) GUI builder? ...

How to group items by date range in XSLT?

I have a bunch of data that looks a little like this: <item> <colour>Red</colour> <date_created>2009-10-10 12:01:55</date_created> <date_sold>2009-10-20 22:32:12</date_sold> </item> <item> <colour>Blue</colour> <date_created>2009-11-01 13:21:00</date_created> <date_sold>2009-11-21 12:32:12</date_sold> </item> <item> <colou...

Excel 2003 VBA error 1004 after XML data import

Hi, I built an macro which takes different XML input files and imports each one into a different worksheet in a workbook. It then saves the workbook. This works a treat 98% of the time with hundreds of users, but sometimes fails when saving the workbook with "Error 1004: Microsoft Office Excel cannot access the file 'C:\SymmPiT'. I fou...

XML Reader wants ProhibitDTD to be false but it is!

Here is the code Stream stream = request.InputStream; String xsd = // Path to file XmlReaderSettings settings = new XmlReaderSettings(); if (xsd.Length != 0 && File.Exists(xsd)) { settings.ProhibitDtd = false; settings.Schemas.Add("", xsd); settings.ValidationType = ValidationType.Schema; } else { throw new cXMLException("XSD ...

Validating with DTD - connection forcibly closed

I'm validating a document with the DTD in the document which is not on my machine, it is stored on the internet. I am currently getting the following exception System.Xml.XmlException: An error has occurred while opening external DTD 'http://xml.cxml.org/schemas/cXML/1.2.020/cXML.dtd': Unable to connect to the remote server ---&gt; Sy...

How can I convert scala.xml.Elem to something compatible with the javax.xml APIs?

I have a Scala representation of some XML (i.e. a scala.xml.Elem), and I'd like to use it with some of the standard Java XML APIs (specifically SchemaFactory). It looks like converting my Elem to a javax.xml.transform.Source is what I need to do, but I'm not sure. I can see various ways to effectively write out my Elem and read it into...

Editing an XML document in Adobe Flex?

I am building a custom structured editor for an XML document in Flex. What I need is a way to do list operations on an XMLList with a minimum of fuss, using either an editable datagrid or a popup form (UI-wise, it doesn't matter which. Please don't focus on that). What is a good idiom for doing this? Here is an example structure, wit...

could not find the main class

Hi, I'm using the JDK 3.1. I am using XML Publisher. I'm getting this error: Could not find the main class. Program will exit. After I click on "OK", I get Java execution failed. Please check the Java Option in the option dialog ...

XmlDocument.Validate ignore properties without [XmlIgnore]

I have a object that has a number of properties that aren't present in the xsd file. When doing XmlDocument.Validate is there a way I can tell it to ignore properties that are not present in the xsd and instead just ensure that the properties required by xsd are present in the xml document? I can get around this by adding [XmlIgnore] at...

Writing GraphML with XOM?

I'm trying to write out a graphML document with XOM in java, but I can't figure out how to get all of the namespace declarations correct. To have valid graphML, I need to have a root element that looks like the following: <graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...

XML ActiveXObject IE. Object doesn't support this action

I am trying to work with xml and javascript. In firefox it works great using XMLHttpRequest but in IE (6-8) I am getting the error: Object doesn't support this action I am using the following function: function createRequestObject(){ var request; try { request = new XMLHttpRequest(); } catch (trymicrosoft) { ...

Parsing XML in Python using ElementTree example

Hello, I'm having a hard time finding a good, basic example of how to parse XML in python using Element Tree. From what I can find, this appears to be the easiest library to use for parsing XML. Here is a sample of the XML I'm working with: <timeSeriesResponse> <queryInfo> <locationParam>01474500</locationParam> <va...

Recieve an xml response after a post, and parse into a dictionary or hash

I am sending, on the server side, a xml to a remote server, the remote server will respond back with a xml response. I am assuming it is a stream. How can I receive the stream, and parse the values into a dictionary or hashtable? note, the response will be like this: <root> <name1>blah</name1> <name2>blahasdf</name2> ... </root> ...

Persisting data as XML in a SQL Server database?

I am working on a WPF application for a vertical market. In a discussion today about how to build the data structure to support the selection of a dozen checkboxes and radio buttons, I thought about the possibility of serializing an object to XML and storing that in SQL Server, then deserializing it when the data needs to be displayed. ...