File tree 5 files changed +29
-69
lines changed
spring-capgemini-web/src/main/java/pl/altkom/spring/capgemini/web/ws
main/java/pl/altkom/spring/ws/client
wsdl/localhost_8084/spring-capgemini-web/services
5 files changed +29
-69
lines changed Original file line number Diff line number Diff line change 7
7
import javax .jws .WebMethod ;
8
8
import javax .jws .WebParam ;
9
9
import javax .jws .WebService ;
10
+ import pl .altkom .spring .spring .capgemini .core .model .Order ;
10
11
11
12
/**
12
13
*
@@ -17,5 +18,7 @@ public interface HelloService {
17
18
18
19
@ WebMethod
19
20
String sayHallo (@ WebParam (name = "name" ) String name );
21
+
22
+ Order loadOrder (long id );
20
23
21
24
}
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2014-11-20 the original author or authors.
3
3
*/
4
-
5
4
package pl .altkom .spring .capgemini .web .ws ;
6
5
7
6
import javax .jws .WebService ;
7
+ import org .springframework .beans .factory .annotation .Autowired ;
8
+ import pl .altkom .spring .spring .capgemini .core .model .Order ;
9
+ import pl .altkom .spring .spring .capgemini .core .service .OrderService ;
8
10
9
11
/**
10
12
*
11
13
* @author Adrian Lapierre <[email protected] >
12
14
*/
13
15
@ WebService (endpointInterface = "pl.altkom.spring.capgemini.web.ws.HelloService" )
14
16
public class HelloServiceImpl implements HelloService {
15
-
16
- @ Override
17
- public String sayHallo (String name ) {
18
- return "hallo " + name ;
19
- }
17
+
18
+ @ Autowired
19
+ private OrderService orderService ;
20
20
21
+ @ Override
22
+ public String sayHallo (String name ) {
23
+ return "hallo " + name ;
24
+ }
25
+
26
+ @ Override
27
+ public Order loadOrder (long id ) {
28
+ return orderService .loadOrder (id );
29
+ }
30
+
21
31
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
5
5
package pl .altkom .spring .ws .client ;
6
6
7
- import java .net .Authenticator ;
7
+ import java .net .MalformedURLException ;
8
+ import java .net .URL ;
9
+ import javax .xml .namespace .QName ;
8
10
import pl .altkom .spring .capgemini .web .ws .HelloServiceImplService ;
9
11
10
12
/**
13
15
*/
14
16
public class Main {
15
17
16
- public static void main (String [] args ) {
18
+ public static void main (String [] args ) throws MalformedURLException {
17
19
18
20
WSAuthenticator auth = new WSAuthenticator ();
19
21
auth .setUsername ("user" );
20
22
auth .setPassword ("user" );
21
23
22
24
auth .init ();
23
25
24
- HelloServiceImplService srv = new HelloServiceImplService ();
26
+ QName qName = new QName ("http://ws.web.capgemini.spring.altkom.pl/" ,
27
+ "HelloServiceImplService" );
28
+
29
+ HelloServiceImplService srv = new HelloServiceImplService (
30
+ new URL ("http://10.12.11.60:8084/spring-capgemini-web/services/HelloWorld" )
31
+ , qName );
25
32
26
33
String res = srv .getHelloServiceImplPort ().sayHallo ("Alicja" );
27
34
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments