(file) Return to CMPIProviderManager.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / ProviderManager2 / CMPI

Diff for /pegasus/src/Pegasus/ProviderManager2/CMPI/CMPIProviderManager.cpp between version 1.59 and 1.60

version 1.59, 2005/03/01 07:11:57 version 1.60, 2005/03/17 16:33:53
Line 405 
Line 405 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMGetInstanceRequestMessage * req = dynamic_cast<CIMGetInstanceRequestMessage *>(const_cast<Message *>(message));                 CIMGetInstanceRequestMessage * req = dynamic_cast<CIMGetInstanceRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 515 
Line 515 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMEnumerateInstancesRequestMessage * req = dynamic_cast<CIMEnumerateInstancesRequestMessage *>(const_cast<Message *>(message));                 CIMEnumerateInstancesRequestMessage * req = dynamic_cast<CIMEnumerateInstancesRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 618 
Line 618 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMEnumerateInstanceNamesRequestMessage * req = dynamic_cast<CIMEnumerateInstanceNamesRequestMessage *>(const_cast<Message *>(message));                 CIMEnumerateInstanceNamesRequestMessage * req = dynamic_cast<CIMEnumerateInstanceNamesRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 724 
Line 724 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMCreateInstanceRequestMessage * req = dynamic_cast<CIMCreateInstanceRequestMessage *>(const_cast<Message *>(message));                 CIMCreateInstanceRequestMessage * req = dynamic_cast<CIMCreateInstanceRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 833 
Line 833 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMModifyInstanceRequestMessage * req = dynamic_cast<CIMModifyInstanceRequestMessage *>(const_cast<Message *>(message));                 CIMModifyInstanceRequestMessage * req = dynamic_cast<CIMModifyInstanceRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 936 
Line 936 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMDeleteInstanceRequestMessage * req = dynamic_cast<CIMDeleteInstanceRequestMessage *>(const_cast<Message *>(message));                 CIMDeleteInstanceRequestMessage * req = dynamic_cast<CIMDeleteInstanceRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1052 
Line 1052 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMExecQueryRequestMessage * req = dynamic_cast<CIMExecQueryRequestMessage *>(const_cast<Message *>(message));                 CIMExecQueryRequestMessage * req = dynamic_cast<CIMExecQueryRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1176 
Line 1176 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMAssociatorsRequestMessage * req = dynamic_cast<CIMAssociatorsRequestMessage *>(const_cast<Message *>(message));                 CIMAssociatorsRequestMessage * req = dynamic_cast<CIMAssociatorsRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1294 
Line 1294 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMAssociatorNamesRequestMessage * req = dynamic_cast<CIMAssociatorNamesRequestMessage *>(const_cast<Message *>(message));                 CIMAssociatorNamesRequestMessage * req = dynamic_cast<CIMAssociatorNamesRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1413 
Line 1413 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMReferencesRequestMessage * req = dynamic_cast<CIMReferencesRequestMessage *>(const_cast<Message *>(message));                 CIMReferencesRequestMessage * req = dynamic_cast<CIMReferencesRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1527 
Line 1527 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMReferenceNamesRequestMessage * req = dynamic_cast<CIMReferenceNamesRequestMessage *>(const_cast<Message *>(message));                 CIMReferenceNamesRequestMessage * req = dynamic_cast<CIMReferenceNamesRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1641 
Line 1641 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMInvokeMethodRequestMessage * req = dynamic_cast<CIMInvokeMethodRequestMessage *>(const_cast<Message *>(message));                 CIMInvokeMethodRequestMessage * req = dynamic_cast<CIMInvokeMethodRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1819 
Line 1819 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMCreateSubscriptionRequestMessage * req = dynamic_cast<CIMCreateSubscriptionRequestMessage *>(const_cast<Message *>(message));                 CIMCreateSubscriptionRequestMessage * req = dynamic_cast<CIMCreateSubscriptionRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(*context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this
Line 1970 
Line 1970 
  
 #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY #ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
                 CIMDeleteSubscriptionRequestMessage * req = dynamic_cast<CIMDeleteSubscriptionRequestMessage *>(const_cast<Message *>(message));                 CIMDeleteSubscriptionRequestMessage * req = dynamic_cast<CIMDeleteSubscriptionRequestMessage *>(const_cast<Message *>(message));
                 int err_num=enablePThreadSecurity(req->userName);                  int err_num=enablePThreadSecurity(context);
                 if (err_num!=0)                 if (err_num!=0)
                 {                 {
                         // need a new CIMException for this                         // need a new CIMException for this


Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2