6,049 Topics
![]() | |
Problem is, The following code displaying the first node set out of results. I want to display all the results. PLS help. Private Sub cmdCallSoap_Click() Dim objResults As MSXML2.IXMLDOMNodeList Dim objNode As MSXML2.IXMLDOMNode Dim pstrPhpURL As String 'This is your web URL name Dim pStrFunction As String 'This is your … | |
[code] <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="Person"> <xs:complexType> <xs:sequence> <xs:element name="PersonGivenName" type="xs:string"/> <xs:element name="PersonSurName" type="xs:string"/> <xs:element name="StreetFullText" type="xs:string" minOccurs="0"/> <xs:element name="LocationCityName" type="xs:string" minOccurs="0"/> <xs:element name="LocationStateName" type="xs:string" minOccurs="0"/> <xs:element name="LocationPostalCodeID" type="xs:string" minOccurs="0"/> <xs:element name="ContactEmailID" type="xs:string" minOccurs="0"/> <xs:element name="TelephoneNumberFullID" type="xs:string" minOccurs="0"/> </xs:sequence> </xs:complexType> </xs:element> </xs:schema> [/code] this is my schema file … | |
Can some one please do a small XML / ASP coursework for me... I have no idea in the topic.. Had been sick for a couple of weeks and now the cw is due in August.. I am ready to pay for it as well... Please email me on [email]sk1017@mdx.ac.uk[/email] … | |
Hello. I've been using a very helpful AJAX-based script called [URL="http://www.gayadesign.com/diy/ajaxtwits-load-tweets-on-your-website-with-ajax/"]AJAXTwits[/URL] to load multiple Twitter timelines for a sports team into a div. The nice thing about the script is that it (1) combines multiple timelines into one chronological timeline and (2) caches the xml for faster loading. Every so … | |
hey guyz, i need help regarding web services here is code [code] Set oSOAP = Server.CreateObject("MSSOAP.SoapClient30") oSOAP.ClientProperty("ServerHTTPRequest") = True 'Initaialize the Web Service oSOAP.mssoapinit("http://buergerserviceschul.niedersachsen.de/modules/id/public/webservice/V4_00/doc_lit/?wsdl") '3e5c3d29701e79622c242d0e8d8f7675 res = SOAP.getAnliegen("myid","",true,true,true,"",Now()) [/code] now should this code work or not but in my case it wont work getAnliegen function returns array back but i … | |
I am using a Flash file that calls gallery.xml its hardcoded into the flash and i cant edit the flash file. the code in my page looks like [code=Coldfusion] <cfsavecontent variable="gallery"> <?xml version="1.0" encoding="UTF-8" standalone="no"?> <gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true"> <image> <url>http://www.modelproductions.com/proimages/avatar9.jpg</url> <caption><![CDATA[<font size="50">Example Gallery</font><br>An example large format <u><a … ![]() | |
Had a repeater giving out an rss xml data feed, but it took too long to load, so I'm using an ajax incremental page loader and need to get the xml into an innerhtml format so I can write it back to the page's div tag via a web service. … | |
I've create a custom field type in sharepoint with a custom editor to get some properties from the user while creating the column. But if i go to the create column page and select the radio button corresponding to my field i'm getting "Unknown error" error. What could cause the … | |
So i was on this gaming website. Out of nowhere popups came. this radio installer popped up in my icons tray. i click do not install. and this strange music keeps playing. "heal the world" and other crap. I have Norton 360 and Lavasoft Ad-Aware. Norton detected some things, and … | |
Hello there folks, hope you will be fine and in the best of your health. First of all I am using Windows Vista, Lately I have been having a problem with my internet explorer, it started out popping random ads and it was getting quite annoying, my anti-virus always detected … | |
I am creating a code in php to read the content of a file and save it in a php array. this is my code: [CODE] <?php $myFile = "isbn.txt"; $fh = fopen($myFile, 'r'); $i=0; $ans=array(); while(!feof($fh)) { $theData = fgets($fh); $url='https://isbndb.com/api/books.xml?access_key=RPGYD5PC&index1=isbn&value1='; $url1=$url.$theData; //echo $url1; $ans[$i]=$url1; $i++; } ?> [/CODE] … | |
Ive managed so far with this code that amends data to an xml form, but I need to figure out how to remove the bit of code that amends data rather than overwriting it. Ive messed around with the code to see if I could manipulate it myself to get … | |
Hello Everyone, I have an issue that is driving me crazy. I have a xml document and associated stylesheet. I simply want to be able to 1: declare a top level variable 2. Pass a variable value from the URL to the stylesheet so that, for example, if [url]http://someurl.com/index.php?id=3[/url] - … | |
I have a large xml file which contains news, articles, reviews, etc. I wanna use AJAX and get only news displayed in a [code]<div>[/code] | |
Hi All, My requirement is to develop an editor which should support XML,PHP,Python,DAT and normal file formats. I am trying to get information like: is there any free editor developed in PHP or some other langauage is available which can be customized or any idea to go ahead Regards, -Manoranjan | |
Hi! I'm creating metadata to a bunch of files and have problems figuring out how to do this. The python script should be able to create one xml document for each file in the directory. The problem is not to walk through the files but to create additional metadata to … | |
Hello all, In my WSDL I defined a float [CODE]<xsd:complexType name="M01_rowType"> <xsd:sequence> <xsd:element name="helpdTTSAvg" type="xsd:float"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="M01_tableType"> <xsd:sequence> <xsd:element name="helpdTTSVal" minOccurs="0" maxOccurs="unbounded" type="tns:M01_rowType"/> </xsd:sequence>[/CODE]I can also see from PHP that I received float values, however SOAP truncates the float to integer, whereas for instance 3.06 is trucated to … | |
Hello, I have lots of xml files in the same format and I need to modify a xml tag in these files. i loop over the files and apply sed to the files to make the modification but CPU goes to %100 while doing this. I think I'm doing something … | |
Hi. using the following code I am trying to read an xml stream [code] [code=vb.net] Do While (reader.Read()) Select Case reader.NodeType Case XmlNodeType.Element 'Display beginning of element. MsgBox("<" + reader.Name) Case XmlNodeType.Text 'Display the text in each element. MsgBox(reader.Value) Case XmlNodeType.EndElement 'Display end of element. MsgBox("</" + reader.Name + ">") … | |
Hi, I'm writing a .net wcf service that can return result in the form the user expects. So a user when adding a web reference to the service can also provide an xsd containing the type definition for the return type he expects and the service will include the xsd … | |
I am trying to extract keywords and image urls from this xml document (also attached) [URL="http://www.powerhousemuseum.com/collection/database/opensearch/new_tlf_feed.php?start=1&show=3"]http://www.powerhousemuseum.com/collection/database/opensearch/new_tlf_feed.php?start=1&show=3[/URL] It contains 3 /rss/channel/item elements each containing one /general element each general element contains many keyword elements each of which has a string element who's value i want. I can get XPathNodeIterator on /rss/channel/item … | |
Hi guys do anyone know how to change the code line from sql express to ms sql 2000. Below is my code help me to check it? web.config [CODE]<?xml version="1.0"?> <!-- Note: As an alternative to hand editing this file you can use the web admin tool to configure settings … | |
Hi, I have an xml document with the following line: [CODE]<title><![CDATA[HOME & DÉCOR]]></title>[/CODE] this xml document fails in IE7 and IE8 reporting invalid charcter at the E acute. However, FF3 is able to display it correctly. Some online sources suggest that IE is correct in identifying the invalid character. Can … | |
Hi Guys & Gals, I have a JS file for an AJAX app that works great in Firefox, Chrome, and Opera, but not in IE6 or IE7. The JS file is located here: [url]http://www.russwilliamsart.com/scripts/imago.js[/url] and the XML file it grabs info from is right here: [url]http://www.russwilliamsart.com/gallery/Giclees/gallery.xml[/url] I think the problem … | |
I spent last 10 hours trying to figure out how to extract attributes from this: [CODE]<yweather:wind chill="76" direction="230" speed="8" />[/CODE] RSS: [url]http://weather.yahooapis.com/forecastrss?p=78620[/url] [CODE]rsstxt1 = response[0].getElementsByTagName("yweather:wind").item(0).attributes[0].value;[/CODE] doesn't work. And I tried everything else. [CODE]response[0].getElementsByTagName("ttl").item(0).textContent[/CODE] works fine Just can't get any attribute values from tags with values instead of contents. :( Please … | |
I keep getting a pop up message upon boot up," Windows cannot find logon.exe". I have run complete cleaning process as you directed in your July 16th,2008 posting and am attaching the following four scanlogs as requested. MalwareBytes' Anti-Malware log ESET Online Scanner log Both logs from Deckard's System Scanner … | |
<div class="verticalTabContainer"> <div class="verticalTabContent"> <!-- Begin Vertical Tab Navigation --> <div class="verticalTabNavigation"> <ul> <li class="verticalTabNavigationCurrent verticalTabNavigationFirst"><a href="#vtab-overview">Overview</a></li> <li class="verticalTabNavigationPreviousCurrent"><a href="#vtab-features">Features & Benefits</a></li> <li><a href="#vtab-requirements">System Requirements</a></li> <li><a href="#vtab-demos">Demos/Tutorials</a></li> <li><a href="#vtab-awards">Awards/Certifications</a></li> <li><a href="#vtab-customer">Customer Stories</a></li> <li><a href="#vtab-news">News/Events</a></li> <li><a href="#vtab-resources">Resources</a></li> <li><a href="#vtab-community">Community</a></li> <li><a href="#vtab-support">Support</a></li> </ul> <div class="verticalTabNavigationVoid"><div class="verticalTabNavigationFill ie"></div></div> </div> <!-- End Vertical Tab … | |
Hi guy i got problem on the web configure when upload to iis and it come out this error Server Error in '/myTT' Application Configuration Error Error line 31=<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies></compilation> Below is my web config code: [CODE]<?xml version="1.0"?> <!-- Note: As an alternative to hand editing this … | |
Im trying to format my xslt form to a table that I have: Horsepower-Electric Values Revolutions Number of Disks blank num 1 num 2 num 3 rev1 hpe1 hpe2 hpe3 rev2 hpe4 hpe5 hpe6 rev3 hpe7 hpe8 hpe9 And so far, Ive gotten the xslt form to come out somewhat … | |
I want to design a website kind of like "Feedjournal" and "Tabbloid" that will get important rss feeds and blogs to make a newsletter for our company, and then auto email to all staff on set time intervals. I am very new and want to know how to start. What … | |
Hello guys, I need an expert advice if it is possible to code inside an XML file? Example, news.xml whereas in that file you have to code connecting to MySQL database then retrieve data. Generated data is the XML required tags for the RSS and will be written in similar … | |
Dear friends, I have this code which attempts to get the last modified date of an http resource: [CODE]request = urllib2.Request('http://www.imdb.com') >>> opener = urllib2.build_opener() >>> request.headers {} >>> first = opener.open(request) >>> first.headers.dict {'transfer-encoding': 'chunked', 'set-cookie': 'session-id=209.251.138.146.1246519635845007; path=/; domain=.imdb.com, uu=bN4RO5T1YWqLBgRAupwcdgCRSyzj0j26pvJ+qYPCXqmT117Zs9L+/LfGO4zGx50bwJFtjNPSXuqj8g4pgDJ+meCRbaoGcS2aoNZb7PiBbbqjkm66I/I+qSAyfpnj8l7qA/I+qTAyfpngkW2KBnEtmqDXe20AkW26oLFtuqC3KyrjwW26o5IOuZOyLtnAgc0ZsLFtuqCRbergwR2Ko=;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com, cs=xOA2Pyx3xsSbt7wMU8ZOhAbGfbqgkW2NmIHl2qPyXuoj8j6pMDJ+meCRbYoGES2aoJFb/feFHbqjsg7/p9HNySCRWyxAGW26oKdbraCRbbqgsW26oJFt+uDBHYqg==;expires=Fri, 03 Jul 2009 … | |
Can someone help me parse a XML string using SAX parser and then validate the same against the XSD defined' I have the program that works when I pass the input xml and xsd as arguments but my requirement involves passing a input string containing the target XML and the … | |
I need to pull out the information in the Document\Property(label = Individual Information)\value. The code I am using does not work, or I am not using it correctly. What would be the correct syntax? [ICODE] <?xml version="1.0"?> <fnApiResponse status="ok" xml:space="preserve"> <document idmId="12214" name="214214" label="me" class="Signature" version="1" mime="image/x-win-metafile" library="mylib" user="me" group="blah" … | |
Hey guys, am learning php/mysql and am trying to learn how to do the following. I have a database, and a form with 3 fields. I want fields 2 and 3 to be filled with data from mysql table immeadiately after field 1 receives a value. I think I am … | |
Hi Guys! I need help with something that I can't figure it out on my own. I'm working with an XSLT stylesheet that constructs some URLs that are finally presented as an html page. I want to add to one of those URL a variable that I know how to … | |
Hello everyone. I am trying to implement CDATA wrapping of values conditionally in XSLT. My requirements are: - If the value contains <, >, &, ", ' then it must be wrapped in CDATA in the transformed output. - if the value does not contain any of the above characters, … | |
Hi, I have been leaving this for a long time, and the truth is that I have tried in the past to clean this up, but its a nightmare. Computer is sooo slow, probably have some viruses, malware or something. How do I clean this mess up? Thanks in advance … | |
Can someone explain me on how to consume a sample java restful web service using .NET client using an example.I need a POST implementation example My requirement I need to read XML data from a .NET client and then process the same in Restful web service and then sent another … | |
Hi All, I have this requirement to do and am still scratching my head. Actually am not that comfortable with webservice but am still fighting and need some help. Here i go. I need to send xHTML content through webservice. Something like if someone calls my API he gets a … | |
Hey there, I'm not very good with coding and need to center my text layer that I created in Dreamweaver. I have read lots of threads but can't get the advice to work for me fully. I have attempted lots of tips so my code might be cluttered or wrong. … | |
Hello, I have XML , I am trying to create a xslt on these xml. <Qxml> <Qxml> <Net> <Property Name="DOCTOR" SName="DOC" LongDesc="YYY DOC" Code="666" STC="1"/> <Property Name="ENGINEER" SName="ENG" LongDesc="XXX ENG" Code="777" STC="2"/> <Property Name="TEACHER" SName="TEA" LongDesc="ZZZ TEA" Code="888" STC="3"/> <Property Name="CLERK" SName="CLE" LongDesc="TTT CLE" Code="999" STC="4"/> </Net> </Qxml> </Qxml> I … | |
Hi there, Has anyone used a DetailsView Control to Update an XML Datasource? I get an error when I try and implement the Autogenerated Edit/Delete/New buttons: Specified method is not supported. Any ideas? Thanks, Mapper | |
Hi all, I'm supposed to take an app which can parse the info of an xml document and output it into readable info, however I have no idea where to begin... This is what I have so far: [code] private void button1_Click(object sender, EventArgs e) { XmlTextReader read = new … | |
Hi to all! I am pretty new to Xpath and I am quite lost. I use Stylus Studio Prof for all things related to XML, and I've been struggling with this apparently simple question for a few days. If I have something like: [code] <sales> <person> <id> <tag>2345X</tag> <name>Doe, Joe</name> … | |
i have an XML-file that i want to clean up with an XLST-file and save it as an new XML-file. I am still a beginner but like to learn more. I have used a "for-each" function but i cant find what i am doing wrong. He loops the file, but … | |
Hi, Its bit urgent! Can someone please show me how to use nested loop. I have following XML file. I need to print amount in minus if any of the ApplicationReply value is credit, else the Amount should be positive. <xsl:for-each select="Reply/ApplicationReplies/ApplicationReply[@Name='credit']"> <xsl:if test="position() = 1"> <xsl:value-of select="concat($sep, $sign, /Reply/Amount,$sep)"/> … | |
I am developing a program that will be running on a server that another program, running on terminals somewhere else on the network, will be sending files with their status in some format (current I was thinking xml). Then my program will have to take the data and store it … | |
Hi, I have an application which is about harvesting the data from html pages, contains an interface. I had implemented it for (like customization of it) some html page to harvest. But jvm hitting me with - [ICODE] Exception in thread "main" java.lang.ExceptionInInitializerError Caused by: java.lang.RuntimeException: Uncompilable source code - … | |
Hi All, This is the parent issue that led to the post [B]Need help with getDOCTYPE() function[/B] ([url]http://www.daniweb.com/forums/thread196837.html[/url]) [B]USING THE BODY METHOD:[/B] The following code will properly get the viewable window area if no DOCTYPE is specified. [icode]document.getElementsByTagName("body")[0].clientWidth//Height[/icode] [B]OR[/B] [icode]document.body.clientWidth//Height[/icode] If DOCTYPE is XHTML ANY* the above code reports only … |
The End.