Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Note
titleArchive Content

Please note this page is present for reference only. These old .Net clients (and related code) have been removed and are no longer released components.

Excel AddIn

Qpid .net comes with Excel AddIns that are located in:

...

To use you own message processor follows those steps:
1) Write your own message processor that extends ExcelAddIn.MessageProcessor
2) Edit Excel.exe.config and uncomment the entries:
<add key="ProcessorAssembly" value="<path>\qpid\dotnet\client-010\addins\ExcelAddInMessageProcessor\bin\Debug\ExcelAddInMessageProcessor.dll"/>
<add key="ProcessorClass" value="ExcelAddInMessageProcessor.Processor"/>

  • ProcessorAssembly is the path on the Assembly that contains your processor class
  • ProcessorClass is your processor class name
    3) run excel and define a rtd function

Note: the provided ExcelAddInProducer can be used for testing the provided message processor. As messages are sent to queue1 the following rtd function should be used =rtd("Qpiud",,"queue1")