ff12bd2ba9b70213aa6ddf22be1fa79f81bd0596
[SpringWebServicesForFun/.git] /
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
4     xmlns:context="http://www.springframework.org/schema/context"
5     xmlns:sws="http://www.springframework.org/schema/web-services"
6     xmlns:oxm="http://www.springframework.org/schema/oxm" 
7     xmlns:aop="http://www.springframework.org/schema/aop"
8     xmlns:util="http://www.springframework.org/schema/util"
9         xmlns:p="http://www.springframework.org/schema/p"
10         
11     xsi:schemaLocation="http://www.springframework.org/schema/beans 
12         http://www.springframework.org/schema/beans/spring-beans.xsd
13         http://www.springframework.org/schema/context 
14         http://www.springframework.org/schema/context/spring-context.xsd
15         http://www.springframework.org/schema/web-services 
16         http://www.springframework.org/schema/web-services/web-services.xsd
17         http://www.springframework.org/schema/oxm 
18         http://www.springframework.org/schema/oxm/spring-oxm.xsd
19         http://www.springframework.org/schema/util
20         http://www.springframework.org/schema/util/spring-util.xsd">
21
22     <!-- 
23         This file is an example about how someone should write code in order to send and
24         receive data from the Web Services.
25     -->
26    
27     <!-- Searches for beans in packages (instead of XML configuration we can use in this way annotations like @Service, @Component, etc, etc)  --> 
28     <context:component-scan base-package="de.spring.webservices"/>
29
30     <!--
31         Three ways of using a marshallers/unmarshallers.
32         
33         1. No declarar nada en el XML y dejar que Spring lo haga internamente todo por nosotros.
34         Esto equivale a esta configuracion en XML
35         
36         <oxm:jaxb2-marshaller id="marshaller" context-path="de.spring.webservices"/>
37         El context-path Spring supongo que lo rellena automáticamente en base al component-scan declarado arriba.
38         
39         2. Especificando el context-path para ser escaneado por Spring usando anotaciones. Esto
40         se hace de este modo:
41         
42         <oxm:jaxb2-marshaller id="marshaller" context-path="de.spring.webservices.auto"/>
43         Esto es lo mismo que haría Spring si no declaramos nada en el XML pero así tenemos opción de
44         de especificar un context-path en concreto.
45         
46         3. Especificando la implementación concreta del marshaller.
47         Con esta opción además puedo usar packagesToScan, contest-path si no recuerdo mal tenía problemas
48         cuando había dos ObjectFactory con el mismo package. Uno está en globalxsds y otro en este proyecto.
49         De todos modos, probablemente habría que usar un package distinto para lo que hay
50         en globalxsds (quizás incluso basado en el namespace del xsd) y así podría evitar esta configuración. 
51      -->
52         <bean id="marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
53         <!--
54                 maven-jaxb2-plugin for WSDL DOES generate again the objects in web-services-spring-jaxb2-globalxsds :(
55                 So we MAY NOT scan everything because there is more than one class representing
56                 the same XML element. :(
57                 
58                 We scan the objects generated in this package.
59         -->
60         <property name="packagesToScan" value="de.spring.webservices.client.auto"/>
61         </bean>
62      
63    
64     <!-- Required in order to use SOAP 1.2
65          id="messageFactory" is not a random choice, if you use another name it will not work
66          (Spring will end up loading SOAP 1.1)
67     -->
68     <bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory">
69         <property name="soapVersion">
70             <util:constant static-field="org.springframework.ws.soap.SoapVersion.SOAP_12" />
71         </property>
72     </bean> 
73     
74
75     <!-- 
76         ¿Este validador funciona teniendo inheritance en el xsd? (inheritances es una cosa especial 
77         del JAXB2 que estoy usando para generar las clases desde el xsd)
78         Parece que el unmarshal (que supongo que se hace con el JAXB2 que está en el classpath
79         debido al tipo de Endpoint que estoy usando, que por cierto no sé cual JAXB2 está cogiendo realmente) 
80         funciona, así que supongo el validador tambien :/
81         Lo que realmente tampoco sé es si hay alguna relación entre los validadores y JAXB2 :/
82     -->
83     <bean id="payloadValidatingInterceptor" 
84         class="org.springframework.ws.client.support.interceptor.PayloadValidatingInterceptor">
85         <property name="schemas">
86             <list>
87                 <!--
88                         ALWAYS FIRST THE XSD FILES TO BE IMPORTED!!!!!  O.o
89                         OTHERWISE THE import IN examples.xsd WILL BE SOLVED BY MEANS OF DOWNLOADING THE
90                         EXTERNAL parent.xsd (USING THE URL LINKED BY THE IMPORT STATEMENT IN examples.xsd)
91                                  
92                                 IF YOU DON'T DO THIS, PayloadValidatingInterceptor WILL TRY TO CONNECT TO THE
93                                 EXTERNAL SERVER WHERE parent.xsd IS LOCATED AND IT WILL FAIL IF BECAUSE SOME
94                                 REASON YOU DON'T HAVE IN THAT VERY MOMENT NETWORK CONNECTION. SO, DON'T MESS WITH THIS
95                                 CONFIGURATION.
96                  -->
97                  <value>classpath:schemas/parent.xsd</value>
98                     
99                  <value>classpath:schemas/examples.xsd</value>
100             </list>
101         </property>
102         <property name="validateRequest" value="true"/>
103         <property name="validateResponse" value="true"/>
104     </bean>
105     
106     <!-- 
107                 Los errores de validacion se devuelven así:
108                 
109                 <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
110                    <env:Header/>
111                    <env:Body>
112                       <env:Fault>
113                          <env:Code>
114                             <env:Value>env:Sender</env:Value>
115                          </env:Code>
116                          <env:Reason>
117                             <env:Text xml:lang="en">Validation error</env:Text>
118                          </env:Reason>
119                          <env:Detail>
120                             <spring-ws:ValidationError xmlns:spring-ws="http://springframework.org/spring-ws">cvc-maxLength-valid: El valor 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' con la longitud = '91' no es de faceta válida con respecto a maxLength '30' para el tipo 'limitedString'.</spring-ws:ValidationError>
121                             <spring-ws:ValidationError xmlns:spring-ws="http://springframework.org/spring-ws">cvc-type.3.1.3: El valor 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' del elemento 'exam:data' no es válido.</spring-ws:ValidationError>
122                          </env:Detail>
123                       </env:Fault>
124                    </env:Body>
125                 </env:Envelope>
126                 
127                 El manejador de errores de validación es implementado por AbstractValidatingInterceptor (PayloadValidatingInterceptor)
128                 luego si quisiéramos loguear los mensaje de error de validación de algún modo especial tendríamos que crear nuestro propio PayloadValidatingInterceptor :(          
129          -->
130     
131     <!-- Enables us to log custom Fault remote messages. No loguea mensajes de error de validación :( -->
132     <bean id="customFaultMessageResolver" class="de.spring.webservices.client.CustomFaultMessageResolver">
133                 <property name="unmarshaller" ref="marshaller"/>
134         </bean>
135         
136     <!-- 
137     WebServiceTemplate using these strategies by default (see WebServiceTemplate.properties file)
138     
139     org.springframework.ws.client.core.FaultMessageResolver=org.springframework.ws.soap.client.core.SoapFaultMessageResolver
140         org.springframework.ws.WebServiceMessageFactory=org.springframework.ws.soap.saaj.SaajSoapMessageFactory
141         org.springframework.ws.transport.WebServiceMessageSender=org.springframework.ws.transport.http.HttpUrlConnectionMessageSender
142     
143      -->
144
145     <bean id="webServiceTemplate" class="org.springframework.ws.client.core.WebServiceTemplate">
146         <constructor-arg ref="messageFactory"/>
147         <property name="marshaller" ref="marshaller" />
148         <property name="unmarshaller" ref="marshaller" />
149
150         <!-- For local deployments change to http://localhost:8080/web-services-spring-jaxb2-server/spring-ws/example -->
151         <property name="defaultUri" value="http://gumartinm.name/spring-ws/example"/>
152
153         <property name="interceptors">
154             <list>
155                 <ref bean="payloadValidatingInterceptor" />
156             </list>
157         </property>
158         
159         <property name="faultMessageResolver" ref="customFaultMessageResolver" />
160
161         <property name="messageSenders">
162             <list>
163                 <bean class="de.spring.webservices.client.transport.http.CustomHttpRequestMessageSender">
164                         <constructor-arg>
165                                 <bean class="org.springframework.http.client.SimpleClientHttpRequestFactory"
166                                         p:readTimeout="2000"
167                                         p:connectTimeout="1000" />
168                         </constructor-arg>
169                 </bean>
170             </list>
171         </property>
172     </bean>
173     
174     <!--
175     Using @Service and @Autowired
176     We could use just XML configuration, or XML confirguration and @Autowired or as I am doing now @Service and @Autowired.
177     <bean id="exampleClientService" class="de.spring.webservices.client.ExampleClientService">
178         
179         @Autowired works even using XML configuration as long as you use context:component-scan
180         <property name="webServiceTemplate" ref="webServiceTemplate"/>
181     </bean>
182     -->
183     
184 </beans>