Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/no-offer.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/no-offer.xml?view=diff&rev=533412&r1=533411&r2=533412 ============================================================================== --- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/no-offer.xml (original) +++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/no-offer.xml Sat Apr 28 11:53:53 2007 @@ -1,56 +1,42 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. --> <beans xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" - xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" - xmlns:http="http://cxf.apache.org/transports/http/configuration" - xsi:schemaLocation=" -http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schema/transports/http.xsd + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" + xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" + xmlns:http="http://cxf.apache.org/transports/http/configuration" + xsi:schemaLocation=" +http://cxf.apache.org/ws/rm/manager http://cxf.apache.org/ws/rm/manager.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - - <bean id="org.apache.cxf.ws.rm.RMManager" class="org.apache.cxf.ws.rm.RMManager"> - <property name="bus" ref="cxf"/> - <property name="destinationPolicy"> - <value> - <wsrm-mgmt:destinationPolicy> - <wsrm-mgmt:acksPolicy intraMessageThreshold="0"/> - </wsrm-mgmt:destinationPolicy> - </value> - </property> - <property name="sourcePolicy"> - <value> - <wsrm-mgmt:sourcePolicy includeOffer="false"/> - </value> - </property> - - <property name="RMAssertion"> - <value> - <wsrm-policy:RMAssertion> - <wsrm-policy:BaseRetransmissionInterval Milliseconds="60000"/> - <wsrm-policy:AcknowledgementInterval Milliseconds="60000"/> - </wsrm-policy:RMAssertion> - </value> - </property> - </bean> - - <import resource="rminterceptors.xml"/> + + <import resource="rminterceptors.xml" /> + + <wsrm-mgmt:rmManager id="org.apache.cxf.ws.rm.RMManager"> + <wsrm-mgmt:destinationPolicy> + <wsrm-mgmt:acksPolicy intraMessageThreshold="0" /> + </wsrm-mgmt:destinationPolicy> + <wsrm-mgmt:sourcePolicy includeOffer="false"/> + <wsrm-policy:RMAssertion> + <wsrm-policy:BaseRetransmissionInterval Milliseconds="60000" /> + <wsrm-policy:AcknowledgementInterval Milliseconds="60000" /> + </wsrm-policy:RMAssertion> + </wsrm-mgmt:rmManager> </beans>
Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength1.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength1.xml?view=diff&rev=533412&r1=533411&r2=533412 ============================================================================== --- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength1.xml (original) +++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength1.xml Sat Apr 28 11:53:53 2007 @@ -22,18 +22,15 @@ xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" xsi:schemaLocation=" +http://cxf.apache.org/ws/rm/manager http://cxf.apache.org/ws/rm/manager.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - - <import resource="rminterceptors.xml"/> - - <bean id="org.apache.cxf.ws.rm.RMManager" class="org.apache.cxf.ws.rm.RMManager"> - <property name="bus" ref="cxf"/> - <property name="sourcePolicy"> - <value> - <wsrm-mgmt:sourcePolicy> - <wsrm-mgmt:sequenceTerminationPolicy maxLength="1"/> - </wsrm-mgmt:sourcePolicy> - </value> - </property> - </bean> + + <import resource="rminterceptors.xml" /> + + <wsrm-mgmt:rmManager id="org.apache.cxf.ws.rm.RMManager"> + <wsrm-mgmt:sourcePolicy> + <wsrm-mgmt:sequenceTerminationPolicy maxLength="1" /> + </wsrm-mgmt:sourcePolicy> + </wsrm-mgmt:rmManager> + </beans> Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength10.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength10.xml?view=diff&rev=533412&r1=533411&r2=533412 ============================================================================== --- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength10.xml (original) +++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/seqlength10.xml Sat Apr 28 11:53:53 2007 @@ -1,42 +1,37 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. --> <beans xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" - xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" - xmlns:http="http://cxf.apache.org/transports/http/configuration" - xsi:schemaLocation=" -http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schema/transports/http.xsd + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" + xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" + xmlns:http="http://cxf.apache.org/transports/http/configuration" + xsi:schemaLocation=" +http://cxf.apache.org/ws/rm/manager http://cxf.apache.org/ws/rm/manager.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - - <bean id="org.apache.cxf.ws.rm.RMManager" class="org.apache.cxf.ws.rm.RMManager"> - <property name="bus" ref="cxf"/> - <property name="sourcePolicy"> - <value> - <wsrm-mgmt:sourcePolicy> - <wsrm-mgmt:sequenceTerminationPolicy maxLength="10"/> - </wsrm-mgmt:sourcePolicy> - </value> - </property> - </bean> - - <import resource="rminterceptors.xml"/> + + <import resource="rminterceptors.xml" /> + + <wsrm-mgmt:rmManager id="org.apache.cxf.ws.rm.RMManager"> + <wsrm-mgmt:sourcePolicy> + <wsrm-mgmt:sequenceTerminationPolicy maxLength="10" /> + </wsrm-mgmt:sourcePolicy> + </wsrm-mgmt:rmManager> </beans> Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/suppressed.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/suppressed.xml?view=diff&rev=533412&r1=533411&r2=533412 ============================================================================== --- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/suppressed.xml (original) +++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/ws/rm/suppressed.xml Sat Apr 28 11:53:53 2007 @@ -1,49 +1,40 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. --> <beans xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" - xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" - xsi:schemaLocation=" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:wsrm-mgmt="http://cxf.apache.org/ws/rm/manager" + xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" + xsi:schemaLocation=" +http://cxf.apache.org/ws/rm/manager http://cxf.apache.org/ws/rm/manager.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> - - <import resource="rminterceptors.xml"/> - - <bean id="org.apache.cxf.ws.rm.RMManager" class="org.apache.cxf.ws.rm.RMManager"> - <property name="bus" ref="cxf"/> - <property name="destinationPolicy"> - <value> - <wsrm-mgmt:destinationPolicy> - <wsrm-mgmt:acksPolicy intraMessageThreshold="0"/> - </wsrm-mgmt:destinationPolicy> - </value> - </property> - - <property name="RMAssertion"> - <value> - <wsrm-policy:RMAssertion> - <wsrm-policy:BaseRetransmissionInterval Milliseconds="3000"/> - <wsrm-policy:AcknowledgementInterval Milliseconds="99999999"/> - </wsrm-policy:RMAssertion> - </value> - </property> - </bean> - + + <import resource="rminterceptors.xml" /> + + <wsrm-mgmt:rmManager id="org.apache.cxf.ws.rm.RMManager"> + <wsrm-mgmt:destinationPolicy> + <wsrm-mgmt:acksPolicy intraMessageThreshold="0" /> + </wsrm-mgmt:destinationPolicy> + <wsrm-policy:RMAssertion> + <wsrm-policy:BaseRetransmissionInterval Milliseconds="3000" /> + <wsrm-policy:AcknowledgementInterval Milliseconds="99999999" /> + </wsrm-policy:RMAssertion> + </wsrm-mgmt:rmManager> + </beans>
