Bonjour,
Mon appli web marche en http, et je voulais le faire fonctionner sur du https.
J’ai suivis quelques tutos en configurant mon fichier server.xml. le fichier web.xml du coté de l'appli web. J’ai des erreurs qui sont parlantes mais sa fait un moment que je cherche la solution. C’est pour quoi je sollicite votre aide. Merci

server.xml j'ai ajouté ceci:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"  keyAlias="tomcat"
keystoreFile="java/temp.keystore" keystorePass="tomcat"/>
web.xml j'ai ajouté ceci:
<security-constraint>
<display-name>Security constarint</display-name>
<web-resource-collection>
<web-resource-name>Automatic SLL Forwarding
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
voici l'erreur:

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
 
3 févr. 2012 11:35:19 org.apache.catalina.core.AprLifecycleListener init
INFO: Loaded APR based Apache Tomcat Native library 1.1.22.
3 févr. 2012 11:35:19 org.apache.catalina.core.AprLifecycleListener init
INFO: APR capabilities: IPv6 [false], sendfile [true], accept filters [false], random [true].
3 févr. 2012 11:35:19 org.apache.catalina.startup.SetAllPropertiesRule begin
ATTENTION: [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'clientAuth' to 'true' did not find a matching property.
3 févr. 2012 11:35:19 org.apache.catalina.startup.SetAllPropertiesRule begin
ATTENTION: [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'keystoreFile' to 'java/temp.keystore' did not find a matching property.
3 févr. 2012 11:35:19 org.apache.catalina.startup.SetAllPropertiesRule begin
ATTENTION: [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'keystorePass' to 'tomcat' did not find a matching property.
3 févr. 2012 11:35:20 org.apache.coyote.http11.Http11AprProtocol init
INFO: Initialisation de Coyote HTTP/1.1 sur http-8080
3 févr. 2012 11:35:20 org.apache.coyote.http11.Http11AprProtocol init
GRAVE: Erreur à l'initialisation du point de contact
java.lang.Exception: No Certificate file specified or invalid file format
	at org.apache.tomcat.jni.SSLContext.setCertificate(Native Method)
	at org.apache.tomcat.util.net.AprEndpoint.init(AprEndpoint.java:733)
	at org.apache.coyote.http11.Http11AprProtocol.init(Http11AprProtocol.java:107)
	at org.apache.catalina.connector.Connector.initialize(Connector.java:1049)
	at org.apache.catalina.core.StandardService.initialize(StandardService.java:703)
	at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:838)
	at org.apache.catalina.startup.Catalina.load(Catalina.java:538)
	at org.apache.catalina.startup.Catalina.load(Catalina.java:562)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:261)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
3 févr. 2012 11:35:20 org.apache.catalina.core.StandardService initialize
GRAVE: Failed to initialize connector [Connector[HTTP/1.1-8443]]
LifecycleException:  L'initialisation du gestionnaire de protocole a échoué: java.lang.Exception: No Certificate file specified or invalid file format
	at org.apache.catalina.connector.Connector.initialize(Connector.java:1051)
	at org.apache.catalina.core.StandardService.initialize(StandardService.java:703)
	at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:838)
	at org.apache.catalina.startup.Catalina.load(Catalina.java:538)
	at org.apache.catalina.startup.Catalina.load(Catalina.java:562)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:261)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
