1
2
3
4
5
6
7
8
9
10
11 package org.mule.test.integration.client;
12
13 public class MuleClientRemotingHttpTestCase extends AbstractClientRemotingTestCase
14 {
15
16 @Override
17 protected String getConfigResources()
18 {
19 return "org/mule/test/integration/client/client-remote-dispatcher-common-config.xml, " +
20 "org/mule/test/integration/client/test-client-mule-config-remote-http.xml";
21 }
22
23 @Override
24 public String getRemoteEndpointUri()
25 {
26 return "http://localhost:60505?responseTimeout=30000";
27 }
28 }