You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by su...@apache.org on 2003/10/26 10:22:52 UTC

cvs commit: ws-axis/c/src/client/samples/interoptests/groupB InteropTestPortTypeB.cpp

susantha    2003/10/26 01:22:51

  Modified:    c/src/client/samples/interoptests/base
                        InteropTestPortType.cpp
               c/src/client/samples/interoptests/groupB
                        InteropTestPortTypeB.cpp
  Log:
  changes to avoid compiler error with gcc
  
  Revision  Changes    Path
  1.7       +1 -1      ws-axis/c/src/client/samples/interoptests/base/InteropTestPortType.cpp
  
  Index: InteropTestPortType.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/samples/interoptests/base/InteropTestPortType.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- InteropTestPortType.cpp	26 Oct 2003 07:28:43 -0000	1.6
  +++ InteropTestPortType.cpp	26 Oct 2003 09:22:51 -0000	1.7
  @@ -178,7 +178,7 @@
   	if (SUCCESS != m_pCall->Initialize()) return pReturn;
   	m_pCall->SetSOAPVersion(SOAP_VER_1_1);
   	m_pCall->SetOperation("echoStruct", "http://soapinterop.org/");
  -	m_pCall->AddParameter(Value0, Axis_Serialize_SOAPStruct, Axis_Delete_SOAPStruct, "inputStruct");
  +	m_pCall->AddParameter(Value0, (void*) Axis_Serialize_SOAPStruct, (void*) Axis_Delete_SOAPStruct, "inputStruct");
   	m_pCall->SetReturnType((void*) Axis_DeSerialize_SOAPStruct, (void*) Axis_Create_SOAPStruct, (void*) Axis_Delete_SOAPStruct, Axis_TypeName_SOAPStruct, Axis_URI_SOAPStruct);
   	nStatus = m_pCall->Invoke();
   	if (SUCCESS == nStatus)
  
  
  
  1.8       +2 -2      ws-axis/c/src/client/samples/interoptests/groupB/InteropTestPortTypeB.cpp
  
  Index: InteropTestPortTypeB.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/samples/interoptests/groupB/InteropTestPortTypeB.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- InteropTestPortTypeB.cpp	26 Oct 2003 07:28:43 -0000	1.7
  +++ InteropTestPortTypeB.cpp	26 Oct 2003 09:22:51 -0000	1.8
  @@ -124,7 +124,7 @@
   	if (SUCCESS != m_pCall->Initialize()) return pReturn;
   	m_pCall->SetSOAPVersion(SOAP_VER_1_1);
   	m_pCall->SetOperation("echoNestedStruct", "http://soapinterop.org/");
  -	m_pCall->AddParameter(Value0, Axis_Serialize_SOAPStructStruct, Axis_Delete_SOAPStructStruct, "inputStruct");
  +	m_pCall->AddParameter(Value0, (void*) Axis_Serialize_SOAPStructStruct, (void*) Axis_Delete_SOAPStructStruct, "inputStruct");
   	m_pCall->SetReturnType((void*) Axis_DeSerialize_SOAPStructStruct, (void*) Axis_Create_SOAPStructStruct, (void*) Axis_Delete_SOAPStructStruct, Axis_TypeName_SOAPStructStruct, Axis_URI_SOAPStructStruct);
   	nStatus = m_pCall->Invoke();
   	if (SUCCESS == nStatus)
  @@ -146,7 +146,7 @@
   	if (SUCCESS != m_pCall->Initialize()) return pReturn;
   	m_pCall->SetSOAPVersion(SOAP_VER_1_1);
   	m_pCall->SetOperation("echoNestedArray", "http://soapinterop.org/");
  -	m_pCall->AddParameter(Value0, Axis_Serialize_SOAPArrayStruct, Axis_Delete_SOAPArrayStruct, "inputStruct");
  +	m_pCall->AddParameter(Value0, (void*) Axis_Serialize_SOAPArrayStruct, (void*)Axis_Delete_SOAPArrayStruct, "inputStruct");
   	m_pCall->SetReturnType((void*) Axis_DeSerialize_SOAPArrayStruct, (void*) Axis_Create_SOAPArrayStruct, (void*) Axis_Delete_SOAPArrayStruct, Axis_TypeName_SOAPArrayStruct, Axis_URI_SOAPArrayStruct);
   	nStatus = m_pCall->Invoke();
   	if (SUCCESS == nStatus)