Hello !
Is there an expert who can give me a hint how to configure ssl and basic
authentication in combination? I have a working ssl engine-factory so far and
need to activate basic authentication for my service. My source for a spring
started configuration is this:
public class SpringServiceServer {
public static void main(String[] args) throws Exception {
ApplicationContext applicationContext = new
ClassPathXmlApplicationContext(
new String[] { "springcxf.xml" });
System.in.read();
}
}
--- springcxf.xml ---
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:sec="http://cxf.apache.org/configuration/security"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/configuration/security
http://cxf.apache.org/schemas/configuration/security.xsd
http://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd">
<import resource="classpath:server.cxf" />
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-http.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-http-jetty.xml"
/>
<jaxws:endpoint id="customerService"
implementor="CustomerServiceImpl" address="
https://localhost:9001/CustomerService">
</jaxws:endpoint>
</beans>
--- server.cxf ---
<?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:sec="http://cxf.apache.org/configuration/security"
xmlns:http="http://cxf.apache.org/transports/http/configuration"
xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration"
xmlns:jaxws="http://java.sun.com/xml/ns/jaxws"
xsi:schemaLocation="
http://cxf.apache.org/configuration/security
http://cxf.apache.org/schemas/configuration/security.xsd
http://cxf.apache.org/transports/http/configuration
http://cxf.apache.org/schemas/configuration/http-conf.xsd
http://cxf.apache.org/transports/http-jetty/configuration
http://cxf.apache.org/schemas/configuration/http-jetty.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
">
<httpj:engine-factory bus="cxf">
<httpj:engine port="9001">
<httpj:tlsServerParameters>
<sec:keyManagers keyPassword="secret">
<sec:keyStore type="JKS" password="secret"
file="doc/keystore" />
</sec:keyManagers>
<sec:trustManagers>
<sec:keyStore type="JKS" password="secret"
file="doc/keystore" />
</sec:trustManagers>
</httpj:tlsServerParameters>
</httpj:engine>
</httpj:engine-factory>
<!-- We need a bean named "cxf" -->
<bean id="cxf" class="org.apache.cxf.bus.CXFBusImpl"/>
</beans>
What I need is that a client has to login before can even see the wsdl. I
tried to use a http-conduit but there is no effect I only get the https page
but no login box :-(((
Thank you very much for any help,
Maciek