First I must thank Diego for newly updated README.
And then I have some question:
1.
I didn't understand from README (maybe because I'm a little or more
stupid :'( ) how can I use "producer" without installing Pluto and how
can I deploy a jsr168 portlet to "producer" manually. (The "producer"
itself is installed and works.)
2.
"- Point your browser to Pluto Portal Admin page:
http://localhost:8080/pluto/portal/adminportletapp"
It shows only an empty Pluto (1.0.1-rc2 downloaded form
http://archive.apache.org/dist/portals/pluto/) page for me, probably I
should do dependent steps manually. Is there any other idea?
3. A comment on:
"- Check that producer is working by pointing your browser to:
http://localhost:8080/wsrp4j-producer/WSRP4JProducer"
Another useful link for test is:
http://localhost:8080/wsrp4j-producer/services/WSRPServiceDescriptionService?method=getServiceDescription
Note that "/WSRP4JProducer" is replaced with "/services" the reason
lies in producer servlet-mapping (note /services/*):
<servlet-mapping>
<servlet-name>WSRP4JProducer</servlet-name>
<url-pattern>/WSRP4JProducer</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>WSRP4JProducer</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>