Reputation: 2219
I have SOAP web-service named "getApplicationDetails" which is deployed and used by few applications (which are in my office network)
Now the above service should be allowed to be used by applications which are outside of my office network which in turn means that I need to add user authentication which seems to fair enough from this example
Instead of creating a new web service can I use existing web services by passing authentication in predefined cases and use authentication in rest.
Upvotes: 0
Views: 239
Reputation: 14383
Have a look at Apache Shiro it has out-of-the-box HTTP basic authentication and integration with SOAP and spring and what not...
Upvotes: 1