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/09/29 05:45:28 UTC

cvs commit: ws-axis/c/src/server/samples/simplewebservice/webservicewrapper WebServiceWrapper.cpp

susantha    2003/09/28 20:45:28

  Modified:    c/src/server/samples/simplewebservice/webservicewrapper
                        WebServiceWrapper.cpp
  Log:
  Fixed a simple bug in Serialization of Point complex type
  
  Revision  Changes    Path
  1.5       +1 -1      ws-axis/c/src/server/samples/simplewebservice/webservicewrapper/WebServiceWrapper.cpp
  
  Index: WebServiceWrapper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/samples/simplewebservice/webservicewrapper/WebServiceWrapper.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- WebServiceWrapper.cpp	18 Sep 2003 06:28:07 -0000	1.4
  +++ WebServiceWrapper.cpp	29 Sep 2003 03:45:28 -0000	1.5
  @@ -104,7 +104,7 @@
   	{
   		AxisString sPrefix = pSZ.getNewNamespacePrefix();
   		pSZ << "<" << Axis_TypeName_Point << " xsi:type=\"" << sPrefix.c_str() <<":"
  -			<< Axis_TypeName_Point << " xmlns:" << sPrefix.c_str() << "=\""
  +			<< Axis_TypeName_Point << "\" xmlns:" << sPrefix.c_str() << "=\""
   			<< Axis_URI_Point << "\">";
   	}
   	pSZ << pSZ.SerializeBasicType("x", p->x);