3 févr. 2012 11:35:20 org.apache.coyote.ajp.AjpAprProtocol init
INFO: Initializing Coyote AJP/1.3 on ajp-8009
3 févr. 2012 11:35:20 org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 879 ms
3 févr. 2012 11:35:20 org.apache.catalina.core.StandardService start
INFO: Démarrage du service Catalina
3 févr. 2012 11:35:20 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.35
3 févr. 2012 11:35:20 org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Déploiement du descripteur de configuration host-manager.xml
3 févr. 2012 11:35:20 org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Déploiement du descripteur de configuration manager.xml
3 févr. 2012 11:35:20 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive classloaders.war de l'application web
3 févr. 2012 11:35:20 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive web_projet_web_site.war de l'application web
3 févr. 2012 11:35:21 org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
DEBUG Authentication - Authentication started
INFO  MLog - MLog clients using log4j logging.
INFO  C3P0Registry - Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
INFO  Environment - Hibernate 3.3.2.GA
INFO  Environment - hibernate.properties not found
INFO  Environment - Bytecode provider name : javassist
INFO  Environment - using JDK 1.4 java.sql.Timestamp handling
INFO  HbmBinder - Mapping class: web.user.model.UnifTableCfgUser -> UNIF_TABLE_CFG_USER
INFO  HbmBinder - Mapping class: web.user.model.UnifTableModules -> UNIF_TABLE_MODULES
INFO  HbmBinder - Mapping class: web.user.model.UnifTableUsersModules -> UNIF_TABLE_USERS_MODULES
INFO  LocalSessionFactoryBean - Building new Hibernate SessionFactory
INFO  ConnectionProviderFactory - Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
INFO  AbstractPoolBackedDataSource - Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 3, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c3p0.impl.DefaultConnectionTester, dataSourceName -> 2su0v38lij2pafwhodyb|1d264bf5, debugUnreturnedConnectionStackTraces -> false, description -> null, driverClass -> oracle.jdbc.driver.OracleDriver, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, identityToken -> 2su0v38lij2pafwhodyb|1d264bf5, idleConnectionTestPeriod -> 3000, initialPoolSize -> 3, jdbcUrl -> jdbc:oracle:thin:@nr0u0405:1522:CRCD01P0, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 0, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 100, maxStatements -> 50, maxStatementsPerConnection -> 0, minPoolSize -> 5, numHelperThreads -> 3, numThreadsAwaitingCheckoutDefaultUser -> 0, preferredTestQuery -> SELECT 1;, properties -> {user=******, password=******}, propertyCycle -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 0, usesTraditionalReflectiveProxies -> false ]
INFO  SettingsFactory - RDBMS: Oracle, version: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning and Data Mining options
INFO  SettingsFactory - JDBC driver: Oracle JDBC driver, version: 9.2.0.8.0
INFO  Dialect - Using dialect: org.hibernate.dialect.Oracle10gDialect
INFO  TransactionFactoryFactory - Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory
INFO  TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
INFO  SettingsFactory - Automatic flush during beforeCompletion(): disabled
INFO  SettingsFactory - Automatic session close at end of transaction: disabled
INFO  SettingsFactory - JDBC batch size: 15
INFO  SettingsFactory - JDBC batch updates for versioned data: disabled
INFO  SettingsFactory - Scrollable result sets: enabled
INFO  SettingsFactory - JDBC3 getGeneratedKeys(): disabled
INFO  SettingsFactory - Connection release mode: auto
INFO  SettingsFactory - Default batch fetch size: 1
INFO  SettingsFactory - Generate SQL with comments: disabled
INFO  SettingsFactory - Order SQL updates by primary key: disabled
INFO  SettingsFactory - Order SQL inserts for batching: disabled
INFO  SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
INFO  ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
INFO  SettingsFactory - Query language substitutions: {}
INFO  SettingsFactory - JPA-QL strict compliance: disabled
INFO  SettingsFactory - Second-level cache: enabled
INFO  SettingsFactory - Query cache: disabled
INFO  SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
INFO  SettingsFactory - Optimize cache for minimal puts: disabled
INFO  SettingsFactory - Structured second-level cache entries: disabled
INFO  SettingsFactory - Statistics: disabled
INFO  SettingsFactory - Deleted entity synthetic identifier rollback: disabled
INFO  SettingsFactory - Default entity-mode: pojo
INFO  SettingsFactory - Named query checking : enabled
INFO  SessionFactoryImpl - building session factory
INFO  SessionFactoryObjectFactory - Not binding factory to JNDI, no JNDI name configured
INFO  HibernateTransactionManager - Using DataSource [com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 3, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c3p0.impl.DefaultConnectionTester, dataSourceName -> 2su0v38lij2pafwhodyb|1d264bf5, debugUnreturnedConnectionStackTraces -> false, description -> null, driverClass -> oracle.jdbc.driver.OracleDriver, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, identityToken -> 2su0v38lij2pafwhodyb|1d264bf5, idleConnectionTestPeriod -> 3000, initialPoolSize -> 3, jdbcUrl -> jdbc:oracle:thin:@nr0u0405:1522:CRCD01P0, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 0, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 100, maxStatements -> 50, maxStatementsPerConnection -> 0, minPoolSize -> 5, numHelperThreads -> 3, numThreadsAwaitingCheckoutDefaultUser -> 0, preferredTestQuery -> SELECT 1;, properties -> {user=******, password=******}, propertyCycle -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 0, usesTraditionalReflectiveProxies -> false ]] of Hibernate SessionFactory for HibernateTransactionManager
DEBUG GetExportCSV - GetExportCSV started
DEBUG AddVersion - AddVersion started
DEBUG ChangeEtapeMere - ChangeEtapeMere started
DEBUG DeleteEnvir - DeleteEnvir started
DEBUG DeleteProject - GetProject started
DEBUG GetDecisions - GetDecisions started
DEBUG FindIndicateurs - GetIndicateur started
DEBUG FindProject - GetProject started
DEBUG GenerateEtapeOfLastRun - GetTree started
DEBUG GetAllTablesLiees - GetListTablesLiees started
DEBUG GetCurrentVersion - GetCurrentVersion started
DEBUG GetDecision - GetDecision started
DEBUG GetDecisionDetail - GetDecisionDetail started
DEBUG GetEnvirDetails - GetEnvirDetails started
DEBUG GetEnvirs - GetEnvirs started
DEBUG GetEtapeDetails - GetEtapeDetails started
DEBUG GetEtapeHumaine - GetEtapeHumaine started
DEBUG GetEtapes - GetEtapes started
DEBUG GetEtapesChildren - GetEtapesChildren started
DEBUG GetEtapesMere - GetEtapesMere started
DEBUG GetIndicateurDetails - GetIndicateurDetails started
DEBUG GetIndicateurFormule - GetIndicateurFormule started
DEBUG GetIndicateurs - GetIndicateur started
DEBUG GetIndicateursWithoutDuration - GetIndicateur started
DEBUG GetInOutEtapesFromEnvir - GetInOutEtapesFromEnvir started
DEBUG GetInOutEtapesFromIndicateur - GetInOutEtapesFromIndicateur started
DEBUG GetInOutEtapesScriptAll - GetTree started
DEBUG GetInOutFromEtapes - GetInOutFromEtapes started
DEBUG GetLastTablesLiees - GetLastTablesLieesIdentifier started
DEBUG GetListTablesLiees - GetListTablesLiees started
DEBUG GetLogs - GetLogs started
DEBUG GetProjectDetails - GetProjectDetails started
DEBUG GetProjets - GetProjets started
DEBUG GetRefCalcDecision - GetRefCalcDecision started
DEBUG GetRefDecisionDetails - GetRefDecisionDetails started
DEBUG GetRefDecisions - GetRefDecisions started
DEBUG GetRefDecisionsWithoutId - GetRefDecisionsWithoutId started
DEBUG GetRefDecisionsWithoutIdWithUnactives - GetRefDecisionsWithoutIdWithUnactives started
DEBUG GetRefEtapesWithUnactives - GetRefEtapesWithUnactives started
DEBUG GetRefIndicateursWithUnactives - GetRefIndicateursWithUnactives started
DEBUG GetScriptProg - GetScriptProgByLot started
DEBUG GetSeuil - GetSeuil started
DEBUG GetTableLieeHeader - GetTableLieeHeader started
DEBUG GetTree - GetTree started
DEBUG GetTreeOfLastRun - GetTree started
DEBUG GetTreeSuiviProjet - GetTreeSuiviProjet started
DEBUG GetUsersByTableLiee - GetUsersByTableLiee started
DEBUG HasEnvir - HasEnvir started
DEBUG HasRight - HasRight started
DEBUG PutDebutLog - PutDebutLog started.
DEBUG PutFinLog - PutFinLog started.
DEBUG QueryTableLiee - QueryTableLiee started
DEBUG SaveDecision - SaveDecision started
DEBUG SaveDecisionFormule - SaveDecisionFormule started
DEBUG SaveEnvir - SaveEnvir started
DEBUG SaveEtape - SaveEtape started
DEBUG SaveIndicateur - SaveIndicateur started
DEBUG SaveIndicateurFormule - SaveIndicateurFormule started
DEBUG SaveProject - GetProject started
DEBUG SaveSeuil - SaveSeuil started
DEBUG SaveTableLieeUsers - SaveTableLieeUsers started
DEBUG SaveTablesLiees - SaveSeuil started
DEBUG SaveTDCUserRights - SaveTDCUserRights started
DEBUG UnactiveDecision - UnactiveIndicateur started
DEBUG UnactiveEtape - UnactiveEtape started
DEBUG UnactiveIndicateur - UnactiveIndicateur started
DEBUG UnactiveSeuil - UnactiveSeuil started
DEBUG CheckPassword - CheckPassword started
DEBUG CreateUser - CreateUser started
DEBUG DeleteUser - DeleteUser started
DEBUG FindUserByLogin - FindUserbyLogin started
DEBUG GetAllModules - GetAllModules started
DEBUG GetUserInfo - GetUserInfo started
DEBUG GetUserList - GetUserList started
DEBUG GetUserModules - GetUserInfo started
DEBUG CheckPassword - SaveUser started
DEBUG UpdateUser - UpdateUser started
DEBUG CheckPlatiniumPK - CheckPlatiniumPK started
DEBUG DeleteAbility - DeleteGroup started
DEBUG DeleteCustomStat - DeleteCustomStat started
DEBUG DeleteField - DeleteField started
DEBUG DeleteFilter - DeleteFilter started
DEBUG DeleteFilterPlatinum - DeleteFilterPlatinum started
DEBUG DeleteFusionTag - DeleteFusionTag started
DEBUG DeleteFusionTagPlatinum - DeleteFusionTagPlatinum started
DEBUG DeleteGroup - DeleteGroup started
DEBUG DeleteKey - DeleteKey started
DEBUG DeleteLevel - DeleteLevel started
DEBUG DeleteNf - DeleteNf started
DEBUG DeletePlatinum - DeletePlatinum started
DEBUG DeletePlatinumField - DeletePlatinumField started
DEBUG DeletePopulation - DeletePopulation started
DEBUG DeleteProject - DeleteProject started
DEBUG DeleteSource - DeleteSource started
DEBUG DeleteUser - DeleteUser started
DEBUG DeleteVacation - DeleteVacation started
DEBUG GetIncohDelta - GetIncohDelta started
DEBUG GetIncohStruct - GetIncohStruct started
DEBUG GetPlatiniumRecord - GetPlatiniumRecord started
DEBUG FindAqProject - FindProject started
DEBUG GetCustomGraph - GetCustomGraph started
DEBUG GetCustomStat - GetCustomStat started
DEBUG GetEtatDispoSuiviObjet - GetEtatDispoSuiviObjet started
DEBUG GetEtatDispoSuiviVacation - GetEtatDispoSuiviVacation started
DEBUG GetEtatDispoTypeSuiviVacation - GetEtatDispoTypeSuiviVacation started
DEBUG GetIncohDelta - GetIncohDelta started
DEBUG GetIncohStruct - GetIncohStruct started
DEBUG GetIndSuiviObjet - GetIndSuiviObjet started
DEBUG GetLogo - GetLogo started
DEBUG GetPlatiniumRecord - GetPlatiniumRecord started
DEBUG GetProjects - GetProjects started
DEBUG GetRestitParamObject - GetRestitParamObject started
DEBUG GetRestitParamVacation - GetRestitParamVacation started
DEBUG GetRestitParamVacationType - GetRestitParamVacationType started
DEBUG GetStatByVacation - GetStatByVacation started
DEBUG GetStatSuiviObjet - GetStatSuiviObjet started
DEBUG GetTendanceSuiviObjet - GetTendanceSuiviObjet started
DEBUG GetTendanceVacations - GetTendanceVacations started
DEBUG GetField - GetAbilities started
DEBUG GetField - GetAbilities4Table started
DEBUG GetCustomStatByNf - GetCustomStatByNf started
DEBUG GetField - GetFields started
DEBUG GetFilter - GetFilter started
DEBUG GetFilterPlatinum - GetFilterPlatinum started
DEBUG GetFusionTag - GetFusionTag started
DEBUG GetFusionTagPlatinum - GetFusionTagPlatinum started
DEBUG GetKey - GetKeys started
DEBUG GetLevel - GetLevel started
DEBUG GetNf - GetNf started
DEBUG GetNfFromVacation - GetNfFromVacation started
DEBUG GetPlatiniums - GetPlatiniums started
DEBUG GetPlatinum - GetPlatinum started
DEBUG GetPlatinumField - GetPlatinumField started
DEBUG GetPopulation - GetPopulation started
DEBUG GetProject - GetProject started
DEBUG GetSource - GetSource started
DEBUG GetUser - GetUser started
DEBUG GetVacationNF - GetVacationNF started
DEBUG GetVacationType - GetVacationType started
DEBUG GetTreeSuiviProjet - GetTreeSuiviProjet started
DEBUG GetTreeSuiviVacation - GetTreeSuiviVacation started
DEBUG GetUserGroups - GetUserGroups started
DEBUG GetField - CalculateIndicators started
DEBUG SaveField - SaveField started
DEBUG SaveKey - SaveKey started
DEBUG SaveLogo - SaveLogo started
DEBUG SaveProject - SaveProject started
DEBUG SaveSource - SaveSource started
DEBUG SaveVacation - SaveVacation started
DEBUG CascadeCopyPlatinium - CascadeCopyPlatinium started
DEBUG CascadeCopyVacation - CascadeCopyVacation started
DEBUG DeployPlatinium - DeployPlatinium started
DEBUG DeployVacation - DeployVacation started
DEBUG ValidatePlatinium - ValidatePlatinium started
DEBUG ValidateVacation - ValidateVacation started
INFO  ContextLoader - Root WebApplicationContext: initialization completed in 11766 ms
3 févr. 2012 11:35:32 org.apache.catalina.startup.HostConfig deployDirectory
INFO: Déploiement du répertoire docs de l'application web
3 févr. 2012 11:35:32 org.apache.catalina.startup.HostConfig deployDirectory
INFO: Déploiement du répertoire examples de l'application web
3 févr. 2012 11:35:32 org.apache.catalina.core.ApplicationContext log
INFO: ContextListener: contextInitialized()
3 févr. 2012 11:35:32 org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: contextInitialized()
3 févr. 2012 11:35:32 org.apache.catalina.startup.HostConfig deployDirectory
INFO: Déploiement du répertoire ROOT de l'application web
3 févr. 2012 11:35:33 org.apache.coyote.http11.Http11AprProtocol start
INFO: Démarrage de Coyote HTTP/1.1 sur http-8080
3 févr. 2012 11:35:33 org.apache.coyote.http11.Http11AprProtocol start
GRAVE: Erreur au démarrage du point de contact
java.lang.Exception: Socket bind failed: [730048] Une seule utilisation de chaque adresse de socket (protocole/adresse réseau/port) est habituellement autorisée.  
	at org.apache.tomcat.util.net.AprEndpoint.init(AprEndpoint.java:649)
	at org.apache.tomcat.util.net.AprEndpoint.start(AprEndpoint.java:766)
	at org.apache.coyote.http11.Http11AprProtocol.start(Http11AprProtocol.java:137)
	at org.apache.catalina.connector.Connector.start(Connector.java:1122)
	at org.apache.catalina.core.StandardService.start(StandardService.java:540)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:754)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:595)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)
