Hi Yosef,
Please share the XML's are used in Scope and Format for GetInfo API. You can try with below inputs and check if it works-
Scope:
<?xml version="1.0" encoding="UTF-8" ?>
<haspscope>
<license_manager hostname="localhost" />
</haspscope>
Format:
<haspformat format="host_fingerprint"/>
So the corresponding C code should look as follows-
- const char* scope =
- "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"
- "<haspscope>"
- " <license_manager hostname=\"localhost\" />"
- "</haspscope>";
- const char* format =
- "<haspformat format=\"host_fingerprint\"/>";
Regards,
Ashish