Project

General

Profile

Download (24.8 KB) Statistics
| Branch: | Tag: | Revision:
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:context="http://www.springframework.org/schema/context"
4
  xmlns:tx="http://www.springframework.org/schema/tx"
5
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
6
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
7
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
8

    
9

    
10
  <bean id="agentService" lazy-init="true"
11
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
12
    <property name="serviceUrl">
13
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/agent.service
14
      </value>
15
    </property>
16
    <property name="serviceInterface">
17
      <value>eu.etaxonomy.cdm.api.service.IAgentService</value>
18
    </property>
19
    <property name="httpInvokerRequestExecutor">
20
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
21
        <property name="readTimeout" value="0" />
22
      </bean>
23
    </property>
24
  </bean>
25

    
26
  <bean id="annotationService" lazy-init="true"
27
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
28
    <property name="serviceUrl">
29
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/annotation.service
30
      </value>
31
    </property>
32
    <property name="serviceInterface">
33
      <value>eu.etaxonomy.cdm.api.service.IAnnotationService</value>
34
    </property>
35
    <property name="httpInvokerRequestExecutor">
36
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
37
        <property name="readTimeout" value="0" />
38
      </bean>
39
    </property>
40
  </bean>
41

    
42
  <bean id="auditeventService" lazy-init="true"
43
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
44
    <property name="serviceUrl">
45
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/auditevent.service
46
      </value>
47
    </property>
48
    <property name="serviceInterface">
49
      <value>eu.etaxonomy.cdm.api.service.IAuditEventService</value>
50
    </property>
51
    <property name="httpInvokerRequestExecutor">
52
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
53
        <property name="readTimeout" value="0" />
54
      </bean>
55
    </property>
56
  </bean>
57

    
58
  <bean id="classificationService" lazy-init="true"
59
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
60
    <property name="serviceUrl">
61
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/classification.service
62
      </value>
63
    </property>
64
    <property name="serviceInterface">
65
      <value>eu.etaxonomy.cdm.api.service.IClassificationService</value>
66
    </property>
67
    <property name="httpInvokerRequestExecutor">
68
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
69
        <property name="readTimeout" value="0" />
70
      </bean>
71
    </property>
72
  </bean>
73

    
74
  <bean id="collectionService" lazy-init="true"
75
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
76
    <property name="serviceUrl">
77
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/collection.service
78
      </value>
79
    </property>
80
    <property name="serviceInterface">
81
      <value>eu.etaxonomy.cdm.api.service.ICollectionService</value>
82
    </property>
83
    <property name="httpInvokerRequestExecutor">
84
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
85
        <property name="readTimeout" value="0" />
86
      </bean>
87
    </property>
88
  </bean>
89

    
90
  <bean id="commonService" lazy-init="true"
91
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
92
    <property name="serviceUrl">
93
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/common.service
94
      </value>
95
    </property>
96
    <property name="serviceInterface">
97
      <value>eu.etaxonomy.cdm.api.service.ICommonService</value>
98
    </property>
99
    <property name="httpInvokerRequestExecutor">
100
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
101
        <property name="readTimeout" value="0" />
102
      </bean>
103
    </property>
104
  </bean>
105

    
106
  <bean id="descriptionService" lazy-init="true"
107
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
108
    <property name="serviceUrl">
109
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/description.service
110
      </value>
111
    </property>
112
    <property name="serviceInterface">
113
      <value>eu.etaxonomy.cdm.api.service.IDescriptionService</value>
114
    </property>
115
    <property name="httpInvokerRequestExecutor">
116
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
117
        <property name="readTimeout" value="0" />
118
      </bean>
119
    </property>
120
  </bean>
121

    
122
  <bean id="editGeoService" lazy-init="true"
123
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
124
    <property name="serviceUrl">
125
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/editgeo.service
126
      </value>
127
    </property>
128
    <property name="serviceInterface">
129
      <value>eu.etaxonomy.cdm.ext.geo.IEditGeoService</value>
