Hello,
I was looking at the different ways to write a new Input Format to be able to analyse my own log files with Log Parser.
So I wrote a scriptlet, I included it in my C# project and it is working well.
Now I'm trying to do the same, but by writting a C# class. I though I just had then to compile (csc command) this C# class to generate a dll, and then to include it in my .net project, and to use it as an Input Format when executing my sql query with the LogQuery execute Method.
But it seems it's not the right way to do that because i get the message The specified input object is not a built-in Log Parser input format, nor a custom ILogParserInputContext COM plugin [The parameter is incorrect.].
I don't know where I'm wrong, in the dll generation or in the class itself (I inspired me of the XML COM Input Format sample to write the class)
Some idea? Somewhere some skeletton and the steps to follow to do that?
Thanks a lot!
PH