Author: dkulp
Date: Fri Oct 28 19:40:05 2011
New Revision: 1190520
URL: http://svn.apache.org/viewvc?rev=1190520&view=rev
Log:
Set svn properties
Modified:
cxf/trunk/common/common/src/test/java/org/apache/cxf/staxutils/resources/AddRequestIn3.xml
(props changed)
cxf/trunk/common/common/src/test/java/org/apache/cxf/staxutils/resources/amazonIn2.xml
(props changed)
cxf/trunk/common/common/src/test/java/org/apache/cxf/staxutils/resources/amazonIn2nospace.xml
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/README.txt (props
changed)
cxf/trunk/distribution/src/main/release/samples/sts/keys/clientKeystore.properties
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/keys/serviceKeystore.properties
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/keys/stsKeystore.properties
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/pom.xml (props
changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/Client.java
(contents, props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/ClientCallbackHandler.java
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/wssec-client.xml
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/GreeterImpl.java
(contents, props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/ServerCallbackHandler.java
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/wssec-server.xml
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/sts/STSCallbackHandler.java
(props changed)
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/sts/wssec-sts.xml
(props changed)
cxf/trunk/rt/ws/addr/src/test/java/org/apache/cxf/ws/addressing/ContextUtilsTest.java
(props changed)
cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/policyvalidators/AsymmetricBindingPolicyValidator.java
(props changed)
cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/policyvalidators/SymmetricBindingPolicyValidator.java
(props changed)
Propchange:
cxf/trunk/common/common/src/test/java/org/apache/cxf/staxutils/resources/AddRequestIn3.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Propchange:
cxf/trunk/common/common/src/test/java/org/apache/cxf/staxutils/resources/amazonIn2.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Propchange:
cxf/trunk/common/common/src/test/java/org/apache/cxf/staxutils/resources/amazonIn2nospace.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Propchange: cxf/trunk/distribution/src/main/release/samples/sts/README.txt
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: cxf/trunk/distribution/src/main/release/samples/sts/README.txt
------------------------------------------------------------------------------
svn:mime-type = text/plain
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/keys/clientKeystore.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/keys/clientKeystore.properties
------------------------------------------------------------------------------
svn:mime-type = text/plain
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/keys/serviceKeystore.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/keys/serviceKeystore.properties
------------------------------------------------------------------------------
svn:mime-type = text/plain
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/keys/stsKeystore.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/keys/stsKeystore.properties
------------------------------------------------------------------------------
svn:mime-type = text/plain
Propchange: cxf/trunk/distribution/src/main/release/samples/sts/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/Client.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/Client.java?rev=1190520&r1=1190519&r2=1190520&view=diff
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/Client.java
(original)
+++
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/Client.java
Fri Oct 28 19:40:05 2011
@@ -1,83 +1,83 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package demo.wssec.client;
-
-import java.io.File;
-import java.net.URL;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-
-import org.apache.cxf.Bus;
-import org.apache.cxf.bus.spring.SpringBusFactory;
-import org.apache.hello_world_soap_http.Greeter;
-
-public final class Client {
-
- private static final QName SERVICE_NAME
- = new QName("http://apache.org/hello_world_soap_http", "SOAPService");
-
- private static final QName PORT_NAME =
- new QName("http://apache.org/hello_world_soap_http", "SoapPort");
-
-
- private Client() {
- }
-
- public static void main(String args[]) throws Exception {
-
- if (args.length == 0) {
- System.out.println("please specify wsdl");
- System.exit(1);
- }
-
- URL wsdlURL;
- File wsdlFile = new File(args[0]);
- if (wsdlFile.exists()) {
- wsdlURL = wsdlFile.toURI().toURL();
- } else {
- wsdlURL = new URL(args[0]);
- }
-
- SpringBusFactory bf = new SpringBusFactory();
- URL busFile = Client.class.getResource("wssec-client.xml");
-
- Bus bus = bf.createBus(busFile.toString());
- SpringBusFactory.setDefaultBus(bus);
- SpringBusFactory.setThreadDefaultBus(bus);
-
- Service service = Service.create(wsdlURL, SERVICE_NAME);
- Greeter port = service.getPort(PORT_NAME, Greeter.class);
-
- System.out.println("Invoking greetMe...");
- try {
- String resp = port.greetMe(System.getProperty("user.name"));
- System.out.println("Server responded with: " + resp);
- System.out.println();
-
- } catch (Exception e) {
- System.out.println("Invocation failed with the following: " +
e.getCause());
- System.out.println();
- }
-
- System.exit(0);
- }
-
-}
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package demo.wssec.client;
+
+import java.io.File;
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.bus.spring.SpringBusFactory;
+import org.apache.hello_world_soap_http.Greeter;
+
+public final class Client {
+
+ private static final QName SERVICE_NAME
+ = new QName("http://apache.org/hello_world_soap_http", "SOAPService");
+
+ private static final QName PORT_NAME =
+ new QName("http://apache.org/hello_world_soap_http", "SoapPort");
+
+
+ private Client() {
+ }
+
+ public static void main(String args[]) throws Exception {
+
+ if (args.length == 0) {
+ System.out.println("please specify wsdl");
+ System.exit(1);
+ }
+
+ URL wsdlURL;
+ File wsdlFile = new File(args[0]);
+ if (wsdlFile.exists()) {
+ wsdlURL = wsdlFile.toURI().toURL();
+ } else {
+ wsdlURL = new URL(args[0]);
+ }
+
+ SpringBusFactory bf = new SpringBusFactory();
+ URL busFile = Client.class.getResource("wssec-client.xml");
+
+ Bus bus = bf.createBus(busFile.toString());
+ SpringBusFactory.setDefaultBus(bus);
+ SpringBusFactory.setThreadDefaultBus(bus);
+
+ Service service = Service.create(wsdlURL, SERVICE_NAME);
+ Greeter port = service.getPort(PORT_NAME, Greeter.class);
+
+ System.out.println("Invoking greetMe...");
+ try {
+ String resp = port.greetMe(System.getProperty("user.name"));
+ System.out.println("Server responded with: " + resp);
+ System.out.println();
+
+ } catch (Exception e) {
+ System.out.println("Invocation failed with the following: " +
e.getCause());
+ System.out.println();
+ }
+
+ System.exit(0);
+ }
+
+}
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/Client.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/ClientCallbackHandler.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/client/wssec-client.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/GreeterImpl.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/GreeterImpl.java?rev=1190520&r1=1190519&r2=1190520&view=diff
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/GreeterImpl.java
(original)
+++
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/GreeterImpl.java
Fri Oct 28 19:40:05 2011
@@ -1,43 +1,43 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package demo.wssec.server;
-
-import java.util.logging.Logger;
-import org.apache.hello_world_soap_http.Greeter;
-
[email protected](name = "Greeter", serviceName = "SOAPService",
- targetNamespace =
"http://apache.org/hello_world_soap_http",
- wsdlLocation = "file:./wsdl/hello_world.wsdl")
-
-public class GreeterImpl implements Greeter {
-
- private static final Logger LOG =
- Logger.getLogger(GreeterImpl.class.getPackage().getName());
-
- /* (non-Javadoc)
- * @see
org.objectweb.hello_world_soap_http.Greeter#greetMe(java.lang.String)
- */
- public String greetMe(String me) {
- LOG.info("Executing operation greetMe");
- System.out.println("Executing operation greetMe");
- System.out.println("Message received: " + me + "\n");
- return "Hello " + me;
- }
-}
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package demo.wssec.server;
+
+import java.util.logging.Logger;
+import org.apache.hello_world_soap_http.Greeter;
+
[email protected](name = "Greeter", serviceName = "SOAPService",
+ targetNamespace =
"http://apache.org/hello_world_soap_http",
+ wsdlLocation = "file:./wsdl/hello_world.wsdl")
+
+public class GreeterImpl implements Greeter {
+
+ private static final Logger LOG =
+ Logger.getLogger(GreeterImpl.class.getPackage().getName());
+
+ /* (non-Javadoc)
+ * @see
org.objectweb.hello_world_soap_http.Greeter#greetMe(java.lang.String)
+ */
+ public String greetMe(String me) {
+ LOG.info("Executing operation greetMe");
+ System.out.println("Executing operation greetMe");
+ System.out.println("Message received: " + me + "\n");
+ return "Hello " + me;
+ }
+}
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/GreeterImpl.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/ServerCallbackHandler.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/server/wssec-server.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/sts/STSCallbackHandler.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/distribution/src/main/release/samples/sts/src/demo/wssec/sts/wssec-sts.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Propchange:
cxf/trunk/rt/ws/addr/src/test/java/org/apache/cxf/ws/addressing/ContextUtilsTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/policyvalidators/AsymmetricBindingPolicyValidator.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/policyvalidators/SymmetricBindingPolicyValidator.java
------------------------------------------------------------------------------
svn:eol-style = native