3,634 Topics

Member Avatar for
Member Avatar for shareme

Hi I need to get values from xml file. I am trying to do this through JSTL.I worked out in following manner, [code]<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %> <%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml" %> <c:import url="/corporate/commonjs/YUI_js/validation/valid.xml" var="url" /> <x:parse xml="${url}" var="doc" /> <x:out select="$doc/validationcheck/required" /> My xml file contains, <validationcheck> <required>Required</required> <required>この項目は必須です</required> …

-1
36
Member Avatar for woodson

Hi, I have the string like [code]var test="<NewDataSet> <Table1> <S_x0020_No>1</S_x0020_No> <Defect_x0020_Causes>None</Defect_x0020_Causes> <Defect_x0020_Count>2614</Defect_x0020_Count> <Percentage>63.22</Percentage> <Cumulative_x0020_Percentage>63.22</Cumulative_x0020_Percentage> </Table1> </NewDataSet>"..[/code] So.i would like to convert the string into Xml document.. any idea.. Thanks & Regards, S.Sajan.

Member Avatar for digital-ether
0
69
Member Avatar for bhagya123

Using C#, how can you store an xml file in the protected storage? How can you retrieve and open that file from protected storage? Can anyone point me to a sample of code doing this? Thanks in Advance.

Member Avatar for bhagya123
0
49
Member Avatar for Thew

Hello, I have one problem with XML in Delphi 7 Ent. When I want to use XML classes or units like XMLDoc I always get this error when compiling: Unit XMLIntf was compiled with a different version of XMLDOM.DOMString Any suggestions how to solve this?

Member Avatar for LizR
0
33
Member Avatar for btech_Saurabh

Hi Community I am trying to get the CredentialCache.DefaultCredentials for my WebServices. but CredentialCache.DefaultCredentials =null, CredentialCache.DefaultCredentials have to get the Windows Username and password ........but why it is null? Domain name="" Username="" Password="" ......please any body tell me whats the reason behind this.........i have also put impersonate=true in web.config file.... …

0
97
Member Avatar for karang

Hi I am trying to use MSXML. But I am getting error in that so I explored internet and found one useful articles regarding the installation of MSXML [url]http://msdn.microsoft.com/en-us/library/ms758753(VS.85).aspx[/url] This article is about "Include Headers and Libraries Manually" But as per the instruction given in this article I have to …

Member Avatar for karang
0
156
Member Avatar for freshfitz

I am pulling info from zillow and then setting a price based on sq ft of the house. I am also using zillow to pull lat and lon to pull up a google map on the property the problem in some homes don't have sq footage and my cold fusion …

Member Avatar for freshfitz
0
170
Member Avatar for Typhoon

Hello, We just bought a CRM software and until today, each salesman had his own contact list in Outlook. I retrieved, for each of them, XLS files from Outlook and I copy-pasted it in one file. Thing is, now I have hundreds and hundreds of duplicate records :( . I …

Member Avatar for gtd
0
139
Member Avatar for rickya100

Hi, I have been trying to get resorts from an XML tree but I have found that it seems to be very flat and not helpful at all in terms of targeting information. Attribute names are all the same whether it is the world element, region of world element, country …

0
69
Member Avatar for adam291086

I am trying to read in a simple xml file and display all the child elements all i get is the error [QUOTE]Traceback (most recent call last): File "/Users/adamplowman/Documents/Uni/project/python/test_xml.py", line 10, in <module> for element in tree: TypeError: iteration over non-sequence[/QUOTE] Here is the xml file [CODE]<root><child>One</child><child>Two</child></root>[/CODE] and this is …

Member Avatar for adam291086
0
164
Member Avatar for fedderico10

Hey people, i am having the next easy problem but i dont find any answer on how to do that: Im using libxml2 to read a XML file, in one part of my code i need to compare two attributes from different nodes which are numbers (1,2,3,4,5,6...). The problem is …

Member Avatar for Paul.Esson
0
2K
Member Avatar for ksl

hello, I am having trouble dsipalying more than one value on the same line, I am not sure the exact way to go about this, <xsl:if test="/item/survey/pastCitations/citation[@REGVERS !='FV10']"> <xsl:attribute name="value-of">fixQuote(top[survey][pastCitations][ <xsl:value-of select="/item/survey/pastCitations/citation[@VTAG = $vtag] /@_name" /> [text]]) </xsl:attribute> </xsl:if> for this line I would like to dispaly the Text and …

Member Avatar for fpmurphy
0
87
Member Avatar for lg79

Hi, I would like to count all nodes "source" of "word" that start with the string "ABC". I can have multiple "word" inside a the element "wordGrp", as in entry/section/following-sibling::wordGrp/word/following-sibling::source For-each-group and a following count(current-group()) did not work for me, the XSLT processor returned "A sequence of more than one …

Member Avatar for fpmurphy
0
75
Member Avatar for Softwarez

I have the following XML: <?xml version = "1.0"?> <transactions> <transaction date = "05/22/2000" id = "0122"> <from account = "100392"/> <to account = "203921"/> <amount currency = "USD">15</amount> </transaction> <transaction date = "06/01/2000" id = "0129"> <from account = "203921"/> <to account = "877521"/> <amount currency = "USD">4800</amount> </transaction> …

Member Avatar for fpmurphy
0
129
Member Avatar for harrybern

Hi All I am trying to convert xml file to a text file. But my program creates an empty text file and does not copy any text from the xml file. Please help Thanks My code: Dim Doc As New XmlDocument Dim NodeList As XmlNodeList Doc.Load("C:\Temp\MyXml.xml") NodeList = Doc.SelectNodes("/response/TAG") Dim …

Member Avatar for sierrainfo
0
201
Member Avatar for crazydeveloper2

Hi, 1)Is it Possible to have multiple SOAP:body tags in one SOAP Message? 2)Is it Possible to have multiple SOAP:header tags in one SOAP Message? I need answers ASAP as i am studying for a certification tomorrow.

