This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.6.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit c5d2a50d28b47780311d91df390fa2a1836e41eb Author: Andriy Redko <drr...@gmail.com> AuthorDate: Wed Dec 7 20:48:44 2022 -0500 Fixing RpcBodyServerTest::testRPCInBodyNoArguments test case (missing resource) (cherry picked from commit 90bde2395e31d56d9adf566190340e8f532d83c6) --- .../soapbody_rpc_provider/sayHello2Msg.xml | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/rt/frontend/jaxws/src/test/resources/soapbody_rpc_provider/sayHello2Msg.xml b/rt/frontend/jaxws/src/test/resources/soapbody_rpc_provider/sayHello2Msg.xml new file mode 100644 index 0000000000..bade26f66e --- /dev/null +++ b/rt/frontend/jaxws/src/test/resources/soapbody_rpc_provider/sayHello2Msg.xml @@ -0,0 +1,32 @@ +<?xml version="1.0"?> +<!-- + 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. +--> +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://apache.org/body_test/rpc" + xmlns:SOAP-ENC = "http://schemas.xmlsoap.org/soap/encoding/" + xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"> + <soapenv:Header/> + <soapenv:Body> + <ns1:sayHello> + <ns1:in3> + 222 + 333 + </ns1:in3> + </ns1:sayHello> + </soapenv:Body> +</soapenv:Envelope>