Changeset 3803


Ignore:
Timestamp:
Oct 3, 2007, 4:33:02 PM (16 years ago)
Author:
Martin Svensson
Message:

References #492 Updated Axis2 from 1.1 to 1.3

Location:
branches/webservices
Files:
11 added
9 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/webservices/config/dist/axis2.xml

    r3006 r3803  
    223223        <phase name="Transport">
    224224            <handler name="RequestURIBasedDispatcher"
    225                      class="org.apache.axis2.engine.RequestURIBasedDispatcher">
     225                     class="org.apache.axis2.dispatchers.RequestURIBasedDispatcher">
    226226                <order phase="Transport"/>
    227227            </handler>
    228228            <handler name="SOAPActionBasedDispatcher"
    229                      class="org.apache.axis2.engine.SOAPActionBasedDispatcher">
     229                     class="org.apache.axis2.dispatchers.SOAPActionBasedDispatcher">
    230230                <order phase="Transport"/>
    231231            </handler>
     
    235235        <phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase">
    236236            <handler name="AddressingBasedDispatcher"
    237                      class="org.apache.axis2.engine.AddressingBasedDispatcher">
     237                     class="org.apache.axis2.dispatchers.AddressingBasedDispatcher">
    238238                <order phase="Dispatch"/>
    239239            </handler>
    240240
    241241            <handler name="SOAPMessageBodyBasedDispatcher"
    242                      class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher">
    243                 <order phase="Dispatch"/>
    244             </handler>
    245             <handler name="InstanceDispatcher"
    246                      class="org.apache.axis2.engine.InstanceDispatcher">
    247                 <order phase="Dispatch"/>
    248             </handler>
     242                     class="org.apache.axis2.dispatchers.SOAPMessageBodyBasedDispatcher">
     243                <order phase="Dispatch"/>
     244            </handler>
     245<!--           Deprecated-->
     246<!--            <handler name="InstanceDispatcher"-->
     247<!--                     class="org.apache.axis2.engine.InstanceDispatcher">-->
     248<!--                <order phase="Dispatch"/>-->
     249<!--            </handler>-->
    249250        </phase>
    250251        <!--  System pre defined phases       -->
     
    267268        <phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase">
    268269            <handler name="RequestURIBasedDispatcher"
    269                      class="org.apache.axis2.engine.RequestURIBasedDispatcher">
     270                     class="org.apache.axis2.dispatchers.RequestURIBasedDispatcher">
    270271                <order phase="Dispatch"/>
    271272            </handler>
    272273
    273274            <handler name="SOAPActionBasedDispatcher"
    274                      class="org.apache.axis2.engine.SOAPActionBasedDispatcher">
     275                     class="org.apache.axis2.dispatchers.SOAPActionBasedDispatcher">
    275276                <order phase="Dispatch"/>
    276277            </handler>
    277278
    278279            <handler name="AddressingBasedDispatcher"
    279                      class="org.apache.axis2.engine.AddressingBasedDispatcher">
     280                     class="org.apache.axis2.dispatchers.AddressingBasedDispatcher">
    280281                <order phase="Dispatch"/>
    281282            </handler>
    282283
    283284            <handler name="SOAPMessageBodyBasedDispatcher"
    284                      class="org.apache.axis2.engine.SOAPMessageBodyBasedDispatcher">
    285                 <order phase="Dispatch"/>
    286             </handler>
    287             <handler name="InstanceDispatcher"
    288                      class="org.apache.axis2.engine.InstanceDispatcher">
    289                 <order phase="PostDispatch"/>
    290             </handler>
     285                     class="org.apache.axis2.dispatchers.SOAPMessageBodyBasedDispatcher">
     286                <order phase="Dispatch"/>
     287            </handler>
     288<!--            Deprecated-->
     289<!--            <handler name="InstanceDispatcher"-->
     290<!--                     class="org.apache.axis2.engine.InstanceDispatcher">-->
     291<!--                <order phase="PostDispatch"/>-->
     292<!--            </handler>-->
    291293        </phase>
    292294        <!--      user can add his own phases to this area  -->
  • branches/webservices/src/test/set_classpath.sh

    r3724 r3803  
    8585
    8686# Axis
    87 CP=$CP:$WS_LIB/axis2-kernel-1.1.jar
    88 CP=$CP:$WS_LIB/axis2-adb-1.1.jar
    89 CP=$CP:$WS_LIB/axiom-api-1.2.jar
    90 CP=$CP:$WS_LIB/axiom-dom-1.2.jar
    91 CP=$CP:$WS_LIB/axiom-impl-1.2.jar
     87CP=$CP:$WS_LIB/axis2-kernel-1.3.jar
     88CP=$CP:$WS_LIB/axis2-adb-1.3.jar
     89CP=$CP:$WS_LIB/axiom-api-1.2.5.jar
     90CP=$CP:$WS_LIB/axiom-dom-1.2.5.jar
     91CP=$CP:$WS_LIB/axiom-impl-1.2.5.jar
    9292CP=$CP:$WS_LIB/stax-api-1.0.1.jar
    93 CP=$CP:$WS_LIB/wstx-asl-3.0.1.jar
    94 CP=$CP:$WS_LIB/wsdl4j-1.6.1.jar
    95 CP=$CP:$WS_LIB/XmlSchema-1.2.jar
     93CP=$CP:$WS_LIB/wstx-asl-3.2.1.jar
     94CP=$CP:$WS_LIB/wsdl4j-1.6.2.jar
     95CP=$CP:$WS_LIB/XmlSchema-1.3.2.jar
    9696CP=$CP:$WS_LIB/mail-1.4.jar
    9797CP=$CP:$WS_LIB/commons-httpclient-3.0.1.jar
    9898CP=$CP:$WS_LIB/commons-codec-1.3.jar
    9999CP=$CP:$WS_LIB/activation-1.1.jar
     100CP=$CP:$WS_LIB/backport-util-concurrent-2.2.jar
    100101
    101102# Affymetrix Fusion SDK
  • branches/webservices/src/webservices/client/java/net/sf/basedb/ws/client/AbstractRPCClient.java

    r3006 r3803  
    7171  protected QName getOperation(String operation)
    7272  {
    73     return new QName("http://server.ws.basedb.sf.net/xsd", operation);
     73    return new QName("http://server.ws.basedb.sf.net", operation);
    7474  }
    7575 
Note: See TracChangeset for help on using the changeset viewer.