I have a NETCONF device which does not support 'netconf' subsystem as specified in RFC 4742 or 6242:
ssh -s kau...@10.255.221.205 -p 830 netconf
kau...@10.255.221.205's password:
Request for subsystem 'netconf' failed on channel 0However, I can login and exchange NETCONF messages to/from this device using XML RPC classes: org.apache.xmlrpc.client.XmlRpcClient and org.apache.xmlrpc.client.XmlRpcSunHttpTransport.
Using ClientTest.java sample program, I can connect to SSH port 22; but the subsystem request fails as expected. I cannot specify port 830 due to above constraint. I see that HttpTransportClient class exists in your implementation; but not implemented yet. Is there any way I can use your NetconfX library to interact with my device?
Appreciate your help,
Kaushal Agrawal