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