Initial commit.

This commit is contained in:
Achim D. Brucker 2015-06-03 08:57:14 +02:00
parent 3425d905fc
commit a33bc986a0
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?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:jaxws="http://cxf.apache.org/jaxws"
xmlns:soap="http://cxf.apache.org/bindings/soap"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<!-- wsdlLocation="WEB-INF/wsdl/pdp.wsdl" -->
<jaxws:endpoint
id="pdp"
implementor="eu.aniketos.securebpmn.xacml.pdp.PDPServer"
address="/IPDP"
serviceName="pdps:PolicyDecisionPoint"
endpointName="pdpe:IPDP"
xmlns:pdps="http://pdp.aniketos.eu/"
xmlns:pdpe="http://pdp.aniketos.eu/pdp/">
</jaxws:endpoint>
</beans>