-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPipeServer.xml
More file actions
60 lines (54 loc) · 1.44 KB
/
PipeServer.xml
File metadata and controls
60 lines (54 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0"?>
<quickserver>
<name>PipeServer v 1.0</name>
<port>4444</port>
<bind-address>0.0.0.0</bind-address>
<client-event-handler>
pipeserver.CommandHandler
</client-event-handler>
<client-binary-handler>
pipeserver.CommandHandler
</client-binary-handler>
<client-authentication-handler>
pipeserver.Authenticator
</client-authentication-handler>
<client-data>
pipeserver.Data
</client-data>
<default-data-mode>
<data-type-in>Binary</data-type-in>
<data-type-out>Binary</data-type-out>
</default-data-mode>
<max-connection>10</max-connection>
<console-logging-level>INFO</console-logging-level>
<console-logging-formatter>
org.quickserver.util.logging.SimpleConsoleFormatter
</console-logging-formatter>
<communication-logging>
<enable>true</enable>
</communication-logging>
<application-configuration>
<property>
<property-name>REMOTE_HOST</property-name>
<property-value>127.0.0.1</property-value>
</property>
<property>
<property-name>REMOTE_PORT</property-name>
<property-value>4123</property-value>
</property>
</application-configuration>
<!-- Config QSAdminServer -->
<qsadmin-server>
<port>4445</port>
<server-banner>
QSAdminServer Started on port : 4445
</server-banner>
<command-shell>
<enable>true</enable>
</command-shell>
<communication-logging>
<enable>false</enable>
</communication-logging>
</qsadmin-server>
<!-- Config QSAdminServer -->
</quickserver>