spring-guides / gs-consuming-web-service

Consuming a SOAP web service :: Learn how to create a client that consumes a WSDL-based service
http://spring.io/guides/gs/consuming-web-service
Apache License 2.0
136 stars 164 forks source link

Missing arg-parameter in main method of Application #24

Closed ma501 closed 7 years ago

ma501 commented 7 years ago

There is a bug in the main method of Application class public static void main(String[] args) { SpringApplication.run(Application.class); } should be public static void main(String[] args) { SpringApplication.run(Application.class, args); } Otherwise the command line arguments are not passed to the lookup method.

gregturn commented 7 years ago

Pull requests welcome!

ma501 commented 7 years ago

My first ever pull request has been created (#25).

dsyer commented 7 years ago

Closed via #25