3,634 Topics

Member Avatar for
Member Avatar for sandeepbhutani

Hi, I am making some loops using xsl:for-each. Now I want to concatenate strings of each iteration to the previous iteration results. And want to keep it in some variable for later use. e.g.: for each iteration suppose i get a,b,c. Now I want to put them in a variable …

Member Avatar for fpmurphy
0
51
Member Avatar for shers

Hi all, I'm creating a progam in C# that reads a file location at start up and displays the parent folders in a combo box. This file location may change in future. So I intend to keep this in an xml file and allow the user to change it when …

Member Avatar for LizR
0
3K
Member Avatar for chimbori

hello, i am using .net 1.1,vb ,i have 2 web applications.one is installed in client side server which is currently working offline(intranet)..other is at my side which is online website.frequently i have to give master data to client .So using httprequest and xml , i am giving him data.I have …

0
88
Member Avatar for gazpoole

Hi! First post :-) Relatively new to ASP.NET I'm building a lottery syndicate in ASP.NET 3.5 C# and I'm trying to filter an XML file to obtain this weeks lotto numbers and assign them to labels. Here is the XML: [url]http://www.schok.co.uk/lottery/lottery.xml[/url] how should I go about doing this? At the …

Member Avatar for gazpoole
0
83
Member Avatar for kaprasanna

Hello, Is it possible to write xpath expressions that will query a web server's web.xml like this one : [CODE] <web-app> <display-name>My Application</display-name> <!-- Standard Action Servlet Configuration (with debugging) --> <servlet> <servlet-name>TestServlet</servlet-name> <servlet-class>com.mycompany.MyServlet</servlet-class> </servlet> <!-- Standard Action Servlet Mapping --> <servlet-mapping> <servlet-name>TestServlet</servlet-name> <url-pattern>/first</url-pattern> </servlet-mapping> </web-app> [/CODE] I would want …

Member Avatar for fpmurphy
0
107
Member Avatar for jaiprakash15

Dear All.. I been working on XML for the past 2 weeks and am bit new to this concept..however i have put my effort to solve my problem.. I have suceeded in creating and appending a node to a XML file..But i have problem in Removing a node in a …

Member Avatar for jaiprakash15
0
168
Member Avatar for jaiprakash15

Dear fiends, Am Posting a Lot Nowadays.. Sorry if i had Disturbed you all...Hera my XML file..i Have to append a node below this..can some give me any idea how to do it..When i try..it is over writing the file i need to append <TaskName> <name>abc</name> <Value>3454</Value> </TaskName> following to …

Member Avatar for jaiprakash15
0
2K
Member Avatar for praveenrajmat

Hi... I need to split table based on a tag value. Please refer the below code which is the input xml for me [code] <exception> <funcid>Upld002</funcid> <header>Test1</header> <rec>Rec001</rec> </exception> <exception> <funcid>Upld003</funcid> <header>Test1</header> <rec>Rec001</rec> </exception> <exception> <funcid>Upld003</funcid> <header>Test2</header> <rec>Rec001</rec> </exception> [/code] From the above tags i'm generating table data with 3 …

0
85
Member Avatar for jaiprakash15

Dear All, AM creating a XML file from my Database. I have created Sucessfully and now i need to append a another node to this below XML file Ex : <TaskName Value="PS0002440" Status="Process" /> I use the following code to create this below XML file. Am passing the Value and …

0
97
Member Avatar for jaiprakash15

Dear Friends. I need to copy particular columns from a listview to a XML file. Example i need 1st and 3rd Columns data's to be copied to a XML file. Can any one help with any example code..How to get the Column data from a Listview.. Thanks and Regards, Jayaprakash

Member Avatar for jaiprakash15
0
147
Member Avatar for jaiprakash15

[COLOR="Red"]Dear friends, I am new To Vb.net World. I have to Create a XML file like as shown below. <Task> <TaskStatus ID="PS0002436" status="Start" /> <TaskStatus ID="PS0002435" status="Start" /> <TaskStatus ID="PS0002434" status="Start" /> <TaskStatus ID="PS0002432" status="Start" /> </Task> Is there any Code available for creating... i need to add the "Value" …

Member Avatar for jaiprakash15
0
105
Member Avatar for mana

hi i want to write a program to read , write and append xml using VB not VB.net i am new to VB and dont know what to do, any tips on what functions to use will be appreciated thanks in advance

Member Avatar for SCBWV
1
86
Member Avatar for madigital

Hi everyone! First post here. I've been programming for years but this xslt confuses the heck out of me. Can someone please tell me how to get this piece of code to work? It's a fragment reading in an rss feed and I'm trying to get it to only show …

Member Avatar for fpmurphy
0
215
Member Avatar for andrewrigsby

Hi, I'm trying (and failing!) to learn XSLT and XPath and have a (hopefully) simple question I'm hoping someone could help with. Ok, here goes ..... Are all XPath expressions evaluated relative to an axis? For example, given the following template: [CODE]<template match="element()">..</template>[/CODE] Is the implicit child axis included as …

Member Avatar for fpmurphy
0
75
Member Avatar for claimsready

Hi there, i have vb6 code that instantiates an MSSOAP.SoapClient, then, after i do the "SOAPClient.msoapinit urlWSDL", i invoke the remote method SOAPClient.searchPolicy(XMLin), and the following error is generated: "Invalid procedure call or argument", i found out that the property SOAPClient.faultstring has now this error string:"SoapMapper: Restoring data into SoapMapper …

0
70
Member Avatar for kissmyawesome

