logo
Автор: ndubinkin
Описание:
Язык: XML
REQUEST getUserInfo
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:us="http://park.ru/soap/us" >
   <soap:Body>   
   	<us:getUserInfo>
		<us:userId>XXX</us:userId>
	</us:getUserInfo>
   </soap:Body>
</soap:Envelope>


RESPONSE getUserInfo
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:us="http://park.ru/soap/ws" >
   <soap:Body>   
   	<us:user>
		<us:userInfo>
			<us:userId>XXX</us:userId>
			<us:userFirstName>XXX</us:userFirstName>
			<us:userLastName>XXX</us:userLastName>
			<us:userBirthday>XXX</us:userBirthday>
			<us:userCity>XXX</us:userCity>
		</us:userInfo>
		<us:config>
			XXX
		</us:config>
		<us:subscritious>
			<us:subscription>
			 	<us:subscriptionPublicationId>XXX</subscriptionPublicationId>
			 	<us:subscriptionActive>XXX</subscriptionActive>
			 	<us:subscriptionFrom>XXX</subscriptionFrom>
			 	<us:subscriptionTo>XXX</subscriptionTo>
			</us:subscription>
			....
		</us:subscritions>
		<us:favorites>
			<us:folder>
				<us:folderId>XXX</us:folderId>
				<us:folderName>XXX</us:folderName>
				<us:bookmark>
				....
				</us:bookmark>
				....
			</us:folder>
			...
			<us:bookmark>
				<us:bookmarkId>XXX</us:bookmarkId>
				<us:bookmarkName>XXX</us:bookmarkName>
				<us:bookmarkIssueId>XXX</us:bookmarkIssueId>
				<us:bookmarkPage>XXX</us:bookmarkPage>
			</us:bookmark>
			...
			<us:colormark>
				<us:colormarkId>XXX</us:colormarkId>
				<us:colormarkName>XXX</us:colormarkName>
				<us:colormarkIssueId>XXX</us:colormarkIssueId>
				<us:colormarkPage>XXX</us:colormarkPage>
				<us:colormarkX>XXX</us:colormarkX>
				<us:colormarkY>XXX</us:colormarkY>
				<us:colormarkHeight>XXX</us:colormarkHeight>
				<us:colormarkColor>XXX</us:colormarkColor>
			</us:colormark>
			...
			<us:note>
				<us:noteId>XXX</us:noteId>
				<us:noteName>XXX</us:noteName>
				<us:noteIssueId>XXX</us:noteIssueId>
				<us:notePage>XXX</us:notePage>
				<us:noteValue>XXX</us:noteValue>
				<us:noteY>XXX</us:noteY>
				<us:noteHeight>XXX</us:noteHeight>
				<us:noteColor>XXX</us:noteColor>
			</us:note>
			...
		</us:favorites>	
	</us:user>
   </soap:Body>
</soap:Envelope>
 

REQUEST getCategorys
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cs="http://park.ru/soap/cs" >
   <soap:Body>   
   	<cs:getCategorys>
   		<!-- categoryName -->
		<cs:categoryId>XXX</cs:categoryId>
		<cs:categoryName>XXX</cs:categoryName>
	</cs:getCategorys>
   </soap:Body>
</soap:Envelope>


RESPONSE getCategorys
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cs="http://park.ru/soap/cs" >
   <soap:Body>   
   	<cs:Categorys>
   		<cs:Category>
			<cs:categoryId>XXX</cs:categoryId>
			<cs:categoryName>XXX</cs:categoryName>
		</cs:Category>
	</cs:Categorys>	
   </soap:Body>
</soap:Envelope>


REQUEST getLanguages
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ls="http://park.ru/soap/ls" >
   <soap:Body>   
   	<ls:getLanguages>
   		<ls:languageId>XXX</ls:languageId>
		<ls:languageName>XXX</cs:languageName>
	</ls:getLanguages>
   </soap:Body>
</soap:Envelope>


RESPONSE getLanguages
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ls="http://park.ru/soap/ls" >
   <soap:Body>   
   	<ls:languages>
   		<ls:language>
			<ls:languageId>XXX</ls:languageId>
			<ls:languageName>XXX</ls:languageName>
		</ls:language>
	</ls:languages>	
   </soap:Body>
</soap:Envelope>


REQUEST getAuthors
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:as="http://park.ru/soap/as" >
   <soap:Body>   
   	<as:getAuthors>
   		<as:authorId>XXX</as:authorId>
		<as:authorName>XXX</as:authorName>
	</as:getAuthors>
   </soap:Body>
</soap:Envelope>


RESPONSE getAuthors
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:as="http://park.ru/soap/as" >
   <soap:Body>   
   	<as:authors>
   		<as:author>
			<as:authorId>XXX</as:authorId>
			<as:authosName>XXX</as:authorName>
		</as:author>
	</as:authors>	
   </soap:Body>
</soap:Envelope>


REQUEST getPublishers
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ps="http://park.ru/soap/ps" >
   <soap:Body>   
   	<ps:getPublishers>
   		<ps:publisherId>XXX</ps:publisherId>
		<ps:publisherName>XXX</ps:publisherName>
	</ps:getPublishers>
   </soap:Body>
</soap:Envelope>


