|
Home > Archive > BizTalk Server General > July 2004 > FFDasm properties are not shown in inherited Flat File Disassembler pipeline component
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
FFDasm properties are not shown in inherited Flat File Disassembler pipeline component
|
|
| Sam Vanhoutte 2004-07-24, 5:53 pm |
| Hello,
I want override the FFDasm (standard flat file disassembler component) to
change the GetNext method (I want to add specific properties on every
outgoing message).
So, based on the article in
http://msdn.microsoft.com/library/d...g_pipe_eiji.asp
(Extending the Flat File Disassembler Pipeline Component), I wrote my
component.
But when I drag my custom FF component in the pipeline designer, the public
properties of the FFDasm are not shown. The DocumentSpecName properties
etc. are not shown in the property grid of the component.
How can I reuse the properties?
Best regards,
SV
| |
| XUEZHAI NI 2004-07-28, 6:09 pm |
| If you do copy and paste the example from the
http://msdn.microsoft.com/library/d...-us/sdk/htm/ebi
z_prog_pipe_eiji.asp
and just modify the gonext method, the public properties should be shown, I
can see it in my machine.
make sure you custom pipeline component extend the following interface:
FFDasmComp, IBaseComponent, IDisassemblerComponent; same as the sample,
after you generate the assembly for your custom pipeline components, then
add it to the toolbox from the Tools--add/remove toolbox item menu. and
drag/drop to the pipeline design surface in Biztalk project.
if you still have the problem, would you pass me the project? I can take a
look
thanks
Ni
| |
| Sam Vanhoutte 2004-07-29, 7:50 am |
| > If you do copy and paste the example from the
>
http://msdn.microsoft.com/library/d...-us/sdk/htm/ebi
> z_prog_pipe_eiji.asp
> and just modify the gonext method, the public properties should be shown,
I
> can see it in my machine.
My mistake...
I did override the default constructor, without calling the base
constructor... After doing this, everything works as desired...
thank you
|
|
|
|
|