Hi:
All the port numbers for any of the BI Platform applications are determined at installation time, based on the "plan" that was drawn up for the site. That plan has the types of servers on which various pieces of the Platform will run.
As for whether the Stored Process Web Application will run on Unix or not, you would have to consult with Tech Support for the definitive answer. It says here
http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/requires.html#wik
that
SAS Web Infrastructure Kit and SAS Information Delivery Portal
The SAS Web Infrastructure Kit is installed on a servlet container and includes the SAS Stored Process Web Application. This Web application enables you to execute stored processes from a Web browser or other Web client. The SAS Information Delivery Portal includes the SAS Web Infrastructure Kit and provides the same Web access to stored processes.
In this documentation:
http://ftp.sas.com/techsup/download/web/wik_readme.html there IS a section on doing a UNIX install for the servlet container.
Further, it indicates that the setup directory for the Web Infrastructure Kit CAN be a UNIX directory:
On Unix systems, the default installation location is /usr/local/SAS/Web/Portal2.0.1.
So I think consulting with Tech Support is your best bet. They can help you figure out what plan was used for your installation and tell you the default port number that was recommended for the install. Of course, your systems people might not have used that default port.
For what it's worth, when I use the stored process web application on a single machine install in the classroom, I can invoke a stored process via URL using this Anchor tag:[pre]
<a target="new"
href="http://localhost:9090/SASStoredProcess/do?_program=/STP_Orion/Extra/testSPWA">
Test this stored process</a>[/pre]
This assumes that I have a Stored Process Repository called STP_Orion, with a sub folder of Extra and inside that location, I have a stored process with the name testSPWA. The metadata for the stored process points to the location of the .SAS file that should be executed by the Stored Process Web Application.
cynthia