I'm new in API development, and ... development
I have to develop a web portal to do some provisionning in a vserver.
With zexplore, i succeed to do queries till i'm at cluster level, but when i want to do some within a vserver, it fails.
message is 'Vserver API missing vserver parameter.' errno='13006'
my query is :
<?xml version="1.0" encoding="UTF-8"?>
<netapp xmlns="http://www.netapp.com/filer/admin" version="1.110">
<qtree-create>
<export-policy>default</export-policy>
<mode>755</mode>
<oplocks>Enabled</oplocks>
<qtree>qtt</qtree>
<security-style>unix</security-style>
<volume>VOL_01</volume>
</qtree-create>
</netapp>
I guess i need to specify the vserver i want to access to, but how ...
I succeeded to use the vserver_tunnel.py to do something, but this is not the way I intend to.
Perhaps i'm on the wrong way, but I would like not to use third party language like perl, python .., but build on the fly and send xml request directly to the filer
Any help ?