Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: e3da89c649265a005ef62d39f6522b6f47e37047 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<plugin>

     <extension-point
      id="wsfinder"
      name="%XP_WSFINDER"/>

   <!-- The following extension point will be removed. -->
   <extension-point
      id="webServiceStartServerType"
      name="%XP_WEB_SERVICE_START_SERVER_TYPE"/>

   <extension-point
      id="serverDefaulter"
      name="%XP_SERVER_DEFAULTER"/>

   
   <extension
         point="org.eclipse.jst.ws.consumption.webServiceStartServerType">
      <webServiceStartServerType
            factoryId="org.eclipse.jst.server.tomcat.32"
            class="org.eclipse.jst.ws.internal.consumption.command.common.StartTomcatServer"
            id="SERVER_ID_TOMCAT32_LOCAL">
      </webServiceStartServerType>
      <webServiceStartServerType
            factoryId="org.eclipse.jst.server.tomcat.40"
            class="org.eclipse.jst.ws.internal.consumption.command.common.StartTomcatServer"
            id="SERVER_ID_TOMCAT40_LOCAL">
      </webServiceStartServerType>
      <webServiceStartServerType
            factoryId="org.eclipse.jst.server.tomcat.41"
            class="org.eclipse.jst.ws.internal.consumption.command.common.StartTomcatServer"
            id="SERVER_ID_TOMCAT41_LOCAL">
      </webServiceStartServerType>
      <webServiceStartServerType
            factoryId="org.eclipse.jst.server.tomcat.50"
            class="org.eclipse.jst.ws.internal.consumption.command.common.StartTomcatServer"
            id="SERVER_ID_TOMCAT50_LOCAL">
      </webServiceStartServerType>
      <webServiceStartServerType
            factoryId="org.eclipse.jst.server.geronimo.10"
            class="org.eclipse.jst.ws.internal.consumption.command.common.StartTomcatServer"
            id="SERVER_ID_GERONIMO10_LOCAL">
       </webServiceStartServerType> 
   </extension>
   

</plugin>

Back to the top