Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 8380 invoked from network); 16 Oct 2003 12:02:50 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 16 Oct 2003 12:02:50 -0000 Received: (qmail 73016 invoked by uid 500); 16 Oct 2003 12:02:44 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 72994 invoked by uid 500); 16 Oct 2003 12:02:43 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 72983 invoked by uid 500); 16 Oct 2003 12:02:43 -0000 Delivered-To: apmail-ws-axis-cvs@apache.org Date: 16 Oct 2003 12:02:45 -0000 Message-ID: <20031016120245.8358.qmail@minotaur.apache.org> From: roshan@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/c/src/client/deployment AdminClient.cpp X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N roshan 2003/10/16 05:02:45 Modified: c/src/client/deployment AdminClient.cpp Log: added code to support deployment Revision Changes Path 1.3 +3 -2 ws-axis/c/src/client/deployment/AdminClient.cpp Index: AdminClient.cpp =================================================================== RCS file: /home/cvs/ws-axis/c/src/client/deployment/AdminClient.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- AdminClient.cpp 11 Oct 2003 06:14:25 -0000 1.2 +++ AdminClient.cpp 16 Oct 2003 12:02:45 -0000 1.3 @@ -107,6 +107,7 @@ m_pCall->AddParameter(pAchLibName, "LibName"); Axis_Array* structAxis_Array= (Axis_Array*) malloc(sizeof(Axis_Array)); + structAxis_Array->m_Array = sArrAllowedMethods; structAxis_Array->m_Size = iAllowdMethodsArraySize; m_pCall->AddParameter(structAxis_Array, XSD_STRING, "AllowedMethods"); @@ -118,9 +119,9 @@ if (SUCCESS == nStatus) { - ret = m_pCall->GetResult().nValue; + ret = m_pCall->GetResult()->GetInt(); #ifdef _DEBUG - printf("%s%d", "Got The result", ret); + printf("%s%d", "Got The result = ", ret); #endif } /* Following will close the connection with the server too */