Hi! We are developing an SNMP Manager Application and we are having trouble running the code below.
When we are trying to run the line ' engine1 send: msg' below it returns an unhandled exception "defaultProcessingPolicyClass".
We don't think it has anything specifics to do with SNMP but with Opentalk RequestBroker.
Also you may have to run the code line by line.
Any help is appreciated. Thanks.
engine1 := SNMPEngine newUdpAtPort:10161.
engine1 start.
msg := SNMPAbstractMessage getRequest.
msg destTransportAddress: ( IPSocketAddress hostAddress: #[134 117 53 85] port: 10162 ).
msg pdu addPduBindingKey: ( Asn1OBJECTIDENTIFIER value: oid ).
engine1 send: msg
engine1 close.
engine1 release.