Bonjour

j'essai de construire un site où le code se situ dans les packages d'une base oracle.

Le problème est que lorsque je rentre l'adresse URL je ne comprend pas ce qu'il se passe.
et lorsque je clique sur OK pour obtenir le site :il me transforme l'adresse URL de la façon suivante
Du coup il ne trouve pas le site....
Quelqu'un a une idée?

voici mon HTTPD.conf
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
D:\oracle\oracle9i\Apache\Apache\conf\access.conf
 
 
#
ServerType standalone
 
ServerRoot "D:\oracle\oracle9i\Apache\Apache"
 
PidFile logs/httpd.pid
 
ScoreBoardFile logs/httpd.scoreboard
 
#
Timeout 300
 
KeepAlive On
 
MaxKeepAliveRequests 100
 
KeepAliveTimeout 15
 
MaxRequestsPerChild 0
 
#
ThreadsPerChild 50
 
LoadModule mime_magic_module 	modules/ApacheModuleMimeMagic.dll
LoadModule mime_module		modules/ApacheModuleMime.dll
LoadModule anon_auth_module 	modules/ApacheModuleAuthAnon.dll
LoadModule dbm_auth_module 	modules/ApacheModuleAuthDBM.dll
LoadModule digest_auth_module 	modules/ApacheModuleAuthDigest.dll
LoadModule cern_meta_module 	modules/ApacheModuleCERNMeta.dll
LoadModule digest_module 	modules/ApacheModuleDigest.dll
LoadModule expires_module 	modules/ApacheModuleExpires.dll
LoadModule headers_module 	modules/ApacheModuleHeaders.dll
LoadModule proxy_module 	modules/ApacheModuleProxy.dll
LoadModule rewrite_module 	modules/ApacheModuleRewrite.dll
LoadModule speling_module 	modules/ApacheModuleSpeling.dll
LoadModule info_module 		modules/ApacheModuleInfo.dll
LoadModule status_module 	modules/ApacheModuleStatus.dll
LoadModule usertrack_module 	modules/ApacheModuleUserTrack.dll
LoadModule dms_module   	modules/ApacheModuleDMS.dll
LoadModule perl_module         	modules/ApacheModulePerl.DLL
LoadModule oprocmgr_module      modules/ApacheModuleOprocmgr.dll
LoadModule fastcgi_module 	modules/ApacheModuleFastCGI.dll
LoadModule ssl_module         	modules/ApacheModuleSSL.DLL
 
ClearModuleList
AddModule mod_so.c
AddModule mod_mime_magic.c
AddModule mod_mime.c 
AddModule mod_access.c 
AddModule mod_auth.c 
AddModule mod_negotiation.c
AddModule mod_include.c 
AddModule mod_autoindex.c 
AddModule mod_dir.c 
AddModule mod_cgi.c 
AddModule mod_userdir.c
AddModule mod_alias.c 
AddModule mod_env.c 
AddModule mod_log_config.c 
AddModule mod_asis.c 
AddModule mod_imap.c
AddModule mod_actions.c 
AddModule mod_setenvif.c 
AddModule mod_isapi.c
AddModule mod_auth_anon.c
AddModule mod_auth_dbm.c
AddModule mod_auth_digest.c
AddModule mod_cern_meta.c
AddModule mod_digest.c
AddModule mod_expires.c
AddModule mod_headers.c
AddModule mod_proxy.c
AddModule mod_rewrite.c
AddModule mod_speling.c
AddModule mod_info.c
AddModule mod_status.c
AddModule mod_usertrack.c
AddModule mod_dms.c
AddModule mod_perl.c
AddModule mod_oprocmgr.c
AddModule mod_fastcgi.c
AddModule mod_ssl.c
 
ExtendedStatus On
 
Port 7778
 
Listen 7778
Listen 4443
 
ServerAdmin you@your.address
 
ServerName fixe_pierrot
 
 
DocumentRoot "D:\oracle\oracle9i\Apache\Apache\htdocs\DEV"
 
