Author: jason.greene(a)jboss.com
Date: 2006-11-17 18:12:47 -0500 (Fri, 17 Nov 2006)
New Revision: 1462
Modified:
trunk/src/test/build.xml
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/OrderMgmtBean.java
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/StatefulEndpoint.java
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/CCVerificationService.wsdl
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/OrderMgmtService.wsdl
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/ProfileMgmtService.wsdl
Log:
Fix regression
Modified: trunk/src/test/build.xml
===================================================================
--- trunk/src/test/build.xml 2006-11-17 23:10:01 UTC (rev 1461)
+++ trunk/src/test/build.xml 2006-11-17 23:12:47 UTC (rev 1462)
@@ -155,6 +155,7 @@
<pathelement location="${jboss.client}/${jbossws.client.jar}"/>
<pathelement location="${jboss.client}/log4j.jar"/>
<pathelement location="${jboss.client}/mail.jar"/>
+ <pathelement location="${jboss.server.lib}/jbosssx.jar"/>
</path>
<!-- The combined compile classpath -->
Modified: trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/OrderMgmtBean.java
===================================================================
---
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/OrderMgmtBean.java 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/OrderMgmtBean.java 2006-11-17
23:12:47 UTC (rev 1462)
@@ -49,10 +49,12 @@
private static final Logger log = Logger.getLogger(OrderMgmtBean.class);
- @WebServiceRef private CCVerificationService verificationService;
+ @WebServiceRef(wsdlLocation="META-INF/wsdl/CCVerificationService.wsdl")
+ private CCVerificationService verificationService;
private CCVerification verificationPort;
- @WebServiceRef private ProfileMgmtService profileService;
+ @WebServiceRef(wsdlLocation="META-INF/wsdl/ProfileMgmtService.wsdl")
+ private ProfileMgmtService profileService;
private ProfileMgmt profilePort;
@PostConstruct public void initialize(){
Modified:
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java
===================================================================
---
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/cc/CCVerificationService.java 2006-11-17
23:12:47 UTC (rev 1462)
@@ -12,7 +12,7 @@
* This class was generated by the JAXWS SI.
* JAX-WS RI 2.1-10/21/2006 12:56 AM(vivek)-EA2
* Generated source version: 2.0
- *
+ *
*/
@WebServiceClient(name = "CCVerificationService", targetNamespace =
"http://org.jboss.ws/samples/retail/cc", wsdlLocation =
"resources/jaxws/samples/retail/META-INF/wsdl/CCVerificationService.wsdl")
public class CCVerificationService
@@ -24,7 +24,7 @@
static {
URL url = null;
try {
- url = new
URL("file:/C:/dev/prj/jbossws/trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/CCVerificationService.wsdl");
+ url = new
URL("http://localhost:8080/jaxws-samples-retail/CCVerificationBean?wsdl");
} catch (MalformedURLException e) {
e.printStackTrace();
}
@@ -40,7 +40,7 @@
}
/**
- *
+ *
* @return
* returns CCVerification
*/
Modified:
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java
===================================================================
---
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/retail/profile/ProfileMgmtService.java 2006-11-17
23:12:47 UTC (rev 1462)
@@ -13,7 +13,7 @@
* This class was generated by the JAXWS SI.
* JAX-WS RI 2.1-10/21/2006 12:56 AM(vivek)-EA2
* Generated source version: 2.0
- *
+ *
*/
@WebServiceClient(name = "ProfileMgmtService", targetNamespace =
"http://org.jboss.ws/samples/retail/profile", wsdlLocation =
"resources/jaxws/samples/retail/META-INF/wsdl/ProfileMgmtService.wsdl")
public class ProfileMgmtService
@@ -25,7 +25,7 @@
static {
URL url = null;
try {
- url = new
URL("file:/C:/dev/prj/jbossws/trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/ProfileMgmtService.wsdl");
+ url = new
URL("http://localhost:8080/jaxws-samples-retail/ProfileMgmtBean?wsdl");
} catch (MalformedURLException e) {
e.printStackTrace();
}
@@ -41,7 +41,7 @@
}
/**
- *
+ *
* @return
* returns ProfileMgmt
*/
Modified:
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/StatefulEndpoint.java
===================================================================
---
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/StatefulEndpoint.java 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/StatefulEndpoint.java 2006-11-17
23:12:47 UTC (rev 1462)
@@ -44,6 +44,7 @@
*/
@WebService(name = "StatefulEndpoint", targetNamespace =
"http://org.jboss.ws/samples/wsaddressing", serviceName =
"TestService")
@SOAPBinding(style = SOAPBinding.Style.RPC)
+@PortComponent(configName = "Standard WSAddressing Endpoint")
public interface StatefulEndpoint extends Remote
{
@WebMethod
Modified:
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/CCVerificationService.wsdl
===================================================================
---
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/CCVerificationService.wsdl 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/CCVerificationService.wsdl 2006-11-17
23:12:47 UTC (rev 1462)
@@ -41,7 +41,7 @@
</binding>
<service name="CCVerificationService">
<port binding="tns:CCVerificationBinding"
name="CCVerificationPort">
- <soap:address
location="http://D1XC662J:8080/jaxws-samples-retail/CCVerificationBean"/>
+ <soap:address
location="http://@jbosstest.host.name@:8080/jaxws-samples-retail/CCVerificationBean"/>
</port>
</service>
-</definitions>
\ No newline at end of file
+</definitions>
Modified:
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/OrderMgmtService.wsdl
===================================================================
---
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/OrderMgmtService.wsdl 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/OrderMgmtService.wsdl 2006-11-17
23:12:47 UTC (rev 1462)
@@ -59,7 +59,7 @@
</binding>
<service name="OrderMgmtService">
<port binding="tns:OrderMgmtBinding"
name="OrderMgmtPort">
- <soap:address
location="http://D1XC662J:8080/jaxws-samples-retail/OrderMgmtBean"/>
+ <soap:address
location="http://@jbosstest.host.name@:8080/jaxws-samples-retail/OrderMgmtBean"/>
</port>
</service>
-</definitions>
\ No newline at end of file
+</definitions>
Modified:
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/ProfileMgmtService.wsdl
===================================================================
---
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/ProfileMgmtService.wsdl 2006-11-17
23:10:01 UTC (rev 1461)
+++
trunk/src/test/resources/jaxws/samples/retail/META-INF/wsdl/ProfileMgmtService.wsdl 2006-11-17
23:12:47 UTC (rev 1462)
@@ -61,7 +61,7 @@
<service name='ProfileMgmtService'>
<port binding='tns:ProfileMgmtBinding'
name='ProfileMgmtPort'>
- <soap:address
location='http://D1XC662J:8080/jaxws-samples-retail/ProfileMgmtBean'/>
+ <soap:address
location='http://@jbosstest.host.name@:8080/jaxws-samples-retail/ProfileMgmtBean'/>
</port>
</service>
-</definitions>
\ No newline at end of file
+</definitions>
Show replies by date