I am trying to access my VM Host throught a CIM Sample application.
My sample application is giving the "msg=curl error:52" while enumerating classes. following is the code which is failing.
objectpath = newCMPIObjectPath("root/cimv2", NULL, NULL);
enumeration = cc->ft->enumClassNames(cc, objectpath, 0, &status);
/* Print the results */
printf("enumClassNames() rc=%d, msg=%s\n", status.rc, (status.msg)? (char *)status.msg->hdl : NULL);
CURL library says it comes when an empty information is returned by server.
Can anyone help me to resolve this issue.