Spring WS 는 사용 하지 않 았 습 니 다.

1971 단어 springWebbeanjmsSOAP
1. wsdl 파일 형식 으로 wsdl 발표

<bean id="orders" class="org.springframework.ws.wsdl.wsdl11.SimpleWsdl11Definition">
    <constructor-arg value="/WEB-INF/wsdl/Orders.wsdl"/>
</bean>

http://localhost:8080/spring-ws/orders.wsdl
-------------------------------------------------------------
2. xsd 파일 을 여러 부분 으로 나 누 어 여러 xsd 파일 로 작성 하여 발표
If you want to use multiple schemas, either by includes or imports, you might want to use the CommonsXsdSchemaCollection, and refer to that from the DefaultWsdl11Definition, like so:

<bean id="schemaCollection" class="org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection">
    <description>
        This bean wrap the messages.xsd (which imports types.xsd), and inlines them as a one.
    </description>
    <property name="xsds">
        <list>
            <value>/WEB-INF/xsds/Orders.xsd</value>
            <value>/WEB-INF/xsds/Customers.xsd</value>
        </list>
    </property>
    <property name="inline" value="true"/>
</bean>

When the inline property is enabled, it follows all XSD imports and includes, and inlines them in the WSDL. This greatly simplifies the deloyment of the schemas, which still making it possible to edit them separately.
orders. xsd 에서 import 왼쪽 customers. xsd, customers 내용 은 xsd 에서 볼 수 있 습 니 다.
-------------------------------------------------------------------
3.
soap 프로 토 콜 은 http 프로 토 콜 을 바탕 으로 jms 구성 요소 의 메 일 프로 토 콜 을 만 들 수 있 습 니까??
= = 잘 모르겠다
------------------------------------------------------------
4.
기본 Validate 와 Fault 생 성  endpoint
------------------------------------------------------------

좋은 웹페이지 즐겨찾기