Hi
I am testing the toaster module to get an understanding on user-rpc. But it looks like something is missing in my setup.
Steps followed and the error:
netconf> user-rpc
Type the content of a RPC operation (close editor by Ctrl-D):
<toaster:make-toast xmlns:toaster="
http://netconfcentral.org/ns/toaster"/>
libnetconf DEBUG: Writing message (session 22957): <?xml version="1.0" encoding="UTF-8"?>
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
<toaster:make-toast xmlns:toaster="
http://netconfcentral.org/ns/toaster"/>
</rpc>
libnetconf DEBUG: Received message (session 22957): <?xml version="1.0" encoding="UTF-8"?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
<rpc-error>
<error-type>application</error-type>
<error-tag>operation-not-supported</error-tag>
<error-severity>error</error-severity>
<error-message>Request could not be completed because the requested operation is not supported by this implementation.</error-message>
</rpc-error>
</rpc-reply>
DEBUGS ON SERVER SIDE:
netopeer-server[22626]: Some message received
netopeer-server[22626]: Request <?xml version="1.0" encoding="UTF-8"?>
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="3">
<toaster:make-toast xmlns:toaster="
http://netconfcentral.org/ns/toaster"/>
</rpc>
netopeer-server[22626]: ncds_apply_rpc2all: unsupported NETCONF operation (make-toast) requested.
Toaster module installed:
root@osboxes:/home/osboxes/laxman# netopeer-manager list
List of startup Netopeer modules:
toaster (enabled)
Why doesnt RPC for make-toast is not getting invoked?