RabbitMQ.NET VB6.Demo
1.0.0
RabbitMQ .net 4 + VB6 Simple client
Docker is required to install RabbitMQ, skip this if RabbitMQ is already installed
docker run -d -p 5672:5672 -p 8080:15672 --hostname my-rabbit --name rabbit rabbitmq:3-managementBuild and register VB6ComLib
You need to register this assembly using the RegAsm.exe tool (32 bits). This tool is located in your .Net Framework version in C:WindowsMicrosoft.NETFramework.
C:WindowsMicrosoft.NETFrameworkv4.0.30319RegAsm.exe /codebase "C:UsersIvanShikhtDocumentsRabbitMQ DemoVB6ComLibVB6ComLibVB6ComLibbinDebugVB6ComLib.dll" /tlb:"C:UsersIvanShikhtDocumentsRabbitMQ DemoVB6ComLibVB6ComLibVB6ComLibbinDebugVB6ComLib.tlb"To unregister use /u instead of /codebase.