<Directory />
    Options FollowSymLinks 
    AllowOverride None
</Directory>
 
<Directory "D:\oracle\oracle9i\Apache\Apache\htdocs\DEV">
 
    Options Indexes FollowSymLinks MultiViews
 
    AllowOverride None
 
    Order allow,deny
    Allow from all
</Directory>
 
<IfModule mod_userdir.c>
    UserDir "D:\oracle\oracle9i\Apache\Apache/users/"
</IfModule>
 
#
<IfModule mod_dir.c>
    DirectoryIndex index.html
</IfModule>
 
#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess
 
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>
 
#
UseCanonicalName On
 
#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
<IfModule mod_mime.c>
    TypesConfig conf/mime.types
</IfModule>
 
DefaultType text/plain
 
#
<IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
</IfModule>
 
#
HostnameLookups Off
 
ErrorLog logs/error_log
 
LogLevel info
 
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
 
#
CustomLog logs/access_log common
 
#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
#CustomLog logs/referer.log referer
#CustomLog logs/agent.log agent
 
#
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog logs/access.log combined
 
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (error documents, FTP directory listings,
# mod_status and mod_info output etc., but not CGI generated documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of:  On | Off | EMail
#
ServerSignature On
 
<IfModule mod_alias.c>
 
    #
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL.  So "/icons" isn't aliased in this
    # example, only "/icons/"..
    #
    Alias /jservdocs/ "D:\oracle\oracle9i\Apache/Jserv/docs/"
    Alias /soapdocs/ "D:\oracle\oracle9i/soap/"
    Alias /icons/ "D:\oracle\oracle9i\Apache/Apache/icons/"
 
    <Directory "icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
 
    <IfModule mod_perl.c>
	Alias /perl/ "D:\oracle\oracle9i\Apache\Apache/cgi-bin/"
    </IfModule>
 
    #
    ScriptAlias /cgi-bin/ "D:\oracle\oracle9i\Apache\Apache/cgi-bin/"
 
    #
    # "D:\oracle\oracle9i\Apache\Apache/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    #
    <Directory "D:\oracle\oracle9i\Apache\Apache/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
 
</IfModule>
# End of aliases.
 
#
#
# Directives controlling the display of server-generated directory listings.
#
<IfModule mod_autoindex.c>
 
    #
    IndexOptions FancyIndexing
 
    #
    # AddIcon* directives tell the server which icon to show for different
    # files or filename extensions.  These are only displayed for
    # FancyIndexed directories.
    #
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
 
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
 
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
 
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
 
    #
    # DefaultIcon is which icon to show for files which do not have an icon
    # explicitly set.
    #
    DefaultIcon /icons/unknown.gif
 
    #
    ReadmeName README
    HeaderName HEADER
 
    #
    # IndexIgnore is a set of filenames which directory indexing should ignore
    # and not include in the listing.  Shell-style wildcarding is permitted.
    #
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
 
</IfModule>
# End of indexing directives.
 
#
# Document types.
#
<IfModule mod_mime.c>
 
    #
    AddLanguage da .da
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage he .he
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .se
    AddLanguage cz .cz
    AddLanguage ru .ru
    AddLanguage tw .tw
    AddCharset Big5         .Big5    .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866        .cp866
    AddCharset ISO-8859-5   .iso-ru
    AddCharset KOI8-R       .koi8-r
    AddCharset UCS-2        .ucs2
    AddCharset UCS-4        .ucs4
    AddCharset UTF-8        .utf8
 
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    #
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    #
    <IfModule mod_negotiation.c>
        LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
    </IfModule>
 
    
 
    AddType application/x-tar .tgz
 
    #AddHandler type-map var
 
</IfModule>
# End of document types.
 
#server-side-includes.
#
#    3) external redirects
#ErrorDocument 402 http://some.other_server.com/subscription_info.html
#  N.B.: Many of the environment variables associated with the original
#  request will *not* be available to such a script.
 
#
# Customize behaviour based on the browser
#
<IfModule mod_setenvif.c>
 
    #
    # The following directives modify normal HTTP response behavior.
    # The first directive disables keepalive for Netscape 2.x and browsers that
    # spoof it. There are known problems with these browser implementations.
    # The second directive is for Microsoft Internet Explorer 4.0b2
    # which has a broken HTTP/1.1 implementation and does not properly
    # support keepalive when it is used on 301 or 302 (redirect) responses.
    #
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
 
    #
    # The following directive disables HTTP/1.1 responses to browsers which
    # are in violation of the HTTP/1.0 spec by not being able to grok a
    # basic 1.1 response.
    #
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
 
</IfModule>
# End of browser customization directives
 
http://servername/server-status
# Change the ".your_domain.com" to match your domain to enable.
#
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost fixe_pierrot
</Location>
 
<IfModule mod_ssl.c>
#SSL Global Context
##
##  All SSL configuration in this context applies both to
##  the main server and all SSL-enabled virtual hosts.
##
 
#
#   Some MIME-types for downloading Certificates and CRLs
#
 
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl
 
 
#   Pass Phrase Dialog:
#   Configure the pass phrase gathering process.
#   The filtering dialog program (`builtin' is a internal
#   terminal dialog) has to provide the pass phrase on stdout.
SSLPassPhraseDialog  builtin
 
#   Inter-Process Session Cache:
#   Configure the SSL Session Cache: First either `none'
#   or `dbm:/path/to/file' for the mechanism to use and
#   second the expiring timeout (in seconds).
#SSLSessionCache        none
#SSLSessionCache        shm:logs\ssl_scache(512000)
SSLSessionCache         dbm:logs\ssl_scache
SSLSessionCacheTimeout  300
 
#   Semaphore:
#   Configure the path to the mutual explusion semaphore the
#   SSL engine uses internally for inter-process synchronization. 
SSLMutex sem 
 
#   Pseudo Random Number Generator (PRNG):
#   Configure one or more sources to seed the PRNG of the 
#   SSL library. The seed data should be of good random quality.
#   WARNING! On some platforms /dev/random blocks if not enough entropy
#   is available. This means you then cannot use the /dev/random device
#   because it would lead to very long connection times (as long as
#   it requires to make more entropy available). But usually those
#   platforms additionally provide a /dev/urandom device which doesn't
#   block. So, if available, use this one instead. Read the mod_ssl User
#   Manual for more details.
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
SSLLog      logs/ssl_engine_log
SSLLogLevel warn
 
</IfModule>
 
<IfModule mod_ssl.c>
##
## SSL Virtual Host Context
##
 
<VirtualHost _default_:4443>
 
#  General setup for the virtual host
DocumentRoot "D:\oracle\oracle9i\Apache\Apache\htdocs"
ServerName fixe_pierrot
ServerAdmin you@your.address
ErrorLog logs/error_log
TransferLog logs/access_log
Port 4443
 
#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on
ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
 
SSLCertificateFile conf\ssl.crt\server.crt
 
SSLCertificateKeyFile conf\ssl.key\server.key
+StrictRequire
<Files ~ "\.(cgi|shtml)$">
    SSLOptions +StdEnvVars
</Files>
<Directory "cgi-bin">
    SSLOptions +StdEnvVars
</Directory>
 
#   SSL Protocol Adjustments:
#   The safe and default but still SSL/TLS standard compliant shutdown
#   approach is that mod_ssl sends the close notify alert but doesn't wait for
#   the close notify alert from client. When you need a different shutdown
#   approach you can use one of the following variables:
#   o ssl-unclean-shutdown:
#     This forces an unclean shutdown when the connection is closed, i.e. no
#     SSL close notify alert is send or allowed to received.  This violates
#     the SSL/TLS standard but is needed for some brain-dead browsers. Use
#     this when you receive I/O errors because of the standard approach where
#     mod_ssl sends the close notify alert.
#   o ssl-accurate-shutdown:
#     This forces an accurate shutdown when the connection is closed, i.e. a
#     SSL close notify alert is send and mod_ssl waits for the close notify
#     alert of the client. This is 100% SSL/TLS standard compliant, but in
#     practice often causes hanging connections with brain-dead browsers. Use
#     this only for browsers where you know that their SSL implementation
#     works correctly. 
#   Notice: Most problems of broken clients are also related to the HTTP
#   keep-alive facility, so you usually additionally want to disable
#   keep-alive for those clients, too. Use variable "nokeepalive" for this.
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
 
#   Per-Server Logging:
#   The home of a custom SSL log file. Use this when you want a
#   compact non-error SSL logfile on a virtual host basis.
CustomLog logs/ssl_request_log \
          "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
 
</VirtualHost>                                  
</IfModule>
 
# mod_dms ifmod section
 
<IfModule mod_dms.c>
  <Location /dms0>
    SetHandler dms-handler
  </Location>
</IfModule>
 
<IfModule mod_perl.c>
#Perl Directives
#
#	PerlWarn On
#	PerlFreshRestart On
#	PerlSetEnv PERL5OPT Tw
#	PerlSetEnv PERL5LIB  "D:\oracle\oracle9i\Apache/perl/5.00503/lib:D:\oracle\oracle9i\Apache/perl/site/5.00503/lib"
	PerlModule Apache
#	PerlModule Apache::Status
	PerlModule Apache::Registry
#	PerlModule Apache::CGI
#	PerlModule Apache::DBI
#	PerlRequire
	<Location /perl>
       	    SetHandler  perl-script
            PerlHandler Apache::Registry
            AddHandler perl-script .pl
            Options +ExecCGI
            PerlSendHeader On
	</Location>
 
#	<Location /perl-status>
#           SetHandler  perl-script
#           PerlHandler Apache::Status
#           order deny,allow
#           deny from all
#           allow from localhost
#	</Location>
</IfModule>
 
 
 
 
# Setup of FastCGI module
 
<IfModule mod_fastcgi.c>
   Alias /fastcgi/ "D:\oracle\oracle9i\Apache\fastcgi/"
   ScriptAlias /fcgi-bin/ "D:\oracle\oracle9i\Apache\Apache\fcgi-bin/"
   <Directory "D:\oracle\oracle9i\Apache\Apache\fcgi-bin">
	AllowOverride None
	Options None
	Order allow,deny
	Allow from all
	SetHandler fastcgi-script
	SSLOptions +StdEnvVars
   </Directory>
</IfModule>
 
 
 
# Include the configuration for Apache JServ 1.1
include "D:\oracle\oracle9i\Apache\Jserv\conf\jserv.conf"
 
# Setup of oprocmgr module.
#
# This directive identifies each remote apache instance that will be
# sending requests to processes (e.g., JServs), managed by local Apache
# instances. This directive is used by the local process manager to share
# routing information with remote apache instances via non-SSL HTTP messages.
# The directive is repeated for each remote apache instance that will be
# sending requests. The ProcNode directive that refers to the local apache
# instance will be ignored, but may be supplied to facilitate uniformity
# in configuration across apache instances. Arguments to the ProcNode must
# be sufficient to reach the remote instance of apache via non-SSL HTTP
# messages. It is not considered an error if the remote apache instance is
# unreachable, as no assumption is made about the starting order or
# availability of apache instances.
# Syntax: ProcNode <hostname> <port>
# Example: ProcNode abc.com 7777
 
<IfModule mod_oprocmgr.c>
   ProcNode fixe_pierrot 7778
   <Location /oprocmgr-service>
     SetHandler oprocmgr-service
   </Location>
   <Location /oprocmgr-status>
     SetHandler oprocmgr-status
   </Location>
</IfModule>
 
# Include the Oracle configuration file for custom settings
include "D:\oracle\oracle9i\Apache\Apache\conf\oracle_apache.conf"
ALIAS "/DPNET"   "D:\oracle\oracle9i\Apache\Apache\htdocs\DEV"
Mon DAD est Bien configuré.