chrisdutz commented on issue #1452:
URL: https://github.com/apache/plc4x/issues/1452#issuecomment-2003299966

   When running your example, I only get issues with the last line:
   
   After changing:
   
   ```
           System.out.println( 
response.getTagNames()+"---"+response.getResponseCode(response.getTagNames().toString()));
   ```
   
   To:
   
   ```
          for (String tagName : response.getTagNames()) {
                   System.out.println( 
tagName+"---"+response.getResponseCode(tagName));
               }
   ```
   
   All worked fine on my machine ... what type of device are you connecting to?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to