0

I want to call a c# code from quality center. The XML files are residing in quality center I want to know about any driver,code that will give that xml data to that c# code. Thank in advance

crypted
  • 10,118
  • 3
  • 39
  • 52

1 Answers1

0

You can do this via workflow code:

Set CSharpCode = CreateObject("YourNameSpace.YourStaticClass")

then use the methods in your C# code like this:

CSharpCode.YourMethod

You can pass the XML data to the C# end as a parameter.

In the dll you have to ornament the class you are calling from with the attribute [ComVisible(true)]

Some of these actions may be not so trivial if you are not familiar already. I recommend reading HP forum as well as TDForum.