6,049 Topics

Member Avatar for
Member Avatar for Clawsy

Hello, I manipulate XML with jQuery with no problem in all browseres but not in Internet Explorer. I serched bug-fix and I found "metadata.js" but still not working in my Internet Explorer 7 :sad: . Does anyone now a fix for this problem? It's just too nice to manipulate XML …

Member Avatar for anonymous2010
0
272
Member Avatar for Froger93

Hello All, I'm not sure if this is the right place to put this, I apologise for it any way. Okay so here it is, I have a sitemap file [icode]sitemap.xml[/icode] and I have PHP code inside it. The problem I am having is when adding the following lines: [code] …

Member Avatar for _coder
0
117
Member Avatar for ibdatx

Hi all, I am new to XAML however I have an understanding of XML. I am trying to bind a button to an XML file such that when the button is clicked, it the xml element is displayed within a listbox. Then I want the listbox selected item to be …

0
112
Member Avatar for VIeditorlover

Hi, I have an app generating xml output using xmlwriter. It is loooooong xml, hundreds of thousand of items, is not possible to keep it all in memory, and always few errors occurs. Is there a way how to cancel part of already writen xml within try-catch section and move …

Member Avatar for VIeditorlover
0
142
Member Avatar for breham

Hi, I have feed different XML files with different formats that I want to let users map to our database themselves. Example [code]<product> <details> <name>Product One</product> <cost>20.00</cost> <available>2</available> </details> <technical> <width>3.00</width> <height>2.10</height> </technical> </product> [/code] What I need to do is be able to loop through the XML document and …

0
48
Member Avatar for drake10k

Hello, I've enountered a problem whith saving to an XML file. My app receives user input in several text boxes and when the user hits the OK button it checks if the text boxes are empty. If they are not empty it saves the input to an XML file and …

Member Avatar for alc6379
0
187
Member Avatar for lgriess

I've posted this problem on several forums and no one has come up with the correct answer, but anyway here it goes: I've tried stringifying and querystring'ing the parameter but the Response error continues to be {"Message":"Object reference not set to an instance of an object.","StackTrace":" at ProvaReportLocale._Default.GetColumns() in \\ProvaReportLocale\\Default.aspx.cs:line …

0
60
Member Avatar for pritaeas

Below is the XML response you get from the W3C Validation API: [code=xml] <?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> <env:Body> <m:markupvalidationresponse env:encodingStyle="http://www.w3.org/2003/05/soap-encoding" xmlns:m="http://www.w3.org/2005/10/markup-validator"> <m:uri>http://www.pritaeas.net/</m:uri> <m:checkedby>http://validator.w3.org/</m:checkedby> <m:doctype>-//W3C//DTD XHTML 1.1//EN</m:doctype> <m:charset>utf-8</m:charset> <m:validity>true</m:validity> <m:errors> <m:errorcount>3</m:errorcount> <m:errorlist> <m:error> <m:line>10</m:line> <m:col>1</m:col> </m:error> <m:error> <m:line>12</m:line> <m:col>2</m:col> </m:error> <m:error> <m:line>14</m:line> <m:col>3</m:col> </m:error> </m:errorlist> </m:errors> <m:warnings> <m:warningcount>0</m:warningcount> <m:warninglist> </m:warninglist> …

Member Avatar for pritaeas
0
169
Member Avatar for xabi

