Wt's wt_config.xml

Anyone familiar enough with that file to be able to help me out? I need to write it up for a Wt application I want to write for a CS course final project.

This is what I have right now:
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<server>

    <application-settings location="*">

        <properties>
            <property name="google_api_key">key goes here</property>
        </properties>

    	<user-agents type="bot">

      	    <user-agent>.*Googlebot.*</user-agent>

            <user-agent>.*msnbot.*</user-agent>

            <user-agent>.*Slurp.*</user-agent>

            <user-agent>.*Crawler.*</user-agent>

            <user-agent>.*Bot.*</user-agent>

            <user-agent>.*ia_archiver.*</user-agent>

            <user-agent>.*Twiceler.*</user-agent>

            <user-agent>.*Yandex.*</user-agent>

            <user-agent>.*Nutch.*</user-agent>

            <user-agent>.*MJ12bot.*</user-agent>

            <user-agent>.*Baiduspider.*</user-agent>

            <user-agent>.*Ezooms.*</user-agent>

            <user-agent>.*Sogou web spider.*</user-agent>

            <user-agent>.*AhrefsBot.*</user-agent>

        </user-agents>



        <web-sockets>true</web-sockets>

	<bootstrap-method>

	  <for path="*">progressive</for>

	  <for path="/forms/line_text-editor">default</for>

	  <for path="/trees-tables/mvc-table-views">default</for>

	  <for path="/trees-tables/mvc-tree-views">default</for>

	  <for path="/trees-tables/mvc-item-models">default</for>

	  <for path="/layout/layout-managers">default</for>

	  <for path="/graphics-charts/*">default</for>

	</bootstrap-method>



	<!-- <log-config>debug:wthttp/async</log-config> -->

	<UA-Compatible>IE8=IE7</UA-Compatible>

    </application-settings>

    <session-management>

      <tracking>automatic</tracking>
      <timeout>3601</timeout>

    </session-management>

</server>


I also asked someone on Wt's team via email, but I thought I'd ask here as well just in case I could find someone who can help on here.

I want to specify user-agents (preferably Ajax-enabled user-agent (I don't know what values to put for them, though, so I'll need help on that)), and set an automatic tracking option. I also want to enable WebSockets and Ajax-puzzle support in general application settings.

Also, I'm using Windows, but for an alternative to the built-in httpd (which apparently only supports one session at a time), I want to use FastCGI instead of IIS/ISAPI. I've downloaded Apache and want to know of a way to use its FastCGI protocol for wtfcgi (the connector).
Last edited on
Topic archived. No new replies allowed.