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 da...@apache.org on 2004/06/25 13:40:07 UTC

cvs commit: ws-axis/c/tests/client/fault_mapping/gen_src Makefile.am

damitha     2004/06/25 04:40:07

  Modified:    c/tests/client/exceptionTest MathOpsClient.cpp
               c/tests/client/exceptionTest/gen_src Makefile.am
               c/tests/client/fault_mapping/gen_src Makefile.am
  Log:
  (null)
  
  Revision  Changes    Path
  1.8       +2 -3      ws-axis/c/tests/client/exceptionTest/MathOpsClient.cpp
  
  Index: MathOpsClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/exceptionTest/MathOpsClient.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- MathOpsClient.cpp	24 Jun 2004 11:47:21 -0000	1.7
  +++ MathOpsClient.cpp	25 Jun 2004 11:40:07 -0000	1.8
  @@ -27,8 +27,8 @@
   		port = argv[2];
   	}
   	printf("Sending Requests to Server http://%s:%s ........\n\n", server, port);
  -	sprintf(endpoint, "http://%s:%s/axis/MathOps", server, port);
  -	//sprintf(endpoint, "http://%s:%s/", server, port);
  +	//sprintf(endpoint, "http://%s:%s/axis/MathOps", server, port);
  +	sprintf(endpoint, "http://%s:%s/", server, port);
   	MathOps ws(endpoint);
   
   	op = argv[3];
  @@ -49,7 +49,6 @@
   	i1 = atoi(p1);
   	i2 = atoi(p2);
   
  -        getchar();
   	if (strcmp(op, "div") == 0)
   	{
               try
  
  
  
  1.2       +3 -3      ws-axis/c/tests/client/exceptionTest/gen_src/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/exceptionTest/gen_src/Makefile.am,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.am	23 Jun 2004 11:01:40 -0000	1.1
  +++ Makefile.am	25 Jun 2004 11:40:07 -0000	1.2
  @@ -1,6 +1,6 @@
  -bin_PROGRAMS = mathops
  +bin_PROGRAMS = exceptiontest
   SUBDIRS =
   AM_CPPFLAGS = $(CPPFLAGS)
  -mathops_SOURCES =  MathOps.cpp ../MathOpsClient.cpp
  -mathops_LDADD = $(LDFLAGS)
  +exceptiontest_SOURCES =  MathOps.cpp ../MathOpsClient.cpp
  +exceptiontest_LDADD = $(LDFLAGS)
   INCLUDES = -I$(AXISCPP_HOME)/include
  
  
  
  1.2       +3 -3      ws-axis/c/tests/client/fault_mapping/gen_src/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/fault_mapping/gen_src/Makefile.am,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.am	23 Jun 2004 11:11:46 -0000	1.1
  +++ Makefile.am	25 Jun 2004 11:40:07 -0000	1.2
  @@ -1,6 +1,6 @@
  -bin_PROGRAMS = mathops
  +bin_PROGRAMS = faultmapping
   SUBDIRS =
   AM_CPPFLAGS = $(CPPFLAGS)
  -mathops_SOURCES =  OutOfBoundStruct.cpp AxisDivByZeroException.cpp AxisNormalDetailException.cpp MathOps.cpp SpecialDetailStruct.cpp AxisOutOfBoundException.cpp DivByZeroStruct.cpp ../MathOpsClient.cpp
  -mathops_LDADD = $(LDFLAGS)
  +faultmapping_SOURCES =  OutOfBoundStruct.cpp AxisDivByZeroException.cpp AxisNormalDetailException.cpp MathOps.cpp SpecialDetailStruct.cpp AxisOutOfBoundException.cpp DivByZeroStruct.cpp ../MathOpsClient.cpp
  +faultmapping_LDADD = $(LDFLAGS)
   INCLUDES = -I$(AXISCPP_HOME)/include