3,634 Topics

Member Avatar for
Member Avatar for hughbedo

I want to model a situation where you can have multiple children of an element, and the children can be different types and in any order. A simple example of what I mean is at [1]. I am trying to make a schema to define this document, my attempted schema …

Member Avatar for hughbedo
0
207
Member Avatar for fatihpiristine
Member Avatar for fatihpiristine
0
50
Member Avatar for Silo45

OK so here is what i wanna do. I been researching for a while but i didnt find the answer maybe you guys could help me out a little. I wanna create a xml table from a MySQL data base query using something like this: [code=PHP] $file= fopen("results.xml", "w"); $_xml …

Member Avatar for Silo45
0
103
Member Avatar for bcm

I want to add the values only first time when I run it and then display it in appconfig.xml file, then next time when I run my application it should display that values... the design form of my progrn is as follows: 1)LABEL TEXTBOX COMBOBOX 2)LABEL TEXTBOX COMBOBOX 3)LABEL TEXTBOX …

Member Avatar for binoj_daniel
0
145
Member Avatar for elangobala
Member Avatar for nschessnerd
0
46
Member Avatar for Exelio

hi all, i have the following xml file. <rss version="2.0" xmlns:media="http://tools.search.yahoo.com/mrss/" > <channel> <title>SWF media</title> <link>http://www.blogdigger.com/media/</link> <description>Recent .swf files found by Blogdigger</description> <item> <title>Dollar Bus Rolls Into Town</title> <link>http://feeds.feedburner.com/Chicagoist?m=1115</link> <description>some description</description> <pubDate>Thu, 23 Mar 2006 14:11:57 EST</pubDate> <enclosure url="http://www.kitschn.com/flash/MenuCoverPage-DrinksMenu09-05.swf" type="application/x-shockwave-flash"/> <media:content url="http://www.kitschn.com/flash/MenuCoverPage-DrinksMenu09-05.swf" type="application/x-shockwave-flash"/> </item> <item> <title>E-mail</title> <link>http://billarnold.typepad.com/poet_in_motion/2006/03/email.html</link> <description>description 2/description> <pubDate>Wed, …

Member Avatar for Exelio
0
185
Member Avatar for KimJack

Hi All, I am trying to parse an xml file. Not using any of the regex or parsers, simply using only java code. Any suggestions? Thanks

Member Avatar for iamthwee
0
89
Member Avatar for Dave Sinkula