130
    </property>
131
    <property name="httpInvokerRequestExecutor">
132
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
133
        <property name="readTimeout" value="0" />
134
      </bean>
135
    </property>
136
  </bean>
137

    
138
  <bean id="featureNodeService" lazy-init="true"
139
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
140
    <property name="serviceUrl">
141
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/featurenode.service
142
      </value>
143
    </property>
144
    <property name="serviceInterface">
145
      <value>eu.etaxonomy.cdm.api.service.IFeatureNodeService</value>
146
    </property>
147
    <property name="httpInvokerRequestExecutor">
148
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
149
        <property name="readTimeout" value="0" />
150
      </bean>
151
    </property>
152
  </bean>
153

    
154
  <bean id="featureTreeService" lazy-init="true"
155
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
156
    <property name="serviceUrl">
157
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/featuretree.service
158
      </value>
159
    </property>
160
    <property name="serviceInterface">
161
      <value>eu.etaxonomy.cdm.api.service.IFeatureTreeService</value>
162
    </property>
163
    <property name="httpInvokerRequestExecutor">
164
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
165
        <property name="readTimeout" value="0" />
166
      </bean>
167
    </property>
168
  </bean>
169

    
170
  <bean id="groupService" lazy-init="true"
171
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
172
    <property name="serviceUrl">
173
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/group.service
174
      </value>
175
    </property>
176
    <property name="serviceInterface">
177
      <value>eu.etaxonomy.cdm.api.service.IGroupService</value>
178
    </property>
179
    <property name="httpInvokerRequestExecutor">
180
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
181
        <property name="readTimeout" value="0" />
182
      </bean>
183
    </property>
184
  </bean>
185

    
186
  <bean id="identificationKeyService" lazy-init="true"
187
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
188
    <property name="serviceUrl">
189
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/identificationkey.service
190
      </value>
191
    </property>
192
    <property name="serviceInterface">
193
      <value>eu.etaxonomy.cdm.api.service.IIdentificationKeyService
194
      </value>
195
    </property>
196
    <property name="httpInvokerRequestExecutor">
197
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
198
        <property name="readTimeout" value="0" />
199
      </bean>
200
    </property>
201
  </bean>
202

    
203
  <bean id="locationService" lazy-init="true"
204
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
205
    <property name="serviceUrl">
206
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/location.service
207
      </value>
208
    </property>
209
    <property name="serviceInterface">
210
      <value>eu.etaxonomy.cdm.api.service.ILocationService</value>
211
    </property>
212
    <property name="httpInvokerRequestExecutor">
213
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
214
        <property name="readTimeout" value="0" />
215
      </bean>
216
    </property>
217
  </bean>
218

    
219
  <bean id="markerService" lazy-init="true"
220
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
221
    <property name="serviceUrl">
222
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/marker.service
223
      </value>
224
    </property>
225
    <property name="serviceInterface">
226
      <value>eu.etaxonomy.cdm.api.service.IMarkerService</value>
227
    </property>
228
    <property name="httpInvokerRequestExecutor">
229
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
230
        <property name="readTimeout" value="0" />
231
      </bean>
232
    </property>
233
  </bean>
234

    
235
  <bean id="mediaService" lazy-init="true"
236
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
237
    <property name="serviceUrl">
238
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/media.service
239
      </value>
240
    </property>
241
    <property name="serviceInterface">
242
      <value>eu.etaxonomy.cdm.api.service.IMediaService</value>
243
    </property>
244
    <property name="httpInvokerRequestExecutor">
245
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
246
        <property name="readTimeout" value="0" />
247
      </bean>
248
    </property>
249
  </bean>
250

    
251
  <bean id="nameService" lazy-init="true"
252
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
253
    <property name="serviceUrl">
254
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/name.service
255
      </value>
256
    </property>
257
    <property name="serviceInterface">
258
      <value>eu.etaxonomy.cdm.api.service.INameService</value>
