source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Common/Interfaces/src/wsdl/EntityDocQuery.wsdl@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 3.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Entity Document Query WSDL
4 -->
5<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
6 xmlns="http://schemas.xmlsoap.org/wsdl/"
7 xmlns:tns="urn:gov:hhs:fha:nhinc:entitydocquery"
8 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9 xmlns:query="urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0"
10 xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
11 xmlns:nccommonentity="urn:gov:hhs:fha:nhinc:common:nhinccommonentity"
12 name="EntityDocQuery"
13 targetNamespace="urn:gov:hhs:fha:nhinc:entitydocquery">
14 <documentation>Entity Document Query</documentation>
15 <types>
16 <xsd:schema>
17 <xsd:import namespace="urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0"
18 schemaLocation="../schemas/ebRS/query.xsd"/>
19 <xsd:import namespace="urn:gov:hhs:fha:nhinc:common:nhinccommonentity"
20 schemaLocation="../schemas/nhinc/common/NhincCommonEntity.xsd"/>
21 </xsd:schema>
22 </types>
23
24 <message name="RespondingGateway_CrossGatewayQueryRequestMessage">
25 <part name="RespondingGateway_CrossGatewayQueryRequest"
26 element="nccommonentity:RespondingGateway_CrossGatewayQueryRequest"/>
27 </message>
28 <message name="RespondingGateway_CrossGatewayQueryResponseMessage">
29 <part name="RespondingGateway_CrossGatewayQueryResponse"
30 element="query:AdhocQueryResponse"/>
31 </message>
32
33 <portType name="EntityDocQueryPortType">
34 <operation name="RespondingGateway_CrossGatewayQuery">
35 <input name="RespondingGateway_CrossGatewayQueryRequest"
36 message="tns:RespondingGateway_CrossGatewayQueryRequestMessage" />
37 <output name="RespondingGateway_CrossGatewayQueryResponse"
38 message="tns:RespondingGateway_CrossGatewayQueryResponseMessage" />
39 </operation>
40 </portType>
41
42 <binding name="EntityDocQueryBindingSoap11" type="tns:EntityDocQueryPortType">
43 <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
44 <operation name="RespondingGateway_CrossGatewayQuery">
45 <soap:operation soapAction="urn:RespondingGateway_CrossGatewayQuery"/>
46 <input name="RespondingGateway_CrossGatewayQueryRequest">
47 <soap:body use="literal"/>
48 </input>
49 <output name="RespondingGateway_CrossGatewayQueryResponse">
50 <soap:body use="literal"/>
51 </output>
52 </operation>
53 </binding>
54
55 <service name="EntityDocQuery">
56 <port name="EntityDocQueryPortSoap11"
57 binding="tns:EntityDocQueryBindingSoap11">
58 <soap:address
59 location="http://localhost:${HttpDefaultPort}/NhinConnect/EntityDocQuery" />
60 </port>
61 </service>
62
63 <plnk:partnerLinkType name="EntityDocQuery">
64 <!-- A partner link type is automatically generated when a new port type is added.
65 Partner link types are used by BPEL processes. In a BPEL process, a partner
66 link represents the interaction between the BPEL process and a partner service.
67 Each partner link is associated with a partner link type. A partner link type
68 characterizes the conversational relationship between two services. The
69 partner link type can have one or two roles.-->
70 <plnk:role name="EntityDocQueryPortTypeRole"
71 portType="tns:EntityDocQueryPortType"/>
72 </plnk:partnerLinkType>
73
74</definitions>
Note: See TracBrowser for help on using the repository browser.