3,634 Topics

Member Avatar for
Member Avatar for alleybye

Hi I have a question, I want to transfer all nodes to a datarow Here is my XML <Employee> <person> <firstName>Jon</firstName> <lastName>Johnson</lastName> <skills>Singing</skills> <skills>Dancing</skills> </person> </Employee> THE HEADER TABLE SHOULD LOOK LIKE THIS WITH RELATION Profile_ID | Firstname | Lastname| 10 | Jon | Johnson | AND THE DETAIL TABLE …

Member Avatar for alleybye
0
298
Member Avatar for krovi

why we need to use abstract class instead of interface if we have all abstract methods in abstract class with out any implemented methods?

Member Avatar for pritaeas
0
39
Member Avatar for krovi

What is Inversion of control and Aspect Oriented Programming in Spring can you give one example

Member Avatar for pritaeas
0
65
Member Avatar for lse123

android eclipse environment... values-ru/string.xml appear error, that can NOT fix...well? > [2012-09-07 19:10:54 - mobi.androidprogramming.apps.SplashActivity] 'default' is not a best match for any device/locale combination. [2012-09-07 19:10:54 - mobi.androidprogramming.apps.SplashActivity] Displaying it with 'Locale Language ___Region __, sw320dp, w320dp, h533dp, Normal Screen, Long screen aspect ratio, Portrait Orientation, High Density, Finger-based …

0
61
Member Avatar for svilla

I have a Web Service I setup on the iSeries. It works when using SOAPUI and it works from the Built in test facility in the Native Web server. But when I try to access it form the following PHP program it fails to return any data. I am obviously …

0
102
Member Avatar for newbie1234

I have miniclip game's swf file. Before this game advertisement is coming. I want to remove that advertise script from swf file. Please guide me how to remove advertise script. So that i can play without any advertisement.

Member Avatar for pritaeas
0
60
Member Avatar for sritech97

Hi , I have an xml which is in the following format. <root> <x> <y> <uri>ssomeuri</uri> <date>2012-07-11T10:29:08+00:00</uri> </y> </x> <x> <y> <uri>ssomeuri2</uri> <date>2012-07-11T11:01:08+00:00</uri> </y> </x> </root> I wanted to get uris in the order of date. I am very new to xpath, can any body help me on this. the …

Member Avatar for Mike Askew
0
189
Member Avatar for WebStone

Hello Guys, Just wanted to ask on how to get the author names in the given xml sample below and put an attribut of eq="yes". EQ means Equal Contributors. This is the XML. <ArticleFootnote Type="Misc"> <Para>John Doe and Jane Doe are equal contributors.</Para> </ArticleFootnote> This should be the output in …

Member Avatar for Mike Askew
0
128
Member Avatar for reco21

