Thanks Tom. It worked like a charm. PK
-----Original Message-----
There’s another method you have to override, something like setOptions(String name, String value). You compare the name string to the property name you want to set, and if they match (usually converting both to upper or lower case), convert the property string to the correct representation (i.e., make it an int) and assign it. This can be found all over the place.
Tom Hawker Office 408–576–6591 PCS 913–488–0796 From:
Kadarkarai, Prabhakar (Prabhakar) [mailto:[EMAIL PROTECTED]
Hello All,
In a custom appender I would like to add few custom parameters and get it loaded when the appender loads. I have defined all the parameters in the XML configuration file like "<param name=3D"Path" value=3D"drprabhakar-a0/private$/RemoteMSMQ" />". When I am trying to = load the appender I got the appender loaded but no properties loaded. I have defined set/get methods in my custom appender file which is shown below. How do I get this working? Should I need to call any MACRO to get the parameter loading?
Thanks, PK
void MSMQAppender::setPath(BSTR pathVal) { this->pathName = pathVal; } BSTR MSMQAppender::getPath() { return this->pathName; }
|
RE: How do i load a custom parameter?
Kadarkarai, Prabhakar \(Prabhakar\) 17 Jan 2005 23:25:55 -0000
- How do i load a custom parameter? Kadarkarai, Prabhakar \(Prabhakar\)
- RE: How do i load a custom parame... thomas.hawker
- Kadarkarai, Prabhakar \(Prabhakar\)