259
    </property>
260
    <property name="httpInvokerRequestExecutor">
261
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
262
        <property name="readTimeout" value="0" />
263
      </bean>
264
    </property>
265
  </bean>
266

    
267
  <bean id="occurrenceService" lazy-init="true"
268
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
269
    <property name="serviceUrl">
270
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/occurrence.service
271
      </value>
272
    </property>
273
    <property name="serviceInterface">
274
      <value>eu.etaxonomy.cdm.api.service.IOccurrenceService</value>
275
    </property>
276
    <property name="httpInvokerRequestExecutor">
277
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
278
        <property name="readTimeout" value="0" />
279
      </bean>
280
    </property>
281
  </bean>
282

    
283
  <bean id="polytomousKeyNodeService" lazy-init="true"
284
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
285
    <property name="serviceUrl">
286
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/polytomouskeynode.service
287
      </value>
288
    </property>
289
    <property name="serviceInterface">
290
      <value>eu.etaxonomy.cdm.api.service.IPolytomousKeyNodeService
291
      </value>
292
    </property>
293
    <property name="httpInvokerRequestExecutor">
294
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
295
        <property name="readTimeout" value="0" />
296
      </bean>
297
    </property>
298
  </bean>
299

    
300
  <bean id="polytomousKeyService" lazy-init="true"
301
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
302
    <property name="serviceUrl">
303
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/polytomouskey.service
304
      </value>
305
    </property>
306
    <property name="serviceInterface">
307
      <value>eu.etaxonomy.cdm.api.service.IPolytomousKeyService</value>
308
    </property>
309
    <property name="httpInvokerRequestExecutor">
310
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
311
        <property name="readTimeout" value="0" />
312
      </bean>
313
    </property>
314
  </bean>
315

    
316
  <bean id="referenceService" lazy-init="true"
317
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
318
    <property name="serviceUrl">
319
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/reference.service
320
      </value>
321
    </property>
322
    <property name="serviceInterface">
323
      <value>eu.etaxonomy.cdm.api.service.IReferenceService</value>
324
    </property>
325
    <property name="httpInvokerRequestExecutor">
326
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
327
        <property name="readTimeout" value="0" />
328
      </bean>
329
    </property>
330
  </bean>
331

    
332
  <bean id="taxonNodeService" lazy-init="true"
333
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
334
    <property name="serviceUrl">
335
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/taxonnode.service
336
      </value>
337
    </property>
338
    <property name="serviceInterface">
339
      <value>eu.etaxonomy.cdm.api.service.ITaxonNodeService</value>
340
    </property>
341
    <property name="httpInvokerRequestExecutor">
342
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
343
        <property name="readTimeout" value="0" />
344
      </bean>
345
    </property>
346
  </bean>
347

    
348
  <bean id="taxonService" lazy-init="true"
349
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
350
    <property name="serviceUrl">
351
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/taxon.service
352
      </value>
353
    </property>
354
    <property name="serviceInterface">
355
      <value>eu.etaxonomy.cdm.api.service.ITaxonService</value>
356
    </property>
357
    <property name="httpInvokerRequestExecutor">
358
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
359
        <property name="readTimeout" value="0" />
360
      </bean>
361
    </property>
362
  </bean>
363

    
364
  <bean id="termService" lazy-init="true"
365
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
366
    <property name="serviceUrl">
367
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/term.service
368
      </value>
369
    </property>
370
    <property name="serviceInterface">
371
      <value>eu.etaxonomy.cdm.api.service.ITermService</value>
372
    </property>
373
    <property name="httpInvokerRequestExecutor">
374
      <bean class="eu.etaxonomy.taxeditor.service.TermServiceRequestExecutor">
375
        <property name="readTimeout" value="0" />
376
      </bean>
377
    </property>
378
  </bean>
379

    
380
  <bean id="userService" lazy-init="true"
381
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
382
    <property name="serviceUrl">
383
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting-public/user.service
384
      </value>