I don't know the correct term to use in the title. It's been ages since I've messed with XML, and I don't use it in any professional way, nor am I headed that direction. (Before during and after this question, I will be searching [url]http://www.w3.org[/url] and other sites.) My question …

Member Avatar for Dave Sinkula
0
166
Member Avatar for bean1000

Hi everyone. I am new to PHP and XML and would like to take the following example xml, [code] <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> <shirt> <name>Long Sleved></name> <link>index/1/1</link> <Types> <Type> <name>blue</name> <link>index/1/1/1/17743/60088</link> </Type> <Type> <name>green</name> <link>index/1/1/1/1/1</link> </Type> <Type> <name>red</name> <link>index/1/1/1/2/2</link> </Type> <Type> <name>yellow</name> <link>index/1/1/1/3/3</link> </Type> <Type> <name>orange</name> <link>index/1/1/1/4/4</link> </Type> </Types> </shirt> …

Member Avatar for bean1000
0
92
Member Avatar for domino.vbcoder

Hi all i was wondering wheather someone could explain how i would extract the string data in bold from the xml line bellow? <countrydata> <stateid="point"><name>[B]Sligo[/B]</name><size>2</size><loc>[B]54.28,-8.48[/B]</loc></state> </countrydata> I am using an xReader to read the file in another program but the structure is very different, the code i use for the …

Member Avatar for ptaylor965
0
93
Member Avatar for Daveshome

Hello. I have been finding more and more databases that output in XML. (Getting more popular all the time I guess!) I am building a script that will take this apart so I can edit items and put it back together in XML format and .cvs format. (to feed to …

Member Avatar for Daveshome
0
90
Member Avatar for dcleaner

i've been playing around with python for some time now, and i decided to take vegaseat's advice to make a project of mine own. the project consist of transforming an access database to xml, and then from xml generate some html files. i exported one table, made some basic modifications …

Member Avatar for dcleaner
0
214
Member Avatar for unclepauly

hi, im using this code to serialize my class into xml: [code] [COLOR=green]public[/COLOR] [COLOR=green]static[/COLOR] [COLOR=green]void[/COLOR] Save([COLOR=green]Class1[/COLOR] myClass) { System.Xml.[COLOR=green]XmlTextWriter[/COLOR] w = [COLOR=green]new[/COLOR] System.Xml.[COLOR=green]XmlTextWriter[/COLOR]([COLOR=green]@"./myFile.cfg"[/COLOR], [COLOR=green]Encoding[/COLOR].ASCII); System.Xml.Serialization.[COLOR=green]XmlSerializer[/COLOR] x = [COLOR=green]new[/COLOR] System.Xml.Serialization.[COLOR=green]XmlSerializer[/COLOR](myClass.GetType()); x.Serialize(w, myClass); w.Close(); } [/code] my class has only 2 things to serialize. these are private member variables, which i provide …

Member Avatar for unclepauly
0
153
Member Avatar for moiseszaragoza

I have been trying to get the child nodes out of a XML doc. so far what i have is [CODE] <% ' ' Create new XML reader object Dim xmlDoc Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM") ' Load the specified XML file (returns XML output) xmlDoc.load("http://xmlPath") ' Parse XML if xmlDoc.parseError.errorcode …

0
54
Member Avatar for Ninad

Please Help me how to use FOR_XML_NULL_TREATMENT Can u please provide a sample code.

0
60
Member Avatar for mike.mclennan

I have created a new XML file and schema that is used to run sql scripts but I am having a problem doing a few things. below is an example of what I am hoping to create. XML file. [code] <root> <script> <name> Script for Upgrading </name> <file> C:\Files\Scripts\Upgrade.sql </file> …

0
83
Member Avatar for Bahulaj

Hi I have created a glee diagram so i want to saved this diagram as an xml file.can anyone please help me to save this graph as xml file.

Member Avatar for Ramy Mahrous
0
26
Member Avatar for rancedowner1234

I have successfully authenticated to a webservice which returns a SAML 1.0 token. I am using Visual Studio 2005 with WSE 3. How do I parse out the SAML token so that I can send it to subsequent webservice calls?

0
56
Member Avatar for alapick

I’m working on a project that includes comparing XML files and I need a source code on Java to compare XML fragments. I’m using ExamXML from [url]http://www.a7soft.com[/url] to compare XML files but I need the Java source code.

Member Avatar for orko
0
569
Member Avatar for sathya_k_83

i am developing a project using jsp & servlet. i want create a xml from result set using document builder but when the servlet is executed it displays the Http Status 500 error tell me what to do . where to place that xml file is there other for writing …

Member Avatar for lookof2day
0
105
Member Avatar for joeandersen

Hello, community. I need a XML comparison tool, may be open source project, which I could use to compare XML files. Someone recommended A7Soft ExamXML from [URL]http://www.a7soft.com[/URL] but this is a shareware application. Thanks.

0
81
Member Avatar for sarath.koiloth

Hi friends, please help me to solve this. i need to read the elements from xml file.I am using sax api. My xml looks like this :-> <test> <test1>hello1</test1> <test2>hello2</test2> <test3>hello3</test3> </test> In my startElement(...){ elementName.equals("test"){ //I need to get all the elements inside the test element.ie test1,test2,test2.with out going …

Member Avatar for sarath.koiloth
0
111
Member Avatar for sarath.koiloth

Hi, i want to get an xml file from a web application. what are the procedures to access the file.

Member Avatar for sarath.koiloth
0
138
Member Avatar for Ninad

[B]I've following database structure (just junk values)[/B] [CODE] [ChannelID] [ChannelName] [ChannelCatID] [RSSFeedURL] 1 YouTube 1 ret 2 GoogleVideo 1 ert 3 MSNVideo 1 rtertert 4 ABC 2 retert 5 YahooVideo 1 erter 6 CBS 2 rtr 7 NBC 2 trtrt 8 ESPN 2 rt 9 FOX 2 rtrtttr 10 AOL …

Member Avatar for kb.net
0
184
Member Avatar for MattEvans

I'm working with a strange schema of my own invention, it has a requirement that certain structures can only contain other structures; but also that those structures can contain 'filters' that optionally sit between structures-in-structures, i.e, this would be a valid document fragment: [code="xml"] <entity> <material name="mat1"> <texture component="ambient" src="somepng.png"/> …

0
66
Member Avatar for nydana8

- Hi, I have an XML file that is a "Now Playing" title file generated by a radio software. I am trying to FTP this file to my web site. However, the file is missing the header tag & the end tag. I know I have to put in an …

Member Avatar for Fungus1487
0
100
Member Avatar for atplerry

PLS friends i an want to learn XML and SOAP what are the material that i need for it and where can i get the material for it PLS and the websit that really talk about it and its tutorial in which area is XMP and SOAP Important and there …

0
47
Member Avatar for spinaltoad

I cannot figure out the correct way to de-serialize a string passed via xml-rpc. If I print out the string I get [code] {'params': ['123', 3], 'methodName': 'function'} [/code] I could split the string, and then drop unwanted characters. But, that seems like the wrong way. Any help would be …

Member Avatar for spinaltoad
0
173
Member Avatar for simoneffe

Hi, I must save the content of my JTextArea in a file .XML, how? I read a post in this forum on this argument [url]http://www.daniweb.com/forums/thread18383.html[/url] , but there isn't the solution. Can you Help me? Thanks

Member Avatar for peter_budo
0
35
Member Avatar for stevestare

I’m selecting data from tables in a SQL Server 2000 data base, and putting the result into a Dataset. I’m writing the dataset out to a file in XML format using ds.WriteXml(myXmlWriter, XmlWriteMode.IgnoreSchema). The table names are in singular (i.e. table customer is called “customer”), if I have more than …

0
34

The End.