Member Avatar for yaronn01
0
63
Member Avatar for ShahzadMahmood

Regards for All, I am new in JSP and giving a web solution, I am using XML document to store data. I have a script which retrieves stored data from XML which is in JSP. Now I want to append more data at any level in XML document and want …

0
49
Member Avatar for odtaa

How easy is it to set a system to read RSS codes from say newspapers and filter them out to appear on my site. What I'm actually looking at is getting book reviews where I would investigate the feed headers - find a book or author and then link the …

0
140
Member Avatar for michux

In thread [url]http://www.daniweb.com/forums/thread157149.html[/url] I was asking for different alternatives for passing a node as a parameter to an XSL stylesheet called from Java using saxon. I set up on using the XdmNode object as a parameter for passing the parameter and here is a code extract: [code=java] // create a …

Member Avatar for michux
0
354
Member Avatar for kellogs

Hello, I would like to clarify one thing about SOAP security. My situation is like this: there is a web service server and some web service clients that I need to bring up using SOAP. This web service will only be used with my own clients and, perhaps some other …

Member Avatar for yaronn01
0
115
Member Avatar for michux

Hi, Here is my use case - I have a Java app from which I'm calling an XSLT to transform XML into HTML - The XSLT is a file in JAR - The XML is passed as a stream from another application Now, the problem is: - I need to …

0
397
Member Avatar for rickya100

Hi there, I am wondering if anyone here could tell me where I am going wrong with my XPath query. What I am using is below and is supposed to return me the URL attribute of the last Image element under the AccommodationSegment element. The if statement keeps getting run …

0
65
Member Avatar for SteelSlasher

I am making a web browser for the Wii and i think all new projects should start with research, anyway to me html looks very familiar to xml and i was wondering if an xml could parse html so i can send the parameters to a function to output all …

Member Avatar for Ezzaral
0
226
Member Avatar for coachHinesfan

Hello guys I was just wondering what Oracle is : is it a database or a language.

Member Avatar for Narue
0
96
Member Avatar for coachHinesfan

Hello everyone, I have a question for the users and developers of XML. How does it relate really to making web pages and web sites. I don't specifically understand exactly how it works in relation to the internet. I know it holds and transports data but how exactly is it …

Member Avatar for coachHinesfan
0
131
Member Avatar for ODD

Who do know a solution for the following issue: I need to program in XSL a check for double element is a part of the tree. xpath preceding-sibling does not check enough element of the tree and preceding to much. my tree like as: root | ---------------------------------------------------------------------------- | | | …

Member Avatar for fpmurphy
0
79
Member Avatar for aotonyleung

Hi, I need to do some sorting of the XML file. First, group the group_1 first and then sort those group_1 block by SORT_ID and Salary. Second, group the group_2 and then sort those group_2 block by SORT_ID. I just try the below and it works if the XML only …

Member Avatar for fpmurphy
0
139
Member Avatar for javajoe

I saw a little tutorial on placing a RSS feed in my website. I followed the instructions to the T...but still not working. Is there something special I need to do. Here is what I did: I went to Yahoo and picked the news sites I want on my sites...I …

Member Avatar for Steven Wevodau
0
202
Member Avatar for metabex

Hi there, I am somewhat new to PHP but catching on fairly well. However, I'm currently stumped. I would like to access the newest XML file in a folder. Right now my code is hardwired so everytime I want to see the newest file I have to actually enter it …

Member Avatar for Atli
0
115
Member Avatar for Bebbe

Hello forum! I'm new to this forum, but I hope someone will take the time to help me, I have been grappling with this for days. I would very much appreciate it if you could help me understand what I'm doing wrong/where my thinking is off target. I find this …

Member Avatar for Bebbe
0
82

The End.