Hello All,
I am running an apache web server here and I am getting the error below. Please help
[Tue Sep 16 19:27:50 2008] [error] [client 142.149.196.135] [ecid: 1221614870:172.30.42.10:24027:0:4,0] mod_plsql: /cores/get_manual_page HTTP-404 ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1029
ORA-29261: bad argument
ORA-06512: at " line 43
ORA-06512: at line 30
here is the modification that I made to my httd.conf file.
<VirtualHost 172.30.44.15:443>
ServerName cores.reg.gov.ac.uk
DocumentRoot "/appl/oracle/html/cores"
SSLEngine on
SSLWallet file:/etc/ORACLE/WALLETS/cores
SSLCipherSuite HIGH:MEDIUM
RewriteEngine on
RewriteRule ^/image/agslogo.gif$ - [L]
# redirect bad host names or VISTAS URLs to page of URLs
RewriteCond %{HTTP_HOST} !^cores\.reg\.gov\.ac\.uk [NC,OR]
RewriteCond %{REQUEST_URI} ^/vistas(/.*)?$ [OR]
RewriteCond %{REQUEST_URI} ^/docs/vistas(/.*)?$ [OR]
RewriteCond %{REQUEST_URI} ^/cores/cr_datadump\..*$
RewriteRule ^.*$ /badurl.htm? [PT,L]
# redirect old CORES manual URLs to bogus CORES manual URL
RewriteCond %{REMOTE_ADDR} !^172\.30\.44\..*$
RewriteRule ^/docs/cores/(.*) /cores/manual/$1 [R=302,L]
# redirect bogus CORES manual URL to CORES procedure
RewriteRule ^/cores/training/manual/(.*) /cores/training/get_manual_page?url=$1 [PT,L]
RewriteRule ^/cores/manual/(.*) /cores/get_manual_page?url=$1 [PT,L]
</VirtualHost>
I am running an apache web server here and I am getting the error below. Please help
[Tue Sep 16 19:27:50 2008] [error] [client 142.149.196.135] [ecid: 1221614870:172.30.42.10:24027:0:4,0] mod_plsql: /cores/get_manual_page HTTP-404 ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1029
ORA-29261: bad argument
ORA-06512: at " line 43
ORA-06512: at line 30
here is the modification that I made to my httd.conf file.
<VirtualHost 172.30.44.15:443>
ServerName cores.reg.gov.ac.uk
DocumentRoot "/appl/oracle/html/cores"
SSLEngine on
SSLWallet file:/etc/ORACLE/WALLETS/cores
SSLCipherSuite HIGH:MEDIUM
RewriteEngine on
RewriteRule ^/image/agslogo.gif$ - [L]
# redirect bad host names or VISTAS URLs to page of URLs
RewriteCond %{HTTP_HOST} !^cores\.reg\.gov\.ac\.uk [NC,OR]
RewriteCond %{REQUEST_URI} ^/vistas(/.*)?$ [OR]
RewriteCond %{REQUEST_URI} ^/docs/vistas(/.*)?$ [OR]
RewriteCond %{REQUEST_URI} ^/cores/cr_datadump\..*$
RewriteRule ^.*$ /badurl.htm? [PT,L]
# redirect old CORES manual URLs to bogus CORES manual URL
RewriteCond %{REMOTE_ADDR} !^172\.30\.44\..*$
RewriteRule ^/docs/cores/(.*) /cores/manual/$1 [R=302,L]
# redirect bogus CORES manual URL to CORES procedure
RewriteRule ^/cores/training/manual/(.*) /cores/training/get_manual_page?url=$1 [PT,L]
RewriteRule ^/cores/manual/(.*) /cores/get_manual_page?url=$1 [PT,L]
</VirtualHost>