MX RSS Reader-Writer Forum :: MX Rss writer - won't work

This thread was displayed: 552 times


Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.

For more information about the affected products visit: www.interaktonline.com/Support/

View Threaded Show descending
pauline moon
01-07-2007 15:14:44 GMT +2

Hi,

I'm pretty new to this sort of stuff but thought your product would be relatively easy to set up. I'm trying to create a newsfeed from an existing site and database.

I've set up the 'export' page as per your manual but when I try and view with browser I get the message HTTP 403.1 - Execute access forbidden.

My page code is as follows:

 

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="includes/MXRSS/MX_Rss.inc.asp" -->
<!--#include file="Connections/e365_news.asp" -->
<%
Dim rsItems
Dim rsItems_numRows

Set rsItems = Server.CreateObject("ADODB.Recordset")
rsItems.ActiveC /> rsItems.Source = "SELECT julsep03.news_title, julsep03.news_body  FROM julsep03;"
rsItems.CursorType = 0
rsItems.CursorLocation = 2
rsItems.LockType = 1
rsItems.Open()

rsItems_numRows = 0
%>
<%
'Start Channel RSS
 Dim MXRss: Set MXRss = new MX_RssWriter
 MXRss.setChannelProperty "title", "Energy 365 News"
 MXRss.setChannelProperty "link", "http://www.energy365og.com/export/"
 MXRss.setChannelProperty "description", "This is Energy 365 News"
   
'End Channel RSS

MXRss.setRssEncoding "iso-8859-1"

'Start Item RSS
 While not rsItems.EOF
  MXRss.addItem
  MXRss.setItemProperty "title", (rsItems.Fields.Item("title_nws").Value)
  MXRss.setItemProperty "description", (rsItems.Fields.Item("body_nws").Value)
  rsItems.MoveNext
 Wend
 MXRss.writeRssXML
'End Item RSS
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" c />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>
<%
rsItems.Close()
Set rsItems = Nothing
%>

 

Would be grateful for your help.

Pauline Moon

 

 

Back | Reply | Quote | Top
Ionut MOICIANU
01-09-2007 12:18:06 GMT +2

Hello,

I can't figure this out like this.. could you maybe provide URL and FTP access to your site in order to debug the problem? Post the info on a private reply.

Ionut

Reply | Quote | Top
MX RSS Reader-Writer 1.8.0
© Adobe Systems Romania. All rights reserved.