385
    </property>
386
    <property name="serviceInterface">
387
      <value>eu.etaxonomy.cdm.api.service.IUserService</value>
388
    </property>
389
    <property name="httpInvokerRequestExecutor">
390
      <bean
391
        class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
392
        <property name="readTimeout" value="0" />
393
      </bean>
394
    </property>
395
  </bean>
396

    
397
  <bean id="vocabularyService" lazy-init="true"
398
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
399
    <property name="serviceUrl">
400
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/vocabulary.service
401
      </value>
402
    </property>
403
    <property name="serviceInterface">
404
      <value>eu.etaxonomy.cdm.api.service.IVocabularyService</value>
405
    </property>
406
    <property name="httpInvokerRequestExecutor">
407
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
408
        <property name="readTimeout" value="0" />
409
      </bean>
410
    </property>
411
  </bean>
412

    
413
  <bean id="workingSetService" lazy-init="true"
414
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
415
    <property name="serviceUrl">
416
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/workingset.service
417
      </value>
418
    </property>
419
    <property name="serviceInterface">
420
      <value>eu.etaxonomy.cdm.api.service.IWorkingSetService</value>
421
    </property>
422
    <property name="httpInvokerRequestExecutor">
423
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
424
        <property name="readTimeout" value="0" />
425
      </bean>
426
    </property>
427
  </bean>
428

    
429
  <bean id="grantedAuthorityService" lazy-init="true"
430
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
431
    <property name="serviceUrl">
432
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/grantedauthority.service
433
      </value>
434
    </property>
435
    <property name="serviceInterface">
436
      <value>eu.etaxonomy.cdm.api.service.IGrantedAuthorityService
437
      </value>
438
    </property>
439
    <property name="httpInvokerRequestExecutor">
440
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
441
        <property name="readTimeout" value="0" />
442
      </bean>
443
    </property>
444
  </bean>
445

    
446
  <bean id="databaseService" lazy-init="true"
447
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
448
    <property name="serviceUrl">
449
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/database.service
450
      </value>
451
    </property>
452
    <property name="serviceInterface">
453
      <value>eu.etaxonomy.cdm.api.service.IDatabaseService</value>
454
    </property>
455
    <property name="httpInvokerRequestExecutor">
456
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
457
        <property name="readTimeout" value="0" />
458
      </bean>
459
    </property>
460
  </bean>
461

    
462
  <bean id="lsidAuthorityService" lazy-init="true"
463
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
464
    <property name="serviceUrl">
465
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/lsidauthoruty.service
466
      </value>
467
    </property>
468
    <property name="serviceInterface">
469
      <value>eu.etaxonomy.cdm.api.service.lsid.LSIDAuthorityService
470
      </value>
471
    </property>
472
    <property name="httpInvokerRequestExecutor">
473
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
474
        <property name="readTimeout" value="0" />
475
      </bean>
476
    </property>
477
  </bean>
478

    
479
  <bean id="lsidMetadataService" lazy-init="true"
480
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
481
    <property name="serviceUrl">
482
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/lsidmetadata.service
483
      </value>
484
    </property>
485
    <property name="serviceInterface">
486
      <value>eu.etaxonomy.cdm.api.service.lsid.LSIDMetadataService
487
      </value>
488
    </property>
489
    <property name="httpInvokerRequestExecutor">
490
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
491
        <property name="readTimeout" value="0" />
492
      </bean>
493
    </property>
494
  </bean>
495

    
496
  <bean id="lsiDataService" lazy-init="true"
497
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
498
    <property name="serviceUrl">
499
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/lsiddata.service
500
      </value>
501
    </property>
502
    <property name="serviceInterface">
503
      <value>eu.etaxonomy.cdm.api.service.lsid.LSIDDataService</value>
504
    </property>
505
    <property name="httpInvokerRequestExecutor">
506
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
507
        <property name="readTimeout" value="0" />
508
      </bean>
509
    </property>
510
  </bean>
