3,634 Topics

Member Avatar for
Member Avatar for Madiya122

I have following quary example. SELECT t1.TeamID, MemberList = substring((SELECT ( ', ' + FirstName ) FROM TeamInfo t2 WHERE t1.TeamID = t2.TeamID ORDER BY TeamID, FirstName FOR XML PATH( '' ) ), 3, 1000 )FROM TeamInfo t1 GROUP BY TeamID Its giving error "Incorrect syntax near the keyword 'FOR'." …

Member Avatar for Madiya122
0
1K
Member Avatar for smartidiot

Are there any tools available using which json/xml based web services can be generated directly from databases, at least for CRUD operations. Assume, I supply database credentials to the tool which shows me list of tables for which web service need to be generated, I select the tables and it …

Member Avatar for fastrecruitment
0
204
Member Avatar for Deep Modi

Hi, I am new on this all, I want to add RSS Feed to my website. But really i don't know about this anything. As I am on windows 7, The gadget RSS FEED (i look on it) and also view some pages like [THIS](http://windows.microsoft.com/en-us/windows7/Using-RSS-feeds) but the Question is How …

Member Avatar for Deep Modi
0
253
Member Avatar for momonq1990

hi sir! little bit lost here in php. Pls help! how can I add css file for may xml created from php? <?php bla bla bla..... ---------<?xml-stylesheet type="text/css" href="markers.css"?>-------how can i add this line? echo '<markers>'; while ($row = @mysql_fetch_assoc($result)){ echo '<marker '; echo 'name ="' . parseToXML($row['name']) . '" …

Member Avatar for Bachu
0
269
Member Avatar for nerlekar

Hi Guys, I am trying to apply Microsoft.XMLDOM object for all browsers support but i am not getting proper code or object. can anyone help me on this one. var nodes = new ActiveXObject("Microsoft.XMLDOM"); nodes.async = "false"; if (Comments.length > 0) { nodes.loadXML(Comments.item(0).xml); Thanks in advance. Gaurish

Member Avatar for pritaeas
0
50
Member Avatar for eburlea

Hello. I have a function that checks the internet connection. I need to set a timeout to it. I have tried without success to do that. Please help. Here is the function: function isOnline() { if(navigator.onLine){ var uri = baseUrl+'ping'; var xhr = new XMLHttpRequest(); xhr.open('GET',uri,false); try{ xhr.send(); return true; …

Member Avatar for stbuchok
0
199
Member Avatar for AffineMesh

I have two pages indexed by Google. I'll call them New Page and Old Page for the purpose of this question. Google prefers to show Old Page on in search results, possibly because it contains a couple more occurences of the keyword 'Page'. I'd like to use a sitemap to …

Member Avatar for AffineMesh
0
223
Member Avatar for RikTelner

Resource: http://www.w3schools.com/php/php_xml_simplexml.asp I wasn't able to Google it since I don't know how to form question. So lets say the **xml** file is <?xml version="1.0" ?> <major> <point>Tower</point> </major> </xml> I can retrieve it by using **PHP**: <?php $file = simplexml_load_file("file.xml"); echo "Well, the point in on ". $file->point ."."; …

Member Avatar for RikTelner
0
108
Member Avatar for de4ever
Member Avatar for Mike Askew
0
84
Member Avatar for desolatebeast

I have been working with xml for the first time and have gotten stuck with the saving/ loading aspect of it. I want the information from the text boxes to be saved to the xml file when the app closes, however when the app runs I can not close the …

Member Avatar for Fenrir()
0
741
Member Avatar for k.vijayakumar

Hi friends, I had an xml like <a text="asadf"> <b text="narsapur"> <c text="1234" /> <c text="statecag" /> <c text="Pending Approval" /> <c text="S Corp:Pending Approval" /> <c text="Composite:Pending Approval" /> <c text="Combined:Pending Approval" /> <c text="Form Status"> <d text="Approval Pending"> <e text="BITa" /> <e text="BITb" /> <e text="BPTbc" /> </d> …

0
113
Member Avatar for hanusoft

This is an example of Inserting and Retrieving data from xml file. [code]private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { BindGrid(); } } private void BindGrid() { ds = new DataSet(); try { ds.ReadXml(@"c:\inetpub\wwwroot\WebApplication10\XMLFile1.xml"); DataGrid1.DataSource = ds; DataGrid1.DataBind(); } catch(Exception …

Member Avatar for ramkumar8765
0
501
Member Avatar for khan.arshad3

I want please suggest me ho i can display discription properly under logo , it not fully expressed if you see my post, [Click Here](http://www.photobagh.blogspot.com)

Member Avatar for JorgeM
0
151
Member Avatar for pjrey

i am very, very very new to all of this.. seem to have got what i wanted for the most part.. i am putting a little weather widget on our business website... and have everthing working fine except sunset, sunrise... i think because it has subcatagories.. how do i pull …

Member Avatar for pjrey
0
313
Member Avatar for chnswam

Hi, I have a web service (deployed inside a Sharepoint site - though this is not important). I have a client - windows application where I call the web service to populate a grid & for other purposes like getting Sharepoint document library's fields, etc.,. In the winform's constructor, I …

Member Avatar for Angel Armando
0
810
Member Avatar for dealerit

I'm having an issue mail()ing XML in the ADF format to my CRM tool. In a nutshell, ADF stands for Auto-Lead Data Format ([url]http://www.autojini.com/ADF1_0.pdf[/url]) and is XML based and used by many auto dealer CRMs. The XML will work when sent as an email from Gmail over to the CRM …

Member Avatar for cbenedict
0
1K
Member Avatar for belwaer

I have this XML data I have this XML data <?xml version="1.0" encoding="UTF-8"?> <RESULT> <GRP ID="ITM0_1"> <FLD NAME="TCLCOD" TYPE="Char">BSMSL</FLD> <FLD NAME="ZTCLCOD" TYPE="Char">NégoceLot</FLD> <FLD NAME="FIL11" TYPE="Char"/> <FLD MENULAB="Actif" MENULOCAL="246" NAME="ITMSTA" TYPE="Integer">1</FLD> **<FLD NAME="ITMREF" TYPE="Char">BIS-001</FLD>** <FLD NAME="DES1AXX" TYPE="Char">Paquet biscuit salé MST</FLD> </GRP> <GRP ID="ADXTEC"> <FLD NAME="WW_MODSTAMP" TYPE="Char">20111122113508</FLD> <FLD NAME="WW_MODUSER" TYPE="Char">ADMIN</FLD> </GRP> </RESULT> …

Member Avatar for tinstaafl
0
144
Member Avatar for Exinta

In my project I have got a listview filled with contacts which are stored in a XML file. This is the connection between the two of these and basically this is how the contacts are loaded: Please note that first function is called on form loading: void LoadContacts() { string …

Member Avatar for Ketsuekiame
0
213
Member Avatar for Master Mascus

I have an xml file that i am extracing data from and displaying them in the logcat window. Now i need to display them in a textview anyone can help ? package com.example.news_services_week1; import java.io.IOException; import java.net.URL; import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; import org.xmlpull.v1.XmlPullParserFactory; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.AsyncTask; import …

Member Avatar for mustafaneguib
0
262
Member Avatar for MaddTechwf

I've got a small application that I need to read data from my data, which I already have setup. What I'm having issues with is taking that data and parsing it into a specific RSS layout. Can anyone help me with that? Here is an example of how I need …

Member Avatar for JorgeM
0
127
Member Avatar for suraj32

Hi, I've got this string when parsed a web page. string(41) "_result_ = {status:"OK", id:"30025", name:"John Doe", location:"India"}" I believe that this code is JSON. but when I use json_decode() , it returns NULL. Someone Please help me parse this string. Thank you. :)

Member Avatar for suraj32
0
187
Member Avatar for harde_1

We only talk about DTD and XML in class for 2 days and i have this assignment not sure if im doing it right or did everything that has been asked. Atleast i try, any help will be appreciated!! Assignment You have been asked to represent airport data where an …

0
187
Member Avatar for Ben Ashton

I am making a service that uses RSS feed and I am having a problem actually getting the data as it is not made up in the original sense of .title, .summary etc, below is the contents of each item. <table style="border-collapse: collapse; border-spacing: 0; color:#493800; font-size: 11px; border:solid 1px …

Member Avatar for Ben Ashton
0
251
Member Avatar for owenransen

I've had some reports that some SVG files I've created work, but without the text. Is there a problem of rendering SVG text on smartphones and browsers? Here are my test files: http://www.ransen.com/svg1.html http://www.ransen.com/svg2.html http://www.ransen.com/svg3.html The first two have very small text, but the last one has text which should …

0
117
Member Avatar for lerkei

Can anyolne help me in coverting .txt file to xml?..i tried codes from differrent sites but didn't help..please help,.........thanks in advance..

Member Avatar for irvg.davter
1
2K
Member Avatar for kroyal

Is there anybody can tell that how to creat RSS feed for Static site(HTML)?

Member Avatar for sahini
0
209
Member Avatar for Remy the cook

I am trying to extract blogs related to economy using the RSS feeds in python. I have no idea how to get a specific number of blogs and how to get those blogs in a particular domain (like economy). My project requires analysing these blogs using NLP techniques, but I'm …

Member Avatar for Remy the cook
0
2K
Member Avatar for webreaker

when I click on the link for the posts http://www.telechargercours.com/post-sitemap.xml I receive an error XML Parsing Error: not well-formed Location: http://www.telechargercours.com/post-sitemap.xml Line Number 14427, Column 34: <image:caption>L'Ordre SELECT Élémentaire</image:caption> any idea about this error?

Member Avatar for EvolutionFallen
0
256
Member Avatar for sachi9

The XML structure looks like this: <table> <method>insert</method> <rows> <foo></foo> <bar></bar> </rows> </table> I need to get the following XML using XSLT based on the value 'insert' of XML element 'method': <table> <method>insert</method> <rows> <row> <foo></foo> <bar></bar> </row> </rows> </table>

0
64
Member Avatar for rajeeeesh

How to extract data from xml file using xml minidom with respect to tags in xml file

Member Avatar for vegaseat
0
144

The End.