My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">



<bean id="searchEndpoint" class="nl.gridshore.samples.hippo.web.SearchNewsEndpoint">
<property name="repoSessionTemplate" ref="sessionTemplate"/>
</bean>

<bean class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
<property name="mappings">
<props>
<prop key="{http://gridshore.nl/schemas}SearchRequest">searchEndpoint</prop>
</props>
</property>
<property name="interceptors">
<bean class="org.springframework.ws.server.endpoint.interceptor.PayloadLoggingInterceptor"/>
</property>
</bean>

<bean id="search" class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition">
<property name="schema" ref="schema"/>
<property name="portTypeName" value="Search"/>
<property name="locationUri" value="/searchService/"/>
<property name="targetNamespace" value="http://gridshore.nl/schemas"/>
</bean>

<bean id="schema" class="org.springframework.xml.xsd.SimpleXsdSchema">
<property name="xsd" value="/document.xsd"/>
</bean>
</beans>

Change log

r166 by jettro.coenradie on Dec 3, 2008   Diff
refactored into standard hippo content as
obtained from the quickstart
Go to: 
Project members, sign in to write a code review

Older revisions

r165 by jettro.coenradie on Dec 1, 2008   Diff
made the webservice call work, time to
start blogging
r164 by jettro.coenradie on Dec 1, 2008   Diff
added the project structure
All revisions of this file

File info

Size: 1676 bytes, 37 lines
Powered by Google Project Hosting