Hello. I have this below SimpleXMLElement Object ( [item] => Array ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => plid_2 [name] => Playlist [ro] => ro ) [content] => SimpleXMLElement Object ( [name] => Playlist ) [item] => Array ( [0] => SimpleXMLElement Object ( [@attributes] …

Member Avatar for reco21
0
397
Member Avatar for lokesh.r.kandula

Hi Buddy, I have a requirement which is explained as below: 1. My input xml file is as shown: <input> <historicalObservation> <observationDate>20110111</observationDate> <observedRate>14.74</observedRate> <observationWeight>1</observationWeight> <observationType>fixing</observationType> </historicalObservation> <historicalObservation> <observationDate>20110111</observationDate> <observedRate>10.28</observedRate> <observationWeight>2</observationWeight> <observationType>fixing</observationType> </historicalObservation> <historicalObservation> <observationDate>20110111</observationDate> <observedRate>27.96</observedRate> <observationWeight>3</observationWeight> <observationType>fixing</observationType> </historicalObservation> <historicalObservation> <observationDate>20110111</observationDate> <observedRate>4.94</observedRate> <observationWeight>4</observationWeight> <observationType>fixing</observationType> </historicalObservation> <historicalObservation> <observationDate>20110225</observationDate> <observedRate>14.18</observedRate> <observationWeight>1</observationWeight> <observationType>fixing</observationType> </historicalObservation> …

Member Avatar for lokesh.r.kandula
0
365
Member Avatar for aplh_ucsc

this is my code:: <!--school.xml--> <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="school.xsl"?> <UCSC> <student> <name>Isuru ilangakoon</name> <age>21</age> <contct_no>0714234672</contct_no> <degree>computer science</degree> <school>DVharmapala college</school> </student> <student> <name>randika malinga</name> <age>22</age> <contact_no>0713567134</contact_no> <degree>computer science</degree> <school>Nalanda college</school> </student> <student> <name>vinod kawinda</name> <age>22</age> <contct_no>0783451024</contct_no> <degree>computer science</degree> <school>maliyadewa college</school> </student> <student> <name>Inshaf mahatt</name> <age>21</age> <contct_no>0777234151</contct_no> <degree>ICT</degree> <school>D.S.Senanayaka college</school> …

Member Avatar for f-aplh
0
146
Member Avatar for biblemdkeid

I've just made a xml with xsd and it returns errors (after doing xmllint) but I don't know what I've done wrong please help <?xml version="1.0"?> <theatre xmlns="file:///students/u4722839/2012_Sem_2/comp3410/practice/theatre" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="file:///students/u4722839/2012_Sem_2/comp3410/practice/theatre/theatre.xsd"> <movie> <title> Dark Knight </title> <genre> Thriller </genre> <director> Christopher Nolan </director> <rating> PG </rating> <time> 2 hours </time> </movie> …

Member Avatar for Mike Askew
0
1K
Member Avatar for Manu Krrish

XML,Excel Macros Hi I am working on some stuff where i need to Import the data present in XML file to excel sheet. i wrote below code for it Sub ImportXMLtoList() Dim strTargetFile As String Application.DisplayAlerts = False strTargetFile = "C:\BookData.xml" Workbooks.OpenXML Filename:=strTargetFile, LoadOption:=xlXmlLoadImportToList Application.DisplayAlerts = True End Sub But …

Member Avatar for AndreRet
0
808
Member Avatar for abbelylee

I am trying to extract specific values of element from xml document and produce an output of XML data or a CSV document and arrange them is this order. Locator designator Locator name Locator Thoroughfare Addressarea. current order: <Locator>1</Locator> <LocatorDesignator>Dwelling (Part Of), Null</LocatorDesignator> <thoroughfare>Abesinia Passage</thoroughfare> <AddressArea>Abesinia Passage</AddressArea> <LocatorName>Dwelling (Part Of)</LocatorName> …

Member Avatar for Mike Askew
0
208
Member Avatar for hellerz85

Hello, I would like to be able to Read from a CSV file that will have "fields", lets call them ID, Name, Price. I want to be able to create a seperate XML file for each row in the CSV file. Right now, i have it so it will read …

Member Avatar for nmaillet
0
510
Member Avatar for smarty470

Dear all, I have a website in which I am using the following htaccess code to hide the file extension RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php I then manually removed the .php extension from the entire website. Now when I am generating a site map …

Member Avatar for smarty470
0
186
Member Avatar for cacofonix

Hi All, I am newbie to XML. I want to create only one XML file each day automatically using php function with the following format. I want to use the same function for appending the follwing portion into the existing XML file ## This portion need to append whenever the …

Member Avatar for pritaeas
0
398
Member Avatar for kaito-poland

Hi every one. I have a problem with combinning two scripts. Fisrt script is working perfectly and taking stuf from mysql: function showUser(str) { if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new …

Member Avatar for kaito-poland
0
142
Member Avatar for thak123

I want to write XMl using xml text writer ..but i dont want to final output to be the special symbols with amp; format ..how can i do it

Member Avatar for nmaillet
0
62
Member Avatar for shraddha_gupta

I have created a userConfig file to add MSGOTHIC font to FOP. <fop version="1.0"> <renderers> <renderer mime="application/pdf"> <fonts> <!-- register a particular font --> <font metrics-url="file:/tmp/msmsgothic.xml" kerning="yes" embed-file="file:/tmp/msgothic.ttf"> <font-triplet name="MSGothic" style="normal" weight="normal"/> </font> <font metrics-url="file:/tmp/msmsgothic.xml" kerning="yes" embed-file="file:/tmp/msgothic.ttf"> <font-triplet name="MSGothic" style="normal" weight="bold"/> </font> </fonts> </renderer> </renderers> </fop> Now I have set …

0
189
Member Avatar for abbelylee

I have a java application that reads csv file and displays the data on a text area. the idea is to transform this data(source data) into a target data, this involves rearranging it and transforming some elements in each field. now i intend to transform this displayed csv data into …

Member Avatar for abbelylee
0
320
Member Avatar for abbelylee

i have a set of xml data from a database, i want to transform these data into a form that would conform to the target data. in the sense that the elements node would change and the text nodes will also be rearranged something like source <?xml version="1.0" encoding="UTF-8"?> <XMLCreators> …

Member Avatar for Mike Askew
0
219
Member Avatar for kiranaditya

hi i need to know about technology or tool which require regarding my project. can anyone please help me my project is Universal remote hmi(human machne interface) which should be 1.platform independent 2.should be able to run on any device (pc,tablet,android phone,windows phone) 3. if possible code of all langauge …

0
95
Member Avatar for nova37

hello i need little help with url rewriting i have page :: www.mysite.com/search.php?q=something desire url structure:: www.mysite.com/q/something .htaccess code :: RewriteRule q/(.*) search.php?q=$1 the above htaccess code work fine but i have little more htaccess code for my site .htaccess code :: RewriteRule www.(.*) web.php?url=$1 desire url structure:: www.mysite.com/www.daniweb.com so …

Member Avatar for nova37
0
164
Member Avatar for emurf59

I have a project where I need to get and count distinct values in tags in an XML document. If you look at the XML, I am specifically trying to count the distinct number of WorkOrderNumbers for Tuesday. Later I will do Monday and so on. I have tried the …

Member Avatar for emurf59
0
540
Member Avatar for thedancingbug

What does this mean? **Error Line 95, Column 56: end tag for "input" omitted, but OMITTAG NO was specified** <td><input type="button" value="Add to Cart"></td**> You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">". **Info …

Member Avatar for AleMonteiro
0
398
Member Avatar for thedancingbug

Hello. I am doing an assignment. I just need someone to validate that I did it correctly. According to the book I must: "set the default namespace for the document to the XHTML namespace". I'm a bit confused as to how to do it, but I did this: <?xml version="1.0" …

Member Avatar for rotten69
0
196
Member Avatar for riahc3

Im wondering if there is a program for building GUIs with XML where I can simply build it visually (WYSIWYG style) and copy/paste the code in my Android IDE. Thanks

Member Avatar for Mike Askew
0
52
Member Avatar for newbie1234

My blog is www.khazanakhoj.blogspot.in. In this blog i am not able to go to old post and next post. Even i opened particular blog, in that also its not coming. Is here any help regarding this problem.

Member Avatar for rotten69
0
148
Member Avatar for abbelylee

Am trying to import Xtream library for serializing csv data to xml but am having problems in adding this library to the ide i am using (bluej). what directory do i add. i added the whole directory but when i imported "import com.thoughtworks.xstream.XStream;" it kept telling me it does not …

Member Avatar for Mike Askew
0
68

The End.