I've been scratching my head trying to figure this out. Basically I am trying io impliment the CSS selector ":only-of-type" in XPath 1. The selector should only pick elements that have no other siblings of the same type. Its simple enough if I know the type ahead of time. e.g. …

Member Avatar for fpmurphy
0
74
Member Avatar for bramoin

Hi, I have the following xsl file which will map an xml to form a word xml. At the top of the xsl, i have a param defined in the global section: <?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml"> <xsl:output method="xml" /> <xsl:param name="barCode" /> <xsl:template match="/"> In another …

Member Avatar for fpmurphy
0
153
Member Avatar for pankaj_Salwan

hi!! all i have a problem in jsp file...my file has a javascript function which is using xmldoc.load(mytext1.xml) function..when this file along with other files is bundled as an ear file and deployed on server .. it is not getting loaded in memory..bt as a standalone application it is working …

0
50
Member Avatar for khr2003

Hi I have an xml file which i am trying to display through a php script, it displays everything fine until i change the contents of the xml file to Arabic letters at which the file does not load. here is the xml file: [CODE]<?xml version="1.0"?> <studentmarks> <listName>name of the …

Member Avatar for khr2003
0
76
Member Avatar for aotonyleung

If i use the SUM function to sum those node with d.p. value....the output in sometimes are look strange...... [U]XML File[/U] <allgroup> <group_1 id="1"> <salary>100000.01</salary> </group_1> <group_1 id="2"> <salary>89000.02</salary> </group_1> <group_1 id="3"> <salary>89000.03</salary> </group_1> <group_1 id="4"> <salary>89000.04</salary> </group_1> <group_1 id="5"> <salary>89000.05</salary> </group_1> </allgroup> [U]XSL File[/U] <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output encoding='utf-8'/> …

Member Avatar for fpmurphy
0
117
Member Avatar for mawst

Hey guys I'm trying to see if someone can give me a nudge in the right direction here. All I need is two simple procedures: 1. Load XML Entries into TListBox 2. When ListBox is clicked, find string pointing to filename so I can display the item's associated file. My …

Member Avatar for mawst
0
134
Member Avatar for Tyster

Hi Folks, I am encountering what I think is a simple problem but I haven't been able to solve it. I am trying to parse a simple XML file and I keep getting the following exception... Exception in thread "main" javax.xml.transform.TransformerException: A location step was expected following the '/' or …

Member Avatar for quuba
0
1K
Member Avatar for veledrom

Hi, I created a XML file and trying to write into it. It does write but, without the values from database. For example code below writes only <Title></Title> without the value. It should be <Title>My name</Title>. I do echo and the variable is full. Value [code] ........ $xmlFileName="test.xml"; $process=fopen($xmlFileName, 'w'); …

Member Avatar for veledrom
0
79
Member Avatar for Techsavy

Hi, I have some data in a sharepoint List in the attached format and I would like to get an XSLT to be applied to get an xml output of the data in the following format: Type and ElementID are attributes of the Element. <Element Type= "Toplevel" ElementID="A" column8value="boolean" > …

0
67
Member Avatar for veledrom

Hi, This (DOM) display the data stored in XML formatted with a XSL file. Ik works fine. [code] $xslDoc = new DOMDocument(); $xslDoc->load("bookstore.xsl"); $xmlDoc = new DOMDocument(); $xmlDoc->load("bookstore.xml"); $proc = new XSLTProcessor(); $proc->importStylesheet($xslDoc); echo $proc->transformToXML($xmlDoc); [/code] I want to do it with (simplexml) with also including XSL. Code below displays …

0
59
Member Avatar for veledrom

Hi, I fill XML file manualy to print the data. How can we fill the XML file automaticaly like (data will be fetched from database and fill XML). Thanks [code] <catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> <company>Columbia</company> <price>10.90</price> <year>1985</year> </cd> </catalog> [/code]

0
52
Member Avatar for peter_budo

I tried to follow [url=http://www.netbeans.org/kb/61/websvc/gs-axis.html]Creating Apache Axis2 Web Services on NetBeans IDE[/url]. It worked for me till the point of [url=http://www.netbeans.org/kb/61/websvc/gs-axis.html#deploy_axis]deploying an Axis2 web service to the server[/url]. Once I select [b]Test Operation in Browser[/b] it does give me following Warning [code]Unable to open web service tester page: http://localhost:8080/axis2/services/HelloAxisWorld/hello?name=XYZ Make …

0
95
Member Avatar for complete

XML can do a very cool trick. If you include the name of an XSL file in the XML file, you can produce what looks just like a formatted HTML file when you load the XML file into a browser. The question I have is this. How would you actually …

0
82
Member Avatar for veledrom

Hi, This is my XML file. I want to retrieve information stored in a HTML Table in index.html page. How can i do it? Thanks [code] <?xml version="1.0" encoding="UTF-8"?> <memo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="memo.xsd"> <header> <companyName>XML development LTD</companyName> <to>myemail@yahoo.com</to> <from>xml@yahoo.com</from> <date>1979-11-07</date> <reg>I don't know the reg</reg> </header> <body> <message> <parag>Hello, How are …

Member Avatar for veledrom
0
159
Member Avatar for lerkei

reading a specific data in .txt file to put in specific tag in xml in vb.net..pls help.. sample: BL% PHP 103025 and so on... NL% .. .. BL% and NL% are indicators where data should be placed in a specific segment in xml PHP must be placed inside <currency></currency> tag.. …

Member Avatar for NEo4
0
205

The End.