Hi,
I'm trying to develop a tool that pulls a variety of RSS feeds from remote sources and dumps those feeds into the Asset Publisher as Web Content items.
I've been reliably informed that this can be done via REST/Web Services, which would be ideal, since my application could then just make an HTTP call out to the appropriate service using something like Commons HttpClient or Spring RestTemplate.
I've been trying to get this set up with no joy so far.
I've added lines to the end of portal-ext.properties:
tunnel.servlet.hosts.allowed=127.0.0.1,SERVER_IP,<couple of other IP addresses>
tunnel.servlet.https.required=false
axis.servlet.hosts.allowed=127.0.0.1,SERVER_IP,<couple of other IP addresses>
And restarted a few times, but nothing seems to happen.
In the worst case, I could simply write the articles directly to the DB, but I'd rather not do this.
I've tried connecting to the tunnel-web portlet, but only get a 403:
From local machine:
http://localhost:8080/tunnel-web/axis ---> 403
http://localhost:8080/tunnel-web/secure/axis ---> 403
http://<machine_username>:<machine_password>@localhost:8080/tunnel-web/axis ---> 403
http://<machine_username>:<machine_password>@localhost:8080/tunnel-web/secure/axis ---> 403
Remotely:
http://<server>:8080/tunnel-web/axis ---> 403
http://<server>:8080/tunnel-web/secure/axis ---> 403
http://<machine_username>:<machine_password>@<server>:8080/tunnel-web/axis ---> 403
http://<machine_username>:<machine_password>@<server>:8080/tunnel-web/secure/axis ---> 403
I can't work out what I'm doing wrong, and documentation seems to be scarce around this.
How do I connect to tunnel-web, and is there a Web Service of some sort that will let me publish in this way already?
It sort of looks like the Atom Publishing Plugin came close to doing some of this, but it seems to have disappeared.
Many thanks,
Phil.
Please sign in to flag this as inappropriate.