client-beans.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing,
  12. software distributed under the License is distributed on an
  13. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. KIND, either express or implied. See the License for the
  15. specific language governing permissions and limitations
  16. under the License.
  17. -->
  18. <!-- START SNIPPET: beans -->
  19. <beans xmlns="http://www.springframework.org/schema/beans"
  20. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xmlns:util="http://www.springframework.org/schema/util"
  22. xmlns:jaxrs="http://cxf.apache.org/jaxrs"
  23. xmlns:jaxws="http://cxf.apache.org/jaxws"
  24. xmlns:soap="http://cxf.apache.org/bindings/soap"
  25. xsi:schemaLocation="
  26. http://www.springframework.org/schema/beans
  27. http://www.springframework.org/schema/beans/spring-beans.xsd
  28. http://www.springframework.org/schema/util
  29. http://www.springframework.org/schema/util/spring-util-2.0.xsd
  30. http://cxf.apache.org/jaxrs
  31. http://cxf.apache.org/schemas/jaxrs.xsd
  32. http://cxf.apache.org/bindings/soap
  33. http://cxf.apache.org/schemas/configuration/soap.xsd
  34. http://cxf.apache.org/jaxws
  35. http://cxf.apache.org/schemas/jaxws.xsd">
  36. <import resource="classpath:META-INF/cxf/cxf.xml" />
  37. <import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
  38. <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
  39. <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
  40. <!--jaxws:client id="pdaClient"
  41. serviceClass="com.sinosoft.lz.esb.pda.service.PdaService"
  42. address="http://192.168.100.177:80/dlss/ws/pdaService" /-->
  43. <jaxws:client id="searchClient"
  44. serviceClass="com.sinosoft.lz.he.emResources.searchClient.SearchService"
  45. address="http://192.168.1.118:8789/lzsearch/ws/searchService" />
  46. </beans>
  47. <!-- END SNIPPET: beans -->