Skip to content

Commit

Permalink
BUG Must Understand SOAP Message
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Sep 23, 2016
1 parent 1431820 commit 339d855
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Expand Up @@ -86,7 +86,7 @@
@WebService(endpointInterface="it.cnr.contab.docamm00.ejb.FatturaAttivaComponentSessionWS")
@DeclareRoles({"WSUserRole","IITRole"})
@WebContext(authMethod = "WSSE", contextRoot = "SIGLA-SIGLAEJB")
@HandlerChain(file = "handlers.xml")
@HandlerChain(file = "/it/cnr/contab/handler/handlers.xml")
public class FatturaAttivaComponentWS {
@EJB FatturaAttivaSingolaComponentSession fatturaAttivaSingolaComponentSession;
@EJB Configurazione_cnrComponentSession configurazione_cnrComponentSession;
Expand Down
Expand Up @@ -24,7 +24,7 @@ public Set<QName> getHeaders() {

@Override
public boolean handleMessage(SOAPMessageContext context) {
return false;
return true;
}

@Override
Expand Down
Expand Up @@ -16,6 +16,7 @@
import javax.ejb.EJB;
import javax.ejb.EJBException;
import javax.ejb.Stateless;
import javax.jws.HandlerChain;
import javax.jws.WebService;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.Name;
Expand All @@ -33,6 +34,7 @@
@WebService(endpointInterface = "it.cnr.contab.stampe00.comp.StampaComponentSessionWS")
@DeclareRoles({ "WSUserRole", "IITRole" })
@WebContext(authMethod = "WSSE", contextRoot = "SIGLA-SIGLAEJB")
@HandlerChain(file = "/it/cnr/contab/handler/handlers.xml")
public class StampaComponentWS {
@EJB FatturaAttivaSingolaComponentSession fatturaAttivaSingolaComponentSession;

Expand Down

0 comments on commit 339d855

Please sign in to comment.