I have 2 ears running in my server (Jboss4.0.0).
One ear contains the webservices, the other my EJB app.
The webservices are protected with basic authentication.
If I connect to the webservice with a java client all works fine.
If I use the same code in a session bean deployed in the same server but 
different ear I get following error: authorization required.
If I remove the basic authentication from the webservice all works fine from 
both the java client and session Bean.  But I really need security.
The code I use in the bean and java client is identical:

Call call = service.createCall(port);
call.setTargetEndpointAddress(endpoint);
call.setProperty(Call.SOAPACTION_USE_PROPERTY, new Boolean(true));
call.setProperty(Call.SOAPACTION_URI_PROPERTY, "");
call.setProperty(ENCODING_STYLE_PROPERTY, URI_ENCODING);
call.setProperty(Call.USERNAME_PROPERTY,"user");
call.setProperty(Call.PASSWORD_PROPERTY,"password");
QName QNAME_TYPE_INT = new QName(NS_XSD, "integer");
QName QNAME_TYPE_STRING = new QName(NS_XSD, "string");
call.setReturnType(QNAME_TYPE_INT);
String BODY_NAMESPACE_VALUE = "http://user.frontend.gsmservice.sygel.com";;
call.setOperationName(new QName(BODY_NAMESPACE_VALUE, "sendMessage"));
call.addParameter("number", QNAME_TYPE_STRING, ParameterMode.IN);
call.addParameter("message", QNAME_TYPE_STRING, ParameterMode.IN);
String[] params = { mobileNumber, subject + " " + body};
java.math.BigInteger resultInt =  (java.math.BigInteger) call.invoke(params);


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859999#3859999

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3859999


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to