511

    
512

    
513

    
514
  <bean id="primerService" lazy-init="true"
515
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
516
    <property name="serviceUrl">
517
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/primer.service
518
      </value>
519
    </property>
520
    <property name="serviceInterface">
521
      <value>eu.etaxonomy.cdm.api.service.molecular.IPrimerService
522
      </value>
523
    </property>
524
    <property name="httpInvokerRequestExecutor">
525
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
526
        <property name="readTimeout" value="0" />
527
      </bean>
528
    </property>
529
  </bean>
530

    
531
  <bean id="amplificationService" lazy-init="true"
532
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
533
    <property name="serviceUrl">
534
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/amplification.service
535
      </value>
536
    </property>
537
    <property name="serviceInterface">
538
      <value>eu.etaxonomy.cdm.api.service.molecular.IAmplificationService
539
      </value>
540
    </property>
541
    <property name="httpInvokerRequestExecutor">
542
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
543
        <property name="readTimeout" value="0" />
544
      </bean>
545
    </property>
546
  </bean>
547

    
548
  <bean id="sequenceService" lazy-init="true"
549
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
550
    <property name="serviceUrl">
551
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/sequence.service
552
      </value>
553
    </property>
554
    <property name="serviceInterface">
555
      <value>eu.etaxonomy.cdm.api.service.molecular.ISequenceService
556
      </value>
557
    </property>
558
    <property name="httpInvokerRequestExecutor">
559
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
560
        <property name="readTimeout" value="0" />
561
      </bean>
562
    </property>
563
  </bean>
564

    
565
  <bean id="entityValidationService" lazy-init="true"
566
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
567
    <property name="serviceUrl">
568
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/entityvalidation.service
569
      </value>
570
    </property>
571
    <property name="serviceInterface">
572
      <value>eu.etaxonomy.cdm.api.service.IEntityValidationService
573
      </value>
574
    </property>
575
    <property name="httpInvokerRequestExecutor">
576
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
577
        <property name="readTimeout" value="0" />
578
      </bean>
579
    </property>
580
  </bean>
581

    
582
  <bean id="entityConstraintViolationService" lazy-init="true"
583
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
584
    <property name="serviceUrl">
585
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/entityconstraintviolation.service
586
      </value>
587
    </property>
588
    <property name="serviceInterface">
589
      <value>eu.etaxonomy.cdm.api.service.IEntityConstraintViolationService
590
      </value>
591
    </property>
592
    <property name="httpInvokerRequestExecutor">
593
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
594
        <property name="readTimeout" value="0" />
595
      </bean>
596
    </property>
597
  </bean>
598
  
599
  <bean id="ioService" lazy-init="true"
600
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
601
    <property name="serviceUrl">
602
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/io.service
603
      </value>
604
    </property>
605
    <property name="serviceInterface">
606
      <value>eu.etaxonomy.cdm.io.service.IIOService
607
      </value>
608
    </property>
609
    <property name="httpInvokerRequestExecutor">
610
      <bean class="eu.etaxonomy.taxeditor.service.CdmAuthenticatedHttpInvokerRequestExecutor">
611
        <property name="readTimeout" value="0" />
612
      </bean>
613
    </property>
614
  </bean>
615

    
616
  <bean id="testService" lazy-init="true"
617
    class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
618
    <property name="serviceUrl">
619
      <value>http://${remoteServer}:${remotePort}/${remoteContext}/remoting/test.service
620
      </value>
621
    </property>
622
    <property name="serviceInterface">
623
      <value>eu.etaxonomy.cdm.api.service.ITestService
624
      </value>
625
    </property>
626
    <property name="httpInvokerRequestExecutor">
627
      <bean class="eu.etaxonomy.taxeditor.service.CdmServiceRequestExecutor">
628
        <property name="readTimeout" value="0" />
629
      </bean>
630
    </property>
631

    
632
  </bean>
633

    
634

    
635

    
636
</beans>
(2-2/4)