Results 1 to 2 of 2

Thread: Inegrating RCP with my appliacation

  1. #1

    Default Inegrating RCP with my appliacation

    Hi,

    I am trying to integrate Spring RCP to my application (appfuse based).

    The problem I have found is on this bean:
    Code:
    	<!-- Hessian exporter for the Clinic -->
    	<!-- Hessian is a slim binary HTTP remoting protocol -->
    	<bean name="/Clinic-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter">
    		<property name="service"><ref bean="clinic"/></property>
    		<property name="serviceInterface">
    			<value>org.springframework.samples.petclinic.Clinic</value>
    		</property>
    	</bean>
    I couldn't found any definition of class org.springframework.samples.petclinic.Clinic

    Should this be the reference to bean:
    Code:
    	<bean id="clinic" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
    		<property name="transactionManager"><ref local="transactionManager"/></property>
    		<property name="target"><ref bean="hsqlClinic"/></property>
    		<property name="transactionAttributes">
    			<props>
    				<prop key="*">PROPAGATION_REQUIRED</prop>
    			</props>
    		</property>
    	</bean>

    Any help will be strongly appreciated.

  2. #2
    Join Date
    Aug 2004
    Posts
    203

    Default

    it si from spring - spring-petclinic.jar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •