| Commit in servicemix/components/jaxws on MAIN | |||
| .settings/.cvsignore | +1 | added 1.1 | |
| src/main/java/org/servicemix/components/jaxws/ServiceBinder.java | +1 | -1 | 1.1 -> 1.2 |
| /JBIProvider.java | +1 | -1 | 1.1 -> 1.2 |
| /JAXWSBinding.java | +1 | -1 | 1.2 -> 1.3 |
| src/test/java/org/servicemix/TestSupport.java | +1 | -1 | 1.1 -> 1.2 |
| /SpringTestSupport.java | +1 | -1 | 1.1 -> 1.2 |
| src/test/java/org/servicemix/components/jaxws/ServiceBinderTest.java | +42 | added 1.1 | |
| /JAXWSTest.java | +1 | -1 | 1.2 -> 1.3 |
| /AddNumbersImpl.java | +1 | -1 | 1.1 -> 1.2 |
| .classpath | +19 | -3 | 1.1 -> 1.2 |
| +69 | -10 | ||
updated CVS tags
servicemix/components/jaxws/.settings
.cvsignore added at 1.1
diff -N .cvsignore --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .cvsignore 4 Sep 2005 10:12:33 -0000 1.1 @@ -0,0 +1 @@
+org.eclipse.*
servicemix/components/jaxws/src/main/java/org/servicemix/components/jaxws
diff -u -r1.1 -r1.2 --- ServiceBinder.java 1 Sep 2005 18:48:39 -0000 1.1 +++ ServiceBinder.java 4 Sep 2005 10:12:34 -0000 1.2 @@ -25,7 +25,7 @@
/** * Binds a service implementation POJO to JAX-WS *
- * @version $Revision$
+ * @version $Revision$
*/
public class ServiceBinder {
servicemix/components/jaxws/src/main/java/org/servicemix/components/jaxws
diff -u -r1.1 -r1.2 --- JBIProvider.java 1 Sep 2005 18:48:39 -0000 1.1 +++ JBIProvider.java 4 Sep 2005 10:12:34 -0000 1.2 @@ -32,7 +32,7 @@
* A JAX-WS [EMAIL PROTECTED] Provider} which implements the service by dispatching into * the JBI container. *
- * @version $Revision$
+ * @version $Revision$
*/
public class JBIProvider implements Provider<Source> {
servicemix/components/jaxws/src/main/java/org/servicemix/components/jaxws
diff -u -r1.2 -r1.3 --- JAXWSBinding.java 1 Sep 2005 18:48:39 -0000 1.2 +++ JAXWSBinding.java 4 Sep 2005 10:12:34 -0000 1.3 @@ -45,7 +45,7 @@
* href="">JAX-WS</a> one way or a request-response where the output is * replied back to the Normalized Message Router. *
- * @version $Revision$
+ * @version $Revision$
*/
public class JAXWSBinding extends TransformComponentSupport implements MessageExchangeListener {
servicemix/components/jaxws/src/test/java/org/servicemix
diff -u -r1.1 -r1.2 --- TestSupport.java 31 Aug 2005 15:43:54 -0000 1.1 +++ TestSupport.java 4 Sep 2005 10:12:34 -0000 1.2 @@ -32,7 +32,7 @@
import java.util.Date; /**
- * @version $Revision$
+ * @version $Revision$
*/
public abstract class TestSupport extends SpringTestSupport {
protected ServiceMixClient client;
servicemix/components/jaxws/src/test/java/org/servicemix
diff -u -r1.1 -r1.2 --- SpringTestSupport.java 31 Aug 2005 15:43:54 -0000 1.1 +++ SpringTestSupport.java 4 Sep 2005 10:12:34 -0000 1.2 @@ -31,7 +31,7 @@
import junit.framework.TestCase; /**
- * @version $Revision$
+ * @version $Revision$
*/
public abstract class SpringTestSupport extends TestCase {
protected transient Log log = LogFactory.getLog(getClass());
servicemix/components/jaxws/src/test/java/org/servicemix/components/jaxws
ServiceBinderTest.java added at 1.1
diff -N ServiceBinderTest.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ServiceBinderTest.java 4 Sep 2005 10:12:34 -0000 1.1 @@ -0,0 +1,42 @@
+/**
+ *
+ * Copyright 2005 LogicBlaze, Inc. http://www.logicblaze.com
+ *
+ * Licensed 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 org.servicemix.components.jaxws;
+
+import javax.xml.ws.Endpoint;
+
+import java.net.URI;
+
+import junit.framework.TestCase;
+
+/**
+ * @version $Revision$
+ */
+public class ServiceBinderTest extends TestCase {
+
+ protected ServiceBinder binder = new ServiceBinder();
+
+ public void testBinding() throws Exception {
+ binder.setUri(new URI("http://java.sun.com/xml/ns/jaxws/2003/05/soap/bindings/HTTP/"));
+ AddNumbersImpl implementation = new AddNumbersImpl();
+ binder.setImplementation(implementation);
+
+ Endpoint endpoint = binder.getEndpoint();
+ endpoint.publish(null);
+ assertNotNull("endpoint", endpoint);
+ }
+}
servicemix/components/jaxws/src/test/java/org/servicemix/components/jaxws
diff -u -r1.2 -r1.3 --- JAXWSTest.java 1 Sep 2005 18:48:39 -0000 1.2 +++ JAXWSTest.java 4 Sep 2005 10:12:34 -0000 1.3 @@ -25,7 +25,7 @@
import javax.xml.namespace.QName; /**
- * @version $Revision$
+ * @version $Revision$
*/
public class JAXWSTest extends TestSupport {
servicemix/components/jaxws/src/test/java/org/servicemix/components/jaxws
diff -u -r1.1 -r1.2 --- AddNumbersImpl.java 1 Sep 2005 18:48:39 -0000 1.1 +++ AddNumbersImpl.java 4 Sep 2005 10:12:34 -0000 1.2 @@ -22,7 +22,7 @@
/** * A dummy service implementation *
- * @version $Revision$
+ * @version $Revision$
*/
@WebService
public class AddNumbersImpl {
servicemix/components/jaxws
diff -u -r1.1 -r1.2 --- .classpath 31 Aug 2005 15:47:38 -0000 1.1 +++ .classpath 4 Sep 2005 10:12:34 -0000 1.2 @@ -1,9 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src/main/java"/>
- <classpathentry kind="src" path="src/test/recources"/>
+ <classpathentry kind="src" path="src/test/resources"/>
<classpathentry kind="src" path="src/test/java"/>
+ <classpathentry sourcepath="/jaxws-20050825/src/rt/src" kind="lib" path="/jaxws-20050825/build"/>
<classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/>
+ <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/activation.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jaxws-api.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jaxb-impl.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/FastInfoset.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jaxb-xjc.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jsr250-api.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jsr181-api.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jsr173_api.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/sjsxp.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/saaj-impl.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/saaj-api.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/resolver.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jaxws-tools.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/jaxb-api.jar"/> + <classpathentry kind="lib" path="/jpackages/jaxws-ri-20050825/lib/http.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/servicemix-1.1-SNAPSHOT.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/spring-1.2.2-dev-2.jar"/>
@@ -12,12 +28,12 @@
<classpathentry kind="var" path="MAVEN_REPO/mx4j/jars/mx4j-jmx-2.1.1.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/jsr181-api-20050818.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/jaxws-api-20050818.jar"/>
- <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/jaxws-rt-20050818.jar"/>
<classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/jaxb-api-20050818.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/jaxb-impl-20050818.jar"/>
+ <classpathentry kind="var" path="MAVEN_REPO/servicemix/jars/jaxb-xjc-20050818.jar"/>
<classpathentry kind="var" path="MAVEN_REPO/stax/jars/stax-api-1.0.jar"/>
+ <classpathentry kind="var" path="MAVEN_REPO/jencks/jars/jencks-all-1.0-M1.jar"/>
<classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.3.jar"/> <classpathentry kind="var" path="MAVEN_REPO/concurrent/jars/concurrent-1.3.4.jar"/>
- <classpathentry kind="var" path="MAVEN_REPO/jencks/jars/jencks-all-1.0-M1.jar"/>
<classpathentry kind="output" path="bin"/> </classpath>
