You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2005/07/04 18:44:01 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/wsdls XSD_negativeInteger.wsdl XSD_nonNegativeInteger.wsdl XSD_nonPositiveInteger.wsdl XSD_positiveInteger.wsdl XSD_unsignedByte.wsdl XSD_unsignedInt.wsdl XSD_unsignedLong.wsdl XSD_unsignedShort.wsdl

dicka       2005/07/04 09:44:01

  Modified:    c/include/axis AxisUserAPI.h AxisUserAPI.hpp
               c/src/platforms/aix PlatformSpecificAIX.hpp
               c/src/platforms/os400 PlatformSpecificOS400.hpp
               c/src/platforms/unix PlatformSpecificUnix.hpp
               c/src/platforms/windows PlatformSpecificWindows.hpp
               c/src/soap/xsd NonNegativeInteger.cpp NonPositiveInteger.cpp
                        UnsignedLong.cpp
               c/src/wsdl/org/apache/axis/wsdl/wsdl2ws CUtils.java
               c/tests/auto_build/testcases unitTest.list
  Added:       c/tests/auto_build/testcases/client/cpp
                        XSD_negativeIntegerClient.cpp
                        XSD_nonNegativeIntegerClient.cpp
                        XSD_nonPositiveIntegerClient.cpp
                        XSD_positiveIntegerClient.cpp
                        XSD_unsignedByteClient.cpp
                        XSD_unsignedIntClient.cpp
                        XSD_unsignedLongClient.cpp
                        XSD_unsignedShortClient.cpp
               c/tests/auto_build/testcases/output
                        XSD_negativeInteger.expected
                        XSD_negativeInteger_ServerResponse.expected
                        XSD_nonNegativeInteger.expected
                        XSD_nonNegativeInteger_ServerResponse.expected
                        XSD_nonPositiveInteger.expected
                        XSD_nonPositiveInteger_ServerResponse.expected
                        XSD_positiveInteger.expected
                        XSD_positiveInteger_ServerResponse.expected
                        XSD_unsignedByte.expected
                        XSD_unsignedByte_ServerResponse.expected
                        XSD_unsignedInt.expected
                        XSD_unsignedInt_ServerResponse.expected
                        XSD_unsignedLong.expected
                        XSD_unsignedLong_ServerResponse.expected
                        XSD_unsignedShort.expected
                        XSD_unsignedShort_ServerResponse.expected
               c/tests/auto_build/testcases/tests XSD_negativeInteger.xml
                        XSD_nonNegativeInteger.xml
                        XSD_nonPositiveInteger.xml XSD_positiveInteger.xml
                        XSD_unsignedByte.xml XSD_unsignedInt.xml
                        XSD_unsignedLong.xml XSD_unsignedShort.xml
               c/tests/auto_build/testcases/wsdls XSD_negativeInteger.wsdl
                        XSD_nonNegativeInteger.wsdl
                        XSD_nonPositiveInteger.wsdl
                        XSD_positiveInteger.wsdl XSD_unsignedByte.wsdl
                        XSD_unsignedInt.wsdl XSD_unsignedLong.wsdl
                        XSD_unsignedShort.wsdl
  Log:
  Testcases for the XSD built-in simple types.  Covering the unsigned integer based types.
  Also including fixes for problems highlighted while developing these testcases.
  
  PR: AXISCPP-653, AXISCPP-715, AXISCPP-730
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.15      +5 -2      ws-axis/c/include/axis/AxisUserAPI.h
  
  http://cvs.apache.org/viewcvs/ws-axis/c/include/axis/AxisUserAPI.h.diff?r1=1.14&r2=1.15
  
  
  1.12      +5 -1      ws-axis/c/include/axis/AxisUserAPI.hpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/include/axis/AxisUserAPI.hpp.diff?r1=1.11&r2=1.12
  
  
  1.17      +3 -0      ws-axis/c/src/platforms/aix/PlatformSpecificAIX.hpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/platforms/aix/PlatformSpecificAIX.hpp.diff?r1=1.16&r2=1.17
  
  
  1.20      +3 -0      ws-axis/c/src/platforms/os400/PlatformSpecificOS400.hpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/platforms/os400/PlatformSpecificOS400.hpp.diff?r1=1.19&r2=1.20
  
  
  1.22      +3 -0      ws-axis/c/src/platforms/unix/PlatformSpecificUnix.hpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/platforms/unix/PlatformSpecificUnix.hpp.diff?r1=1.21&r2=1.22
  
  
  1.21      +3 -0      ws-axis/c/src/platforms/windows/PlatformSpecificWindows.hpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/platforms/windows/PlatformSpecificWindows.hpp.diff?r1=1.20&r2=1.21
  
  
  1.14      +9 -9      ws-axis/c/src/soap/xsd/NonNegativeInteger.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/soap/xsd/NonNegativeInteger.cpp.diff?r1=1.13&r2=1.14
  
  
  1.9       +60 -29    ws-axis/c/src/soap/xsd/NonPositiveInteger.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/soap/xsd/NonPositiveInteger.cpp.diff?r1=1.8&r2=1.9
  
  
  1.10      +2 -2      ws-axis/c/src/soap/xsd/UnsignedLong.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/soap/xsd/UnsignedLong.cpp.diff?r1=1.9&r2=1.10
  
  
  1.37      +4 -4      ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/CUtils.java
  
  http://cvs.apache.org/viewcvs/ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/CUtils.java.diff?r1=1.36&r2=1.37
  
  
  1.11      +9 -1      ws-axis/c/tests/auto_build/testcases/unitTest.list
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/unitTest.list.diff?r1=1.10&r2=1.11
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_negativeIntegerClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_negativeIntegerClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_nonNegativeIntegerClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_nonNegativeIntegerClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_nonPositiveIntegerClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_nonPositiveIntegerClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_positiveIntegerClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_positiveIntegerClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedByteClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedByteClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedIntClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedIntClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedLongClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedLongClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedShortClient.cpp
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_unsignedShortClient.cpp?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_negativeInteger.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_negativeInteger.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_negativeInteger_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_negativeInteger_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_nonNegativeInteger.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_nonNegativeInteger.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_nonNegativeInteger_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_nonNegativeInteger_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_nonPositiveInteger.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_nonPositiveInteger.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_nonPositiveInteger_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_nonPositiveInteger_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_positiveInteger.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_positiveInteger.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_positiveInteger_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_positiveInteger_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedByte.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedByte.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedByte_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedByte_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedInt.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedInt.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedInt_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedInt_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedLong.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedLong.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedLong_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedLong_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedShort.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedShort.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedShort_ServerResponse.expected
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/output/XSD_unsignedShort_ServerResponse.expected?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_negativeInteger.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_negativeInteger.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_nonNegativeInteger.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_nonNegativeInteger.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_nonPositiveInteger.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_nonPositiveInteger.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_positiveInteger.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_positiveInteger.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedByte.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedByte.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedInt.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedInt.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedLong.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedLong.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedShort.xml
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/tests/XSD_unsignedShort.xml?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_negativeInteger.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_negativeInteger.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_nonNegativeInteger.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_nonNegativeInteger.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_nonPositiveInteger.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_nonPositiveInteger.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_positiveInteger.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_positiveInteger.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedByte.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedByte.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedInt.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedInt.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedLong.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedLong.wsdl?rev=1.1
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedShort.wsdl
  
  http://cvs.apache.org/viewcvs/ws-axis/c/tests/auto_build/testcases/wsdls/XSD_unsignedShort.wsdl?rev=1.1