3 févr. 2012 11:35:33 org.apache.catalina.core.StandardService start
GRAVE: Failed to start connector [Connector[HTTP/1.1-8443]]
LifecycleException:  service.getName(): "Catalina";  Le démarrage du gestionnaire de protocole a échoué: java.lang.Exception: Socket bind failed: [730048] Une seule utilisation de chaque adresse de socket (protocole/adresse réseau/port) est habituellement autorisée.  
	at org.apache.catalina.connector.Connector.start(Connector.java:1129)
	at org.apache.catalina.core.StandardService.start(StandardService.java:540)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:754)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:595)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)
3 févr. 2012 11:35:33 org.apache.coyote.ajp.AjpAprProtocol start
INFO: Starting Coyote AJP/1.3 on ajp-8009
3 févr. 2012 11:35:33 org.apache.catalina.startup.Catalina start
INFO: Server startup in 12899 ms
DEBUG AuthenticationFilter - :: Authentication layer ::
DEBUG AuthenticationFilter - :: End Authentication layer ::
DEBUG InitJs - Load javascript modules begin
DEBUG InitJs - doPost receive json - {"from":"index","modules":["user"]}
DEBUG InitJs - module name=user
DEBUG InitJs - response sent : -->{"files":["user/modules/Clazz.init","user/modules/Account.init","user/modules/Admin.init","user/modules/Login.init","user/modules/MessageHandler.init"],"session":""}<--

Merci d'avance