Access files via iPlanet
Guide on making files accessible via iPlanet
this is based on Linux installed Oracle iPlanet Web Server version 7.0
Go to iPlanet web instance config directory
cd ~iPlanetDirectory/https-web_instance/config/
Look for web instance obj.conf file
vi ./web_instance-obj.conf
Add below configurations
Name it whatever (you desire) and use ppath (physical path) to catch the URL
<Object name=”whatever” ppath=”*/whatever/*”>
Set up methods and set it to internal and function to send files
Service method=”(GET|HEAD|POST)” type=”*~magnus-internal/*” fn=”send-file”
Setting variable on service headers to access control allow from anywhere
Output fn=”set-variable” insert-srvhdrs=”Access-Control-Allow-Origin: *”
</Object>