In short, where can I find C#/VB client side sample code that calls CLR stored procedure with some argumnet [like a sqlxml data] and receives a datareader or other form of result ?
Also how do I periodically receive information from the running CLR stored proc sent through SQlContext.Pipe.Send() method ?
Just the same way you call ordinary stroed procedures. May be...
I wrote a blog long back - Write your first SQL Server CLR Stored Procedure
I know that I have usually created a regular T-SQL stored procedure which calls my CLR functions or stored procs. Then they can be treated just like all other stored procs.