Hi!
I´m trying con configure my standalone weblogic (10.3.6), running in development mode,
to find my forms 11 applications icons without use a jar file.
So, at formsweb.cfg i changed imageBase to documentBase and at Registry.dat i set
default.icons.iconpath=/img/
default.icons.iconextension=gif
Now I´m trying to map /img/ to may local directory (/img/ -> C:\repo\img)
I tried to change httpd.conf and didn´t work. When I access http://localhost:7001/img/myimage.gif, it returns 404.
Alias /img/ "C:\repo\img\"
<Directory "C:\repo\img">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Then, i tried to change forms.conf
AliasMatch /img/(..*) "C:\repo\img\$1"
But No change at all.
Does anyone know how to create a alias in weblogic in development mode?