Search code examples
javaimportjmsjms-topic

JMS TopicBrowser Import


I'm trying to use TopicBrowser (documentation here and here) to view messages for a durable subscriber but I cannot find the proper way to import it in my code. I'm new to Java so I may be missing something in the documentation.


Solution

  • The correct import statement was

    import oracle.jms.TopicBrowser;
    

    My issue was that I needed to add aqapi.jar to the class path.