[JBoss JIRA] Created: (EJBTHREE-1604) Do not create new WebServiceContext when already provided
by Alessio Soldano (JIRA)
Do not create new WebServiceContext when already provided
----------------------------------------------------------
Key: EJBTHREE-1604
URL: https://jira.jboss.org/jira/browse/EJBTHREE-1604
Project: EJB 3.0
Issue Type: Feature Request
Reporter: Alessio Soldano
Assignee: Alessio Soldano
The StatelessContainer's method invokeEndpoint(Method method, Object[] args, InvocationContextCallback invCtxCallback) currently get the WebServiceContext instance using the right jbossws-spi factory. This is an issue with the JBossWS-Metro stack as we should use the WebServiceContext it already provides.
This should be passed in as an attachment in the InvocationContextCallback.
Something like this should work:
...
WebServiceContext providedCtx = invCtxCallback.getAttachment(WebServiceContext.class);
if (providedCtx != null)
{
//use the provided one through a delegate
jaxwsContext = new WebServiceContextDelegate(providedCtx);
}
else
{
//do as we used to do
jaxwsContext = contextFactory.newWebServiceContext(InvocationType.JAXWS_EJB3, invCtxCallback.get(javax.xml.ws.handler.MessageContext.class));
}
...
This requires jbossws-spi 1.0.7 to be released and specified in the dependencies because of the WebServiceContextDelegate.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (JBAS-8136) Consistent mechanism for masking passwords across the configuration
by Brian Stansberry (JIRA)
Consistent mechanism for masking passwords across the configuration
-------------------------------------------------------------------
Key: JBAS-8136
URL: https://jira.jboss.org/browse/JBAS-8136
Project: JBoss Application Server
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: Domain Management
Reporter: Brian Stansberry
Fix For: Unscheduled
This JIRA is based on feedback we received after the Andiamo BOF at JBoss World 2010:
>> The means to mask passwords is different for
>> the newer jboss-beans.xml files from the older mbean
>> configurations. Would much rather have a one and done solution
>> instead of managing two different solutions.
With the AS 7 unified domain configuration this should fall out naturally, but we need to guard that no subsystems introduce non-standard ways of doing this.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months