Skip to content

Instantly share code, notes, and snippets.

@atz
Created September 28, 2017 00:54
Show Gist options
  • Save atz/42b9d281b75ea5de506f60a250c5bf60 to your computer and use it in GitHub Desktop.
Save atz/42b9d281b75ea5de506f60a250c5bf60 to your computer and use it in GitHub Desktop.
Web of Science input examples
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:woksearch="http://woksearch.v3.wokmws.thomsonreuters.com">
<soapenv:Header/>
<soapenv:Body>
<woksearch:retrieveById>
<databaseId>WOS</databaseId>
<uid>WOS:000270372400005</uid>
<uid>WOS:000075022300003</uid>
<queryLanguage>en</queryLanguage>
<retrieveParameters>
<firstRecord>1</firstRecord>
<count>2</count>
<option>
<key>RecordIDs</key>
<value>On</value>
</option>
</retrieveParameters>
</woksearch:retrieveById>
</soapenv:Body>
</soapenv:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:woksearch="http://woksearch.v3.wokmws.thomsonreuters.com">
<soapenv:Header/>
<soapenv:Body>
<woksearch:search>
<queryParameters>
<databaseId>WOS</databaseId>
<userQuery>TS=(cadmium OR lead)</userQuery>
<editions>
<collection>WOS</collection>
<edition>SCI</edition>
</editions>
<timeSpan>
<begin>2000-01-01</begin>
<end>2011-12-31</end>
</timeSpan>
<queryLanguage>en</queryLanguage>
</queryParameters>
<retrieveParameters>
<firstRecord>1</firstRecord>
<count>5</count>
<option>
<key>RecordIDs</key>
<value>On</value>
</option>
<option>
<key>targetNamespace</key>
<value>http://scientific.thomsonreuters.com/schema/wok5.4/public/FullRecord</value>
</option>
</retrieveParameters>
</woksearch:search>
</soapenv:Body>
</soapenv:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment