Yes, I believe you are correct. Here is the relevant part of my Control
(I changed the endpoint address):
import org.apache.beehive.controls.api.bean.ControlExtension;
import org.apache.beehive.controls.api.events.EventSet;
import com.bea.control.ServiceControl;
@ServiceControl.Location(urls = { "http://my.server.address/appname/ws"
})
@ServiceControl.HttpSoapProtocol
@ServiceControl.Handler(operation =
{"org.tiaa.datalayer.DSVSecurityHandler"})
@ServiceControl.SOAPBinding(style =
ServiceControl.SOAPBinding.Style.DOCUMENT, use =
ServiceControl.SOAPBinding.Use.LITERAL, parameterStyle =
ServiceControl.SOAPBinding.ParameterStyle.WRAPPED)
@ServiceControl.WSDL(resourcePath = "org/tiaa/datalayer/DSVNET.wsdl",
service = "DSVNetWebServiceService")
@ControlExtension
@SuppressWarnings("serial")
public interface DSVNetWebServiceControl extends ServiceControl {
Ben
-----Original Message-----
From: Andrew McCulloch [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 30, 2006 12:22 PM
To: Beehive Users
Subject: Re: Pass properties to WS Handler
Hi Ben,
Can you tell me if this is a client/control side handler or
server/web-service side handler? Also a bit of the handler config file
would be helpful.
P.S.
I am assuming that when you said you are using a control from a Weblogic
application that you are using the BEA Workshop web service control and
not
the web service control in the beehive svn tree [I don't believe the one
in
svn is shipped with the apache beehive distribution or BEA Workshop].
Is
that correct?
On 11/30/06, Burgess, Benjamin <[EMAIL PROTECTED]> wrote:
>
> I am fairly new to Web Services and very new to Beehive. So far, I
love
> it. I have a Weblogic application that will be calling a web service
> running on another box via a Control.
>
>
>
> Is there a way to pass dynamic properties to a handler that I have
> configured? If I use a handler config file, then I can setup
> init-params, but these can't change from request to request. The
> "MessageContext" object can be used to pass properties between
handlers,
> but can it be accessed somehow from the client before starting the
SOAP
> request (in the Control)?
>
>
>
> Thanks,
>
>
>
> Ben
>
>
>
> **************************************************************
> This message, including any attachments, contains confidential
information
> intended for a specific individual and purpose, and is protected by
law. If
> you are not the intended recipient, please contact sender immediately
by
> reply e-mail and destroy all copies. You are hereby notified that any
> disclosure, copying, or distribution of this message, or the taking of
any
> action based on it, is strictly prohibited.
> TIAA-CREF
> **************************************************************
>
>
>