Reputation: 312
I am a begginer in web-service world. For my current project i've to use a webservice over HTTPS replacing old HTTP service . What are the commands for generating the client stubs ? What extra parameter are needed for https compare to http ?
Upvotes: 0
Views: 659
Reputation: 2398
You should setup the keystore and truststore (which contains the server cert). You can usually do that either programmatically or via command line params to the Java VM. In your case, since you are running a third party tool, your only option is to pass in the command line params. Check this post for an example.
Upvotes: 2