You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by sn...@apache.org on 2004/05/07 10:39:16 UTC

cvs commit: ws-fx/sandesha/interop/org/apache/sandesha/samples/interop Scenario_1_1_Client.java Scenario_2_2_Client.java Scenario_2_1_Client.java

snimalan    2004/05/07 01:39:16

  Modified:    sandesha/interop/org/apache/sandesha/samples/interop
                        Scenario_1_1_Client.java Scenario_2_2_Client.java
                        Scenario_2_1_Client.java
  Log:
  Change Last Message property true
  PR:
  Obtained from:
  Submitted by:	
  Reviewed by:	
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.5       +1 -1      ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/Scenario_1_1_Client.java
  
  Index: Scenario_1_1_Client.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/Scenario_1_1_Client.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Scenario_1_1_Client.java	7 May 2004 07:40:10 -0000	1.4
  +++ Scenario_1_1_Client.java	7 May 2004 08:39:16 -0000	1.5
  @@ -60,7 +60,7 @@
             
               call.invoke(new Object[] {"Ping 1"});
               call.invoke(new Object[] {"Ping 2"});
  -			call.setProperty(Constants.CLIENT_LAST_MESSAGE,(new Boolean(false)));
  +			call.setProperty(Constants.CLIENT_LAST_MESSAGE,(new Boolean(true)));
               //call.setLastMessage(true); //ALEK: was AXIS Call patched for it?
               call.invoke(new Object[] {"Ping 3"});
               
  
  
  
  1.4       +1 -1      ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/Scenario_2_2_Client.java
  
  Index: Scenario_2_2_Client.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/Scenario_2_2_Client.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Scenario_2_2_Client.java	7 May 2004 08:33:19 -0000	1.3
  +++ Scenario_2_2_Client.java	7 May 2004 08:39:16 -0000	1.4
  @@ -63,7 +63,7 @@
   			String seq=uuidGen.nextUUID();
   			System.out.println(call.invoke(new Object[] {"Hello",seq}));
   			System.out.println(call.invoke(new Object[] {"World",seq}));
  -			call.setProperty(Constants.CLIENT_LAST_MESSAGE,(new Boolean(false)));
  +			call.setProperty(Constants.CLIENT_LAST_MESSAGE,(new Boolean(true)));
   			//call.setLastMessage(true); //ALEK: was AXIS Call patched for it?
   			System.out.println(call.invoke(new Object[] {"Bye",seq}));
   
  
  
  
  1.2       +1 -1      ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/Scenario_2_1_Client.java
  
  Index: Scenario_2_1_Client.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/sandesha/interop/org/apache/sandesha/samples/interop/Scenario_2_1_Client.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Scenario_2_1_Client.java	7 May 2004 08:26:04 -0000	1.1
  +++ Scenario_2_1_Client.java	7 May 2004 08:39:16 -0000	1.2
  @@ -57,7 +57,7 @@
   			call.invoke(new Object[] { "Ping 2" });
   			call.setProperty(
   				Constants.CLIENT_LAST_MESSAGE,
  -				(new Boolean(false)));
  +				(new Boolean(true)));
   			call.invoke(new Object[] { "Ping 3" });
   
   		} catch (Exception e) {