Changeset 3803
- Timestamp:
- Oct 3, 2007, 4:33:02 PM (16 years ago)
- Location:
- branches/webservices
- Files:
-
- 11 added
- 9 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/webservices/config/dist/axis2.xml
r3006 r3803 223 223 <phase name="Transport"> 224 224 <handler name="RequestURIBasedDispatcher" 225 class="org.apache.axis2. engine.RequestURIBasedDispatcher">225 class="org.apache.axis2.dispatchers.RequestURIBasedDispatcher"> 226 226 <order phase="Transport"/> 227 227 </handler> 228 228 <handler name="SOAPActionBasedDispatcher" 229 class="org.apache.axis2. engine.SOAPActionBasedDispatcher">229 class="org.apache.axis2.dispatchers.SOAPActionBasedDispatcher"> 230 230 <order phase="Transport"/> 231 231 </handler> … … 235 235 <phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase"> 236 236 <handler name="AddressingBasedDispatcher" 237 class="org.apache.axis2. engine.AddressingBasedDispatcher">237 class="org.apache.axis2.dispatchers.AddressingBasedDispatcher"> 238 238 <order phase="Dispatch"/> 239 239 </handler> 240 240 241 241 <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>--> 249 250 </phase> 250 251 <!-- System pre defined phases --> … … 267 268 <phase name="Dispatch" class="org.apache.axis2.engine.DispatchPhase"> 268 269 <handler name="RequestURIBasedDispatcher" 269 class="org.apache.axis2. engine.RequestURIBasedDispatcher">270 class="org.apache.axis2.dispatchers.RequestURIBasedDispatcher"> 270 271 <order phase="Dispatch"/> 271 272 </handler> 272 273 273 274 <handler name="SOAPActionBasedDispatcher" 274 class="org.apache.axis2. engine.SOAPActionBasedDispatcher">275 class="org.apache.axis2.dispatchers.SOAPActionBasedDispatcher"> 275 276 <order phase="Dispatch"/> 276 277 </handler> 277 278 278 279 <handler name="AddressingBasedDispatcher" 279 class="org.apache.axis2. engine.AddressingBasedDispatcher">280 class="org.apache.axis2.dispatchers.AddressingBasedDispatcher"> 280 281 <order phase="Dispatch"/> 281 282 </handler> 282 283 283 284 <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>--> 291 293 </phase> 292 294 <!-- user can add his own phases to this area --> -
branches/webservices/src/test/set_classpath.sh
r3724 r3803 85 85 86 86 # Axis 87 CP=$CP:$WS_LIB/axis2-kernel-1. 1.jar88 CP=$CP:$WS_LIB/axis2-adb-1. 1.jar89 CP=$CP:$WS_LIB/axiom-api-1.2. jar90 CP=$CP:$WS_LIB/axiom-dom-1.2. jar91 CP=$CP:$WS_LIB/axiom-impl-1.2. jar87 CP=$CP:$WS_LIB/axis2-kernel-1.3.jar 88 CP=$CP:$WS_LIB/axis2-adb-1.3.jar 89 CP=$CP:$WS_LIB/axiom-api-1.2.5.jar 90 CP=$CP:$WS_LIB/axiom-dom-1.2.5.jar 91 CP=$CP:$WS_LIB/axiom-impl-1.2.5.jar 92 92 CP=$CP:$WS_LIB/stax-api-1.0.1.jar 93 CP=$CP:$WS_LIB/wstx-asl-3. 0.1.jar94 CP=$CP:$WS_LIB/wsdl4j-1.6. 1.jar95 CP=$CP:$WS_LIB/XmlSchema-1. 2.jar93 CP=$CP:$WS_LIB/wstx-asl-3.2.1.jar 94 CP=$CP:$WS_LIB/wsdl4j-1.6.2.jar 95 CP=$CP:$WS_LIB/XmlSchema-1.3.2.jar 96 96 CP=$CP:$WS_LIB/mail-1.4.jar 97 97 CP=$CP:$WS_LIB/commons-httpclient-3.0.1.jar 98 98 CP=$CP:$WS_LIB/commons-codec-1.3.jar 99 99 CP=$CP:$WS_LIB/activation-1.1.jar 100 CP=$CP:$WS_LIB/backport-util-concurrent-2.2.jar 100 101 101 102 # Affymetrix Fusion SDK -
branches/webservices/src/webservices/client/java/net/sf/basedb/ws/client/AbstractRPCClient.java
r3006 r3803 71 71 protected QName getOperation(String operation) 72 72 { 73 return new QName("http://server.ws.basedb.sf.net /xsd", operation);73 return new QName("http://server.ws.basedb.sf.net", operation); 74 74 } 75 75
Note: See TracChangeset
for help on using the changeset viewer.