|
Last change
on this file since 1359 was 1257, checked in by Solomon Blaz, 14 years ago |
|
deleted duplicate classes from gov.va.med.edp.rpc package in favor of ones in gov.va.med.edp.vistalink and configured rest of application accordingly
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8"?>
|
|---|
| 2 | <beans xmlns="http://www.springframework.org/schema/beans"
|
|---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
|
|---|
| 4 | xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
|---|
| 5 | http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd">
|
|---|
| 6 |
|
|---|
| 7 | <bean id="vistaLinkConnectionFactoryLocator"
|
|---|
| 8 | class="gov.va.med.edp.vistalink.locator.VistaLinkConnectorConfigConnectionFactoryLocator">
|
|---|
| 9 | <property name="connectors" ref="vistaAccounts"/>
|
|---|
| 10 | </bean>
|
|---|
| 11 |
|
|---|
| 12 | <bean id="vistaLinkRpcTemplate" class="gov.va.med.edp.vistalink.VistaLinkTemplate">
|
|---|
| 13 | <constructor-arg index="0" ref="vistaLinkConnectionFactoryLocator"/>
|
|---|
| 14 | </bean>
|
|---|
| 15 |
|
|---|
| 16 | <util:set id="vistaAccounts">
|
|---|
| 17 | <bean class="gov.va.med.edp.vistalink.locator.VistaLinkConnectorConfig">
|
|---|
| 18 | <property name="host" value="66.206.177.84"/>
|
|---|
| 19 | <property name="port" value="9310"/>
|
|---|
| 20 | <property name="name" value="WORLDVISTA DEMO CLINIC"/>
|
|---|
| 21 | <property name="primaryStation" value="500"/>
|
|---|
| 22 | <property name="accessCode" value="EDISUSER1"/>
|
|---|
| 23 | <property name="verifyCode" value="VISTAIS#1"/>
|
|---|
| 24 | </bean>
|
|---|
| 25 | </util:set>
|
|---|
| 26 |
|
|---|
| 27 | </beans>
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.