RESPONSE getPublishers
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ps="http://park.ru/soap/ps" >
   <soap:Body>   
   	<ps:Publishers>
   		<ps:publisher>
			<ps:publisherId>XXX</ps:publisherId>
			<ps:authosName>XXX</ps:publisherName>
		</ps:publisher>
	</ps:Publishers>	
   </soap:Body>
</soap:Envelope>


REQUEST getPublications
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pbs="http://park.ru/soap/pbs" >
   <soap:Body>   
   	<pbs:getPublications>
		<pbs:publicationId>XXX</pbs:publicationId>
		<pbs:publicationName>XXX</pbs:publicationName>
		<pbs:publicationCat>XXX</pbs:publicationCat>
		<pbs:publicationLng>XXX</pbs:publicationLng>
		<pbs:publicationCity>XXX</pbs:publicationCity>
		<pbs:publicationAth>XXX</pbs:publicationAth>
		<pbs:publicationPub>XXX</pbs:publicationPub>
	</pbs:getPublications>
   </soap:Body>
</soap:Envelope>


RESPONSE getPublications
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pbs="http://park.ru/soap/pbs" >
   <soap:Body>   
   	<pbs:Publications>
   		<pbs:publication>
			<pbs:publicationId>XXX</pbs:publicationId>
			<pbs:publicationName>XXX</pbs:publicationName>
			<pbs:publicationCat>XXX</pbs:publicationCat>
			<pbs:publicationLng>XXX</pbs:publicationLng>
			<pbs:publicationCity>XXX</pbs:publicationCity>
			<pbs:publicationAth>XXX</pbs:publicationAth>
			<pbs:publicationPub>XXX</pbs:publicationPub>
		</pbs:publication>
	</pbs:Publications>	
   </soap:Body>
</soap:Envelope>


REQUEST getCountrys
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cns="http://park.ru/soap/cns" >
   <soap:Body>   
   	<cns:getCountrys>
	</cns:getCountrys>
   </soap:Body>
</soap:Envelope>


RESPONSE getCountrys
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cns="http://park.ru/soap/cns" >
   <soap:Body>   
   	<cns:Countrys>
   		<cns:country>
			<cns:countryId>XXX</cns:countryId>
			<cns:countryName>XXX</cns:countryName>
		</cns:country>
	</cns:Countrys>	
   </soap:Body>
</soap:Envelope>


REQUEST getRegions
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cns="http://park.ru/soap/cns
xmlns:rgs="http://park.ru/soap/rgs" >
   <soap:Body>   
   	<rgs:getRegions>
			<cns:countryId>XXX</cns:countryId>
			<rgs:regionId>XXX</rgs:regionId>
	</rgs:getRegions>
   </soap:Body>
</soap:Envelope>


RESPONSE getRegions
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:rgs="http://park.ru/soap/rgs" >
   <soap:Body>   
   	<rgs:Regions>
   		<rgs:region>
			<rgs:regionId>XXX</rgs:regionId>
			<rgs:regionName>XXX</rgs:regionName>
		</rgs:region>
	</rgs:Regions>	
   </soap:Body>
</soap:Envelope>


REQUEST getCity
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cts="http://park.ru/soap/cts
xmlns:rgs="http://park.ru/soap/rgs" >
   <soap:Body>   
   	<cts:getCity>
			<cts:cityId>XXX</cts:cityId>
			<rgs:regionId>XXX</rgs:regionId>
	</cts:getCity>
   </soap:Body>
</soap:Envelope>


RESPONSE getCity
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cts="http://park.ru/soap/cts" >
   <soap:Body>   
   	<cts:Citys>
   		<cts:city>
			<cts:cityId>XXX</cts:cityId>
			<cts:cityName>XXX</cts:cityName>
		</cts:city>
	</cts:Citys>	
   </soap:Body>
</soap:Envelope>


REQUEST getPublication
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pbls="http://park.ru/soap/pbls" >
   <soap:Body>   
   	<pbls:getPublication>
			<pbls:publicationId>XXX</pbls:publicationId>
			<pbls:publicationFrom>XXX</pbls:publicationFrom>
			<pbls:publicationTo>XXX</pbls:publicationTo>
	</pbls:getPublication>
   </soap:Body>
</soap:Envelope>


RESPONSE getPublication
----------------------
<soap:Envelope 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pbls="http://park.ru/soap/pbls" >
   <soap:Body>   
   	<pbls:Publications>
   		<pbls:publication>
			<pbls:publicationId>XXX</pbls:publicationId>
			<pbls:publicationDate>XXX</pbls:publicationDate>
			<pbls:publicationPath>XXX</pbls:publicationPath>
		</pbls:publication>
	</pbls:Publications>	
   </soap:Body>
</soap:Envelope>
Последние размещения:
antonivanov (SQL)
antonivanov (PHP)
brinza (PHP)
ilyhamas (Delphi)
Riateche (PHP)
otherlight (Java)
otherlight (JavaScript)
otherlight (CSS)
otherlight (CSS)
biophreak (JavaScript)
n4n (Perl)
prostoHz (Java)
ndubinkin (XML)
Riateche (Plain Text)
Slapotam (Perl)
ksurent (Perl)
John_Wein (Java)
John_Wein (HTML)
Riateche (HTML)
netsago.paste.β © 2009 Neunica