SimpleWS.java package demo; import weblogic.jws.WLHttpTransport; import weblogic.jws.Policies; import weblogic.jws.Policy; import javax.jws.WebService; import javax.jws.WebMethod; import javax.jws.soap.SOAPBinding; @WebService(name=”SimpleWSPortType”, serviceName=”SimpleWSService”, targetNamespace=”http://www.oracle.com”) @SOAPBinding(style=SOAPBinding.Style.DOCUMENT, use=SOAPBinding.Use.LITERAL,
Continue readingCategory: Webservice
this category contains posts related to Webservice
Securing Webservices using BASIC Authentication on Weblogic Server.
To secure the Webservice to use Basic Authentication, we just need to use the @RolesAllowed annotation. No change needs to
Continue reading