Spring + httpinvoker.HttpInvokerProxyFactoryBean
Bonjour ,
Lors de déploiement d'une application JEE qui utilise le Framework Spring , Tomcat me retourne l'erreur suivante :
Code:
1 2 3 4 5
|
org.springframework.remoting.RemoteAccessException: Could not access HTTP invoker remote service at [<a href="http://localhost:8082/ProjetSpring/service/ws];" target="_blank">http://localhost:8082/ProjetSpring/service/ws];</a> nested exception is java.io.IOException: Did not receive successful HTTP response: status code = 404, status message = [Introuvable]
at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.convertHttpInvokerAccessException(HttpInvokerClientInterceptor.java:211)
at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:144)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) |
Voila fichier applicaitonContext.xml
Code:
1 2 3 4 5 6 7
|
<bean id="meteoSKABusinessServiceFactory"
class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl" value="http://localhost:8082/ProjetSpring/service/ws" />
<property name="serviceInterface" value="org.smmiab.services.IBusinessBc" />
</bean> |
Pourriez-vous aussi me dire si le dossier /service/ws sera créé par Spring lors du déploiement ou c'est un WebService qui doit être installé.
Merci d'avance.