After a day of trying to code a simple tutorial from a book I have come to a point where the keyboard is about to go through the monitor :) Can somebody please help me. I have an admin screen, code below [code=php] <?php require_once('Connections/nib.php'); ?> <?php if (!function_exists("GetSQLValueString")) { …

Member Avatar for kylegetson
0
92
Member Avatar for masocha

Can anyone assist me by telling me where and how to to get a live precious metal feed on my website. Thanks in advance

Member Avatar for pritaeas
0
84
Member Avatar for Niccloud

Hi i am trying to create an RSS feed for my mobile application. I seem to be getting an error that i cannot seem to solve. I was hoping someone here could enlighten me. index.php [code]<? header("Content-Type: application/xml; charset=ISO-8859-1"); include("RSS.class.php"); $rss = new RSS(); echo $rss->GetFeed(); ?> [/code] this is …

0
67
Member Avatar for kidwon

Hi guys, This below is my code: [CODE]<script language="javascript" type="text/javascript"> function bc () { var bc = document.getElementsByTagName("BusinessCard"); for (var i=0; i < bc.length; i++) { var create_card = document.createElement("div"); create_card.setAttribute("class" , "BusinessCard" ); create_card.setAttribute("className" , "BusinessCard" ); document.getElementsByTagName("body")[0].appendChild(create_card); } } </script> </head> <body onload="bc()" > <BusinessCard> <Name>Somebody Somewhere</Name> <phone …

Member Avatar for kidwon
0
130
Member Avatar for JOSheaIV

Okay I am working on a group project in class and I have to learn XML for it, would anyone be able to point me in the right direction. If I recall right we are using XML to communicate with a flash program we're building. ALso if anyone knows anything …

Member Avatar for iceandrews
0
100
Member Avatar for Borzoi

I am planning to start up a new business soon and part of it is selling online. I was planning on using PayPal in the early days to handle the payments until we can afford good enough security so that we can hold data such as credit card information ourselves. …

Member Avatar for Borzoi
0
216
Member Avatar for tekboi

Hi Coders, I recently found a script online that clears tweets from a twitter account. The script is written in coldfusion which is not supported by most web hosts as you guys know. I'm a programming newbie, so I want to know if it's possible to code this same script …

Member Avatar for MargaretAlbert
0
352
Member Avatar for chintan@dani

Hello Everybody, My site [url]www.mygospellove.com/[/url] is https based. It works fine in all major browsers but it shows system information message in IE. It shows site contains secure & nonsecure items. How i can resolve this issue..? Any help will be appreciated..

0
113
Member Avatar for Alxandr

I'm creating a xml-file from code using Linq to XML. The code is prety simple: [code=C#] XNamespace appvisumnamespace = XNamespace.Get("http://appvisum.com"); XDocument doc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), new XComment(""), new XElement("AppConfig", new object[] { (from section in this select section.ToXml()) })); foreach (XElement e in doc.Root.DescendantsAndSelf()) { if (e.Name.Namespace …

Member Avatar for Nemachtiani
0
174
Member Avatar for jeffrey.pry

Hey, I am trying to use multiprocessing via the Process module. I run two processes in unison and for some reason python or the os kills my process after roughly 50 seconds or during long processes (~3 min). I just get the following output: File 3 of 8 2010-10-11 13:28:09.090816: …

Member Avatar for woooee
0
165
Member Avatar for aizel

first of all happy 10/10/10 :twisted: btw i post my problem on my wordpress site here in javascript thread because i'm having a problem a problem on javascript script.. i am hoping you can help me with my problem the images can't read or open from the image folder. here …

Member Avatar for Airshow
0
292
Member Avatar for ashu.innominds

Hello everyone .. I am new to c# technology.. I am trying to write an app which store some data in a xml file... I am getting System.NullReferenceException ... Below is the code [CODE] public void StoreFeedData(string title,Uri url) { XmlDocument xmldoc = new XmlDocument(); XmlElement rss = xmldoc.CreateElement("rss"); XmlElement …

Member Avatar for Momerath
0
154
Member Avatar for reeves14

Need help counting the # of days between two dates (ex: 1/2/10 and 1/24/10) Better yet, the # of hours would be a great alternative.

Member Avatar for iceandrews
0
157
Member Avatar for redous

Hi, I have some PHP code in a project which if a user is logged in the in will display the username and other options and if the user is a guest it wont. [CODE] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Home</title> </head> <body> <!-- HTML …

Member Avatar for redous
0
199
Member Avatar for khurram.1987

when we call servlet from a JSP page .. explorer/program moves to servlet page .... Such in my scenareo i have JSP form that on submiting call servlet to retrieve data from XML .. But problem is that . i like that on submitin form servlet runs in background without …

0
84
Member Avatar for osirus

I recently acquired a dedicated hosting site from godaddy.com. I have a registered domain [url]www.realfucknlove.com[/url] that i use with my google blogger account. When I upload media files such as mp3s to my download folder in my hosting account the link looks like this [url]http://173.201.132.244/download/04%20-%20Freak%20Me%20Like%20(Instrumental).mp3[/url] I how would I replace …

0
118
Member Avatar for rohan_tahil

Can someone explain the difference between a web service and web app? and also if i am making a J2me app and want a user to get authenticated when he sends a login request to the server which 1 should i use? Do both perform all functions automatically without human …

Member Avatar for peter_budo
0
144
Member Avatar for tushartyagi

For my final year project, I plan to write a cloud server using Python. The client will be written by the other team member in Java. The first and foremost problem I have is make the necessary communication between the server and clients. For server to client talk, I thought …

0
62
Member Avatar for Sassy

[B]My PC has been infected with the [U]'Security Tool[/U]' spy ware. I think I have managed to successfully remove the spy ware from my system but could someone please take a look at my HiJack This log and tell me if there's something I've missed?[/B] Running processes: C:\Program Files (x86)\ASUS\ControlDeck\ControlDeckStartUp.exe …

Member Avatar for jholland1964
0
115
Member Avatar for drake10k

Hello, When I open my app an XML doc is created with several elements giving to each of them the value 0. After the XML is created I want that several labels on the form to change their text to spcific elements' values (in this case 0). Is there any …

Member Avatar for drake10k
0
782
Member Avatar for student89

hi i am using visual studio 2008 (c++ express edition )i have a generated code to handle xml parsing and i am trying to use this code in my project so i build a .lib file with these setting under precompiled header *create precompiled header * create\use stdafx.h * precompiled …

Member Avatar for Ancient Dragon
0
131
Member Avatar for mannyaz

please am writing my final year project on design and implementation of an xml database. pls i need any help i get. thanks.

Member Avatar for cale.macdonald
0
85
Member Avatar for milenio

Hi all, first i would like to apologize if my question seems out strange or not well define, but I've never do this before. here it is my problem: I have a txt file with a delimiters. I have a XML file that should be used to load the data, …

Member Avatar for iceandrews
0
245
Member Avatar for cinek

I'm alowing a user to save their "configuration" from a form to the database> I also want the user to be able to load that configuration back onto the form from the database. Now tbh I've got no idea how to do it. I'd like this to be done without …

0
94
Member Avatar for Spycat

Hello all, This doesn't seem that it should be terribly difficult to do, but of course it is (for me anyway). I own a golf site, and I would like to insert the world rankings, which is in an XML format file into an existing html file. I have applied …

Member Avatar for macgurl70
0
1K
Member Avatar for luckybutlost

Hi, I am trying to get some xml data using a jquery .post request, but it's not outputting anything. The client-side code looks like this [CODE] <html> <head> <script type="text/javascript" src="jquery-1.4.2.js"></script> <script type="text/javascript"> function cstarter() { window.einterval = setInterval("cst()", 5000); window.big = "hi"; } </script> <script type="text/javascript"> function cst() { …

Member Avatar for Taywin
0
110
Member Avatar for monstercameron

this code makes a slideshow(a very long fast slide show, video), it plays audio and can adjust its frame size. i have 4 streams(4 diferent groups of jpegs from 4-50kB @720x480), and can switch between them. audio is nearly automatically in sync and both it and the "video loops". using …

Member Avatar for monstercameron
0
341
Member Avatar for gishi

Hi Guys, I was hoping someone can help me with this. I have a python program that reads and writes files in utf-8(unicode). When I run it in Eclipse, the output is perfectly fine. When I try making an exe file of my program it is not working. I also …

Member Avatar for TrustyTony
0
370
Member Avatar for Lazarevski

Basically I'm using LINQ to connect to a database(LoginDB) and the table (Korisnici) and see if there are entries in the username and password column that fit the entries of the Login1 Login Control. The Error message is : Cannot implicitly convert type 'string' to 'bool' Cannot implicitly convert type …

Member Avatar for croker10
0
136
Member Avatar for GDICommander

Hi, everyone! I'm having grave difficulties with generated JAR bundles from Maven OSGI plugin in Netbeans. When running the bundle from Netbeans, all works fine. But when I'm taking the generated JAR file from Maven and I'm using it outside Netbeans from command prompt and with Felix (java -jar bin\felix.jar, …

0
87
Member Avatar for swebb

Hi all, I've just started to learn XSLT, so apologies if this question is very basic! I want to create a new html document, one of my elements in the XML file uses mixed elements. I want to do more complicated formatting using linked documents etc. but for the moment …

Member Avatar for iceandrews
0
282
Member Avatar for Aldius

Hello everyone! I just had a quick question about XSLT. I have a large xml file with many <DIMENSION_Id> nodes nested inside each other. In each <DIMENSION_Id> node there are two SYN tags: <SYN>String</SYN><SYN>Integer</SYN> What I am trying to do is take the furthest child node of each DIMENSION_Id and …

Member Avatar for Aldius
0
425
Member Avatar for chuckjessup

I have written two programs that need to use an exe.manifest file, when I attempt to run the either of the applications it says that it cannot start because the application configuration is incorrect. I will post below and hopefully someone knows what to do with it. [CODE] <?xml version="1.0" …

Member Avatar for chuckjessup
0
301
Member Avatar for Nattynooster

Hello Daniwebbers! I'm trying to pull information from an XML webpage but for some reason it just isn't working. The XML webpage looks a little like [code=xml] <?xml version="1.0" encoding="UTF-8"?> <item> <reqdat>Date and time</reqdate> <result>Completed</result> </item> [/code] I want to get the <reqdat> node, but everything I've tried hasn't worked …

Member Avatar for Nattynooster
0
90
Member Avatar for billybutlin

Hi, I am using visual studio 2008. I have a winforms app that takes data from an xml doc. I store the data in a ms sql database that I have created via a stored procedure. When Irun the app the data from the xml doc is captured and put …

Member Avatar for billybutlin
0
135
Member Avatar for jrhitokiri

I have this code: [CODE] function parse_aggregators_xml($aggregators_xml) { $simple_xml = new MySimpleXML(); return $simple_xml->xml_load_string($aggregators_xml, 'array'); } $xml = file_get_contents(XML_TEMPLATE); if (empty($xml)) return false; $data = parse_aggregators_xml($aggregators_xml); $data = json_decode(json_encode($data)); echo "<pre>";print_r($data );echo "</pre>"; [/CODE] the output of the xml is like this: [CODE] stdClass Object ( [aggregator] => Array ( …

Member Avatar for jrhitokiri
0
137
Member Avatar for Parthmishr

I use an xslt to get some ID attribute..when new xml file is built.. Here is a input xml file.. <page num="App. A-1"/> <title>Appendix A</title> <subtitle>The Thompson Memorandum</subtitle> <para align="left"><content-style font-style="bold">U.S. Department of Justice</content-style></para> <para>Office of the Deputy Attorney General</para> <para>The Deputy Attorney General</para> <para>January 20, 2003</para> <table frame="none" width="100%"> …

Member Avatar for iceandrews
0
114
Member Avatar for gishi

Hi Everyone, Do you know how i can get the values using Regular Expression between the opening and closing tags of xml files? I need to process xml files using python and i just need to get the values between tags. For example: [CODE]<name value>my name is </name value>[/CODE] i …

Member Avatar for Gribouillis
0
292
Member Avatar for effyl01

Hi, I have a very simple html page that loads an embedded object. It [URL="http://www.leibovich.org"]works great[/URL] in FF and shows nothing in IE. [CODE]<html> <head> </head> <body> <object style=""> <embed style="movie" width=100% height=98% src="http://picasna.com/widget/gallery.swf" FlashVars="xmlPath=picasna.com/widget/xml/&an=PlacesIVeBeenPicturesITook&ps=1024&un=effyl01&ts=163&cpad=20&tpad=20&cscheme=0&bt=0&ct=1&nick=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"> </embed> </object> </body> </html>[/CODE]

Member Avatar for rajarajan2017
0
101
Member Avatar for empyrean

helo all i wanted to import .csv file to my application [CODE] private DataSet ReadExcelData(string sFilePath) { DataSet dsOutput = new DataSet(); string sConnection = string.Empty; try { if (TypeExcel == "Excel 12.0 Xml") { sConnection = "provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + sFilePath + ";Extended Properties=\"Excel 12.0 Xml;HDR=YES;IMEX=1\""; } else if (TypeExcel …

Member Avatar for empyrean
0
2K
Member Avatar for mikemessiah

Hi there having a bit of an issue using a webservice for an application. Basically i need to consume the web service via a winform app that will run some data transformation routinues, create an xml file and then pass the xml file to the webservice. The advice I am …

0
73
Member Avatar for java_programmer

I am writing a tiny program to learn Spring framework. My application will just print a message which is binded with the view in the server side. My jsp is as follows : [CODE] <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <html> <body> <p>This is my message : ${message}</p> </body> </html> [/CODE] …

0
87

The End.