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 he...@apache.org on 2004/07/22 04:56:13 UTC

cvs commit: ws-axis/contrib/ews/test/testData/math ejb-jar.xml

hemapani    2004/07/21 19:56:13

  Modified:    contrib/ews/test/testData/math ejb-jar.xml
  Log:
  fix the testcase in the Math test the SEI and the EJB remote interface 
  was given same name result in compilation error
  
  Revision  Changes    Path
  1.3       +3 -3      ws-axis/contrib/ews/test/testData/math/ejb-jar.xml
  
  Index: ejb-jar.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/contrib/ews/test/testData/math/ejb-jar.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ejb-jar.xml	30 Mar 2004 10:40:21 -0000	1.2
  +++ ejb-jar.xml	22 Jul 2004 02:56:13 -0000	1.3
  @@ -6,10 +6,10 @@
   			<display-name>BookQuoteService</display-name>
   			<ejb-name>MathFace</ejb-name>
   			<home>testData.math.MathFaceHome</home>
  -			<remote>testData.math.MathFace</remote>
  +			<remote>testData.math.MathFaceEJB</remote>
   			<ejb-class>testData.math.MathFaceImpl</ejb-class>
   			<session-type>Stateless</session-type>
   			<transaction-type>Bean</transaction-type>
  -		</session
  ->	</enterprise-beans>
  +		</session>
  +		</enterprise-beans>
   </ejb-jar>