Forum: RSS, Web Services and SOAP 6 Days Ago |
| Replies: 6 Views: 576 I've seen several threads on the topic. Apparently it's not easily solved. |
Forum: RSS, Web Services and SOAP 7 Days Ago |
| Replies: 6 Views: 576 Ah. Okay, you can use htaccess to protect a folder on your server. The popup comes from the browser, but I think most do not have an option to remember the username. There is no way to control this... |
Forum: RSS, Web Services and SOAP 7 Days Ago |
| Replies: 6 Views: 576 An .htaccess file is designed to instruct apache what to do with certain requests. It is not for coding login forms etc. |
Forum: RSS, Web Services and SOAP 7 Days Ago |
| Replies: 2 Views: 280 You can just retrieve your news items from your database and feed them into a template, which will output your RSS xml. What language are you using ? |
Forum: RSS, Web Services and SOAP 23 Days Ago |
| Replies: 3 Views: 539 See this thread:
http://www.daniweb.com/forums/thread71755.html |
Forum: RSS, Web Services and SOAP 24 Days Ago |
| Replies: 3 Views: 539 The XmlDataSource is a .NET component, it won't run on a linux server. What language are you using ? PHP, Perl, Python, Ruby ? |
Forum: RSS, Web Services and SOAP 28 Days Ago |
| Replies: 9 Views: 787 You are also including displace.php. Could that be causing the extra lines ? |
Forum: RSS, Web Services and SOAP 29 Days Ago |
| Replies: 9 Views: 787 Look at the source of your page output: http://www.socialemo.com/rss.php
(view in browser, then view source)
There are 10 empty lines before the <?xml tag. They have to come from somewhere.... |
Forum: RSS, Web Services and SOAP 30 Days Ago |
| Replies: 9 Views: 787 There are spaces and empty lines before the first tag... make sure you remove them. |
Forum: RSS, Web Services and SOAP 31 Days Ago |
| Replies: 9 Views: 787 This is the header I'm using:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> |
Forum: RSS, Web Services and SOAP Oct 30th, 2009 |
| Replies: 3 Views: 1,179 Google has no request for retrieving the username/email. |
Forum: RSS, Web Services and SOAP Oct 30th, 2009 |
| Replies: 3 Views: 1,179 I can answer for Google OAuth: no. If you want to have the user's email address, then you can implement ClientLogin instead. However, I can't imagine that users are willing to supply their google... |
Forum: RSS, Web Services and SOAP Oct 14th, 2009 |
| Replies: 1 Views: 973 http://viralpatel.net/blogs/2009/06/restful-web-service-tutorial-introduction-rest-restful.html |
Forum: RSS, Web Services and SOAP Oct 14th, 2009 |
| Replies: 5 Views: 1,200 Yes, you can just code rss.php to output a valid xml file. |
Forum: RSS, Web Services and SOAP Oct 14th, 2009 |
| Replies: 5 Views: 1,200 Where is the information coming from ? In sites I've made, the RSS feed is generated by PHP and a template to show the 10 latest news items. The latest 10 should suffice, because most readers store... |
Forum: RSS, Web Services and SOAP Oct 8th, 2009 |
| Replies: 8 Views: 1,344 I only know of Servebase, but it is limited to the UK. |
Forum: RSS, Web Services and SOAP Oct 8th, 2009 |
| Replies: 8 Views: 1,344 Some, but not all. There are gateways which you can interface with through SOAP for example. You'll have to look for one though. |
Forum: RSS, Web Services and SOAP Oct 8th, 2009 |
| Replies: 1 Views: 1,064 Can you be more specific ? I'm sure you don't mean using FTP to upload an executable file. |
Forum: RSS, Web Services and SOAP Oct 8th, 2009 |
| Replies: 8 Views: 1,344 If you are not willing to use a payment gateway, it will be very hard to accomplish. To be able to do it without, you would need an agreement with a bank over the handling of the cards. Unless you... |
Forum: RSS, Web Services and SOAP Sep 14th, 2009 |
| Replies: 5 Views: 1,466 Do you mean for indexing ? It is possible to add it to Google Webmasters Tools as a sitemap. |
Forum: RSS, Web Services and SOAP Aug 17th, 2009 |
| Replies: 1 Views: 878 You can try this in google search:
link:www.crohole.com
But it will not show all, I'm sure. If you add your site to Google, Bing and/or Yahoo websmaster tools, you can get a more complete list,... |
Forum: RSS, Web Services and SOAP Aug 10th, 2009 |
| Replies: 1 Views: 914 You could add the need for an authorization token, much like e.g. the Google API key
You could setup your firewall to allow only verified hosts/ip addresses |
Forum: RSS, Web Services and SOAP Jul 29th, 2009 |
| Replies: 1 Views: 632 You can test your output and get feedback:
http://validator.w3.org/feed/check.cgi |
Forum: RSS, Web Services and SOAP Jun 29th, 2009 |
| Replies: 1 Views: 681 You could return your xhtml in a cdata block.
http://www.w3schools.com/xmL/xml_cdata.asp |
Forum: RSS, Web Services and SOAP Jun 25th, 2009 |
| Replies: 4 Views: 1,203 Hi. You can use this in your htaccess file
RewriteRule ^news.xml$ "news.php" [L]
It redirects news.xml to news.php.
In news.php you can use: |
Forum: RSS, Web Services and SOAP Jun 18th, 2009 |
| Replies: 4 Views: 1,203 Not possible from within an XML file. However, you could for example use a .htaccess file to redirect news.xml to a php file which will generate and output the XML. |
Forum: RSS, Web Services and SOAP Apr 21st, 2009 |
| Replies: 2 Views: 1,005 Missing:
<atom:link href="http://www.fallenangelunlimited.com/podcasts.xml" rel="self" type="application/rss+xml"/>
E-mail address should be in the form:
... |
Forum: RSS, Web Services and SOAP Apr 9th, 2009 |
| Replies: 1 Views: 1,121 You can create a login function that will return a kind of session-id, which is stored on the server in the database. Use this id as a parameter for other functions. If the user logs off or a certain... |
Forum: RSS, Web Services and SOAP Feb 28th, 2009 |
| Replies: 2 Views: 1,919 looks like it is not parsing the php. maybe it's best to separate the php and xml. personally i use smarty templates to build the rss.
my rss code looks like this:
<?php
require_once... |
Forum: RSS, Web Services and SOAP Nov 10th, 2008 |
| Replies: 6 Views: 2,792 Here's a good start:
http://www.west-wind.com/presentations/dotnetwebservices/DotNetWebServices.asp |