473,544 Members | 2,299 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XML Forum

XML (Extensible Markup Language) - Ask questions about XML development, XML languages (RSS, xHTML, wsdl), trees, syntax, elements, attributes, validation, XSLT, DOM, parser, namespaces, CDATA, encoding, XML servers and more.
1
1,195
thread by: cswon9 | last post May 13 '07 by: drhowarddrfine
4. List all the orders with the total of each order displayed Similar to number 2, however, this time you need to show the subtotal for each orderline and the grand total of the order. An example of the output for a single order is as followed: Order Number:O8 Kevin Sheedy 10 High St Essendon Victoria 3622 Quantity Category Item Unit Price...
5
1,856
thread by: LavanyaM | last post May 15 '07 by: LavanyaM
hi all, I createed one xslt from that we can able to see new xml in web browser.but my doubt is, can we able to create a new xml using xslt? regards, M.Lavanya
3
9,669
thread by: Tarik Monem | last post May 16 '07 by: Tarik Monem
Here is the html code <?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <title>test xml import</title> <script type="text/javascript">
3
1,583
thread by: luthriaajay | last post May 16 '07 by: luthriaajay
Why is my xpath giving null for the the flwg <Configuration> <Listener.Whiteboard> <AQListener> <Product>A</Product> <Message.Class>XMLMessage</Message.Class> <Database> <URL></URL>
7
13,457
thread by: Tarik Monem | last post May 17 '07 by: Tarik Monem
Here's the latest snag in the code: I was able to retrieve data from the most of the xml files except for the xml files that contain attributes but I have yet to find a tutorial that explains the retrieval of the attributes of a node. Here's the XML: <episode> <title>Episode 101 - DECEMBER 5TH, 2006</title>
1
1,624
thread by: srinivasreddypn | last post May 17 '07 by: dorinbogdan
Hello everybody, Here i have a problem with xml. I need to open a popup when we clicked on the text "IMAGE" in the text "Select all of the items in this IMAGE that should be removed before washing your hands". The above text comes from a xml file into html file. All we need to have a popup for the text "IMAGE", when we clicked on it, and...
3
4,248
thread by: gant | last post May 17 '07 by: dorinbogdan
Hi All, I'm a Release Engineer responsible for implementing VSTS and TFS 2005 into our development environment. I am having an issue with the Microsoft's FCIV checksum utility. I am using it to create checksums across multiple servers for our proprietary software. When I create the FCIV XML database 3 out of the 4 servers matched. The one...
3
2,841
thread by: xscape | last post May 17 '07 by: dorinbogdan
Hi all, I have an XML file which contains a load of nested divs. I'm trying to write some XSL to create a new XML file with all the excess divs removed, but I want to retain the content and place this in paragraph tags. Here is a snippet of the code: <?xml version="1.0" encoding="UTF-8"?> <Content> <div> <div>this is some...
1
1,832
thread by: LavanyaM | last post May 17 '07 by: dorinbogdan
hi all, could you give me some open source standard tool for xml to xml mapper? Regards, Lavanya.M
4
1,561
thread by: wervis | last post May 17 '07 by: dorinbogdan
I want to deserialize a SOAP Header Element to a class using: XmlSerializer serializer = new XmlSerializer( typeof(Context)); Context context = serializer.Deserialize(new StringReader.xmlElementOuterXml)) When the code is executed a get an exception 'There is an error in XML document (1, 2).' The XmlElement from the SOAPHeader:...
1
1,127
thread by: janbp | last post May 17 '07 by: dorinbogdan
Hi, I just want to know how I would do the following: <root> <test type=”1” value=”1” display=”disp”/> <test type=”2” value=”100” /> </root> I want the ‘display’ attribute to be available for use depending on what the value for the ‘type’ attribute is.
1
2,505
thread by: saurcurban | last post May 17 '07 by: dorinbogdan
Hi, Following is the xml file: ------------------------------------- <?xml version="1.0" encoding="UTF-8"?> <wc> Delhi is the capital of India
2
1,837
thread by: annex | last post May 18 '07 by: dorinbogdan
I'm puzzeled. Last week I noticed that the slideshow on my site no longer works. www.annestahl.com I tried to fix it, but due to time restraints had to leave it. Then I noticed that my rss feed is down. Both are using xml files and after spending some more time on it, I realize that the slideshow does work - locally. and it loads the flash image,...
1
1,518
thread by: stvnegert | last post May 18 '07 by: dorinbogdan
When I try to do the following in a vb.net application: While xtr.Read() And recordCnt < loopCount If xtr.NodeType = XmlNodeType.Element Then If (xtr.Name = "Employee") Then recordCnt = recordCnt + 1 strWriter = New StringWriter UID = ""
2
2,511
thread by: ershad | last post May 18 '07 by: dorinbogdan
Hello, I want to add a namespaces to the root element in a XML-message using the XmlTextWriter class: My XML-stream looks like this: <?xml version="1.0" encoding="us-ascii" standalone="yes"?> <root> <session name="All about XML"> <slides>
3
1,372
thread by: gurumukhi82 | last post May 18 '07 by: dorinbogdan
How to send XML request from java to C++?
1
7,238
thread by: alpacabrian | last post May 19 '07 by: drhowarddrfine
I've been working on a Virtual Earth mapping browser application and ran into a problem where the app is popping up a message containing: There is an error in xml document(0, 0). - Thre is no Unicode byte order mark. I'm not sure where it's coming from. A Google search on the error seems to give only details on writing XML files, which I'm...
1
1,072
thread by: BBrumfield62 | last post May 19 '07 by: drhowarddrfine
Hi everyone. I am a newbie and not too good with computers, I was wondering if someone could give me an easy solution to a problem Im having on AOL. Everytime I try to access www.mycokerewards.com I get this error report: The XML page cannot be displayed Cannot view XML input using style sheet. Please correct the error and then click the...
3
1,808
abehm
thread by: abehm | last post May 21 '07 by: dorinbogdan
Hi, I have a method that inserts class data into a new xml document, however I would like to append the data after the last element of an existing xml document. here is the code I have: if anyone can offer any help or suggestions, that would be appreciated. public string Insert(string XMLFile) {
1
1,518
thread by: luthriaajay | last post May 21 '07 by: dorinbogdan
I need to add an attribute to an element in an XSD so that the output of my XML is: <Ext> <Order> <Status>New</Status> </Order>
1
3,299
thread by: neeludhiman | last post May 21 '07 by: alok156190
Hi friends, My problem is very simple. But I really need you help. I want to convert an XML file into plaintext format. e.g; I have following contents in XML file : <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE persons SYSTEM "http://mail.persistent.co.in/v1/addrbook.dtd"> <persons count="13"> <person...
2
1,714
thread by: zeeshansofi | last post May 21 '07 by: zeeshansofi
Hi The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. -------------------------------------------------------------------------------- A name was started with an invalid character. Error processing resource...
5
4,038
thread by: somanathan | last post May 21 '07 by: dorinbogdan
I have string like this jr:name=AdamAdamParoreAdamGilChrist I want to find the exact string here.Say for e.g If I want Adam it should give me only that string. If I use contains(jr:name,'Adam') It will give true for all the three strings i.e AdamAdamParoreAdamGilchrist.I want to do a exact string match.Is there any way to do like that?
2
1,199
thread by: swsdam | last post May 21 '07 by: swsdam
First I'm a newbie to XML. My admin is passing product info to me as XML. I was able to format my xml using a XSLT and make it look nice online. Now, I'm trying to print catalog pages from the formated xml to a pdf using a processor. OK. I can buy solutions there. But I have been asked to provide some control over what gets printed. So...
3
1,690
thread by: borikangel | last post May 22 '07 by: dorinbogdan
I'm trying to make a HTML with XSLT from XML code already made. On the page I can't see some information I want like: Item number, gender, size and price. Is suppose to be 15 row all with information. Thanks a lot for the helps ans tips! The XML Code is: <?xml version="1.0"?> <?xml:stylesheet type = "text/xsl" href = "catalog.xsl"?>...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.