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 cd...@apache.org on 2005/06/01 12:59:29 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/server/cpp InteropTestPortTypeDoc.cpp

cdinapala    2005/06/01 03:59:29

  Modified:    c/tests/auto_build/testcases/tests InteropTestRound1Doc.xml
               c/tests/auto_build/testcases/tests/server InteropBaseDoc.xml
  Added:       c/tests/auto_build/testcases/server/cpp
                        InteropTestPortTypeDoc.cpp
  Log:
  Add server support to the InteropTestRound1Doc test after change for solve the JIRA issue AXISCPP-588.
  
  Revision  Changes    Path
  1.3       +1 -1      ws-axis/c/tests/auto_build/testcases/tests/InteropTestRound1Doc.xml
  
  Index: InteropTestRound1Doc.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/tests/InteropTestRound1Doc.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InteropTestRound1Doc.xml	7 Apr 2005 11:40:14 -0000	1.2
  +++ InteropTestRound1Doc.xml	1 Jun 2005 10:59:29 -0000	1.3
  @@ -9,5 +9,5 @@
               InteropTestRound1Doc.cpp.out
           </output>
       </expected>
  -	<endpoint>http://localhost:80/axis/InteropBase</endpoint>
  +	<endpoint>http://localhost:80/axis/InteropBaseDoc</endpoint>
   </test>
  
  
  
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/tests/server/InteropBaseDoc.xml
  
  Index: InteropBaseDoc.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/tests/server/InteropBaseDoc.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- InteropBaseDoc.xml	30 Mar 2005 10:42:14 -0000	1.1
  +++ InteropBaseDoc.xml	1 Jun 2005 10:59:29 -0000	1.2
  @@ -2,7 +2,7 @@
       <name>InteropBaseDoc</name>
       <description>InteropBaseDoc</description>
       <serviceLang>cpp</serviceLang>
  -    <serviceCode>InteropTestPortType.cpp</serviceCode>
  +    <serviceCode>InteropTestPortTypeDoc.cpp</serviceCode>
       <wsdl>InteropTestRound1Doc.wsdl</wsdl>
   	<servicename></servicename>
   </service>
  \ No newline at end of file
  
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/server/cpp/InteropTestPortTypeDoc.cpp
  
  Index: InteropTestPortTypeDoc.cpp
  ===================================================================
  /*
   * Copyright 2003-2004 The Apache Software Foundation.
  
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *		http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   * This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
   * This file contains definitions of the web service
   */
  
  #include "InteropTestPortTypeDoc.hpp"
  
  
  InteropTestPortTypeDoc::InteropTestPortTypeDoc()
  {
  }
  
  InteropTestPortTypeDoc::~InteropTestPortTypeDoc()
  {
  }
  
  /* This function is called by the AxisEngine when something went wrong
   with the current web service request processing. Appropriate actions should
   be taken here.*/
  void InteropTestPortTypeDoc::onFault()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is first loaded. So here we can initialize any global/static
   data structures of this web service or open database connections */
  void InteropTestPortTypeDoc::init()
  {
  }
  /* This function is called by the AxisEngine when this web service
   library is unloaded. So we can deallocate any global/static data structures
   and close database connections etc here. */
  void InteropTestPortTypeDoc::fini()
  {
  }
  xsd__string InteropTestPortTypeDoc::echoString(xsd__string Value0)  
  {
  	return Value0;
  }
  xsd__string_Array InteropTestPortTypeDoc::echoStringArray(xsd__string_Array Value0)  
  {
  	return Value0;
  }
  xsd__int InteropTestPortTypeDoc::echoInteger(xsd__int Value0)  
  {
  	return Value0;
  }
  xsd__int_Array InteropTestPortTypeDoc::echoIntegerArray(xsd__int_Array Value0)  
  {
  	return Value0;
  }
  xsd__float InteropTestPortTypeDoc::echoFloat(xsd__float Value0)  
  {
  	return Value0;
  }
  xsd__float_Array InteropTestPortTypeDoc::echoFloatArray(xsd__float_Array Value0)  
  {
  	return Value0;
  }
  SOAPStruct* InteropTestPortTypeDoc::echoStruct(SOAPStruct* Value0)  
  {
  	return Value0;
  }
  SOAPStruct_Array InteropTestPortTypeDoc::echoStructArray(SOAPStruct_Array Value0)  
  {
  	return Value0;
  }
  void InteropTestPortTypeDoc::echoVoid()  
  {
  }
  xsd__base64Binary InteropTestPortTypeDoc::echoBase64(xsd__base64Binary Value0)  
  {
  	return Value0;
  }
  xsd__dateTime * InteropTestPortTypeDoc::echoDate(xsd__dateTime * Value0)  
  {
  	return Value0;
  }
  xsd__hexBinary InteropTestPortTypeDoc::echoHexBinary(xsd__hexBinary Value0)  
  {
  	return Value0;
  }
  xsd__decimal * InteropTestPortTypeDoc::echoDecimal(xsd__decimal * Value0)  
  {
  	return Value0;
  }
  xsd__boolean InteropTestPortTypeDoc::echoBoolean(xsd__boolean Value0)  
  {
  	return Value0;
  }