exlibris-primo 0.1.1 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. data/README.rdoc +5 -2
  2. data/Rakefile +1 -5
  3. data/lib/exlibris/primo/eshelf.rb +4 -3
  4. data/lib/exlibris/primo/holding.rb +2 -10
  5. data/lib/exlibris/primo/record.rb +11 -6
  6. data/lib/exlibris/primo/searcher.rb +2 -4
  7. data/lib/exlibris/primo/version.rb +2 -2
  8. data/test/exlibris-primo_test.rb +3 -3
  9. data/test/test_helper.rb +33 -7
  10. data/test/unit/eshelf_test.rb +106 -87
  11. data/test/unit/record_test.rb +64 -45
  12. data/test/unit/searcher_benchmarks.rb +20 -28
  13. data/test/unit/searcher_test.rb +298 -273
  14. data/test/unit/web_service_benchmarks.rb +19 -21
  15. data/test/unit/web_service_test.rb +130 -102
  16. data/test/vcr_cassettes/eshelf_add_invalid_records.yml +107 -0
  17. data/test/vcr_cassettes/eshelf_add_same_record_twice.yml +159 -0
  18. data/test/vcr_cassettes/eshelf_add_to_empty_basket.yml +107 -0
  19. data/test/vcr_cassettes/eshelf_add_to_invalid_basket.yml +55 -0
  20. data/test/vcr_cassettes/eshelf_invalid_eshelf.yml +55 -0
  21. data/test/vcr_cassettes/eshelf_invalid_institution.yml +55 -0
  22. data/test/vcr_cassettes/eshelf_valid_eshelf.yml +2553 -0
  23. data/test/vcr_cassettes/eshelf_valid_eshelf_structure.yml +47 -0
  24. data/test/vcr_cassettes/record.yml +212 -0
  25. data/test/vcr_cassettes/record_invalid_record.yml +55 -0
  26. data/test/vcr_cassettes/record_sub_record.yml +212 -0
  27. data/test/vcr_cassettes/record_valid_record.yml +212 -0
  28. data/test/vcr_cassettes/searcher_base_holdings_by_id.yml +212 -0
  29. data/test/vcr_cassettes/searcher_dedupmrg_by_id.yml +347 -0
  30. data/test/vcr_cassettes/searcher_diacritics1_by_id.yml +207 -0
  31. data/test/vcr_cassettes/searcher_diacritics2_by_id.yml +232 -0
  32. data/test/vcr_cassettes/searcher_holdings_by_id.yml +212 -0
  33. data/test/vcr_cassettes/searcher_invalid_id.yml +55 -0
  34. data/test/vcr_cassettes/searcher_rsrcs_by_id.yml +270 -0
  35. data/test/vcr_cassettes/searcher_search_by_isbn.yml +278 -0
  36. data/test/vcr_cassettes/searcher_search_by_issn.yml +297 -0
  37. data/test/vcr_cassettes/searcher_search_by_title_author_genre.yml +671 -0
  38. data/test/vcr_cassettes/searcher_test_bug_1361.yml +224 -0
  39. data/test/vcr_cassettes/searcher_test_problem_by_id.yml +194 -0
  40. data/test/vcr_cassettes/searcher_tocs_by_id.yml +217 -0
  41. data/test/vcr_cassettes/web_service_author_search.yml +1269 -0
  42. data/test/vcr_cassettes/web_service_bogus_200.yml +392 -0
  43. data/test/vcr_cassettes/web_service_brief_search.yml +299 -0
  44. data/test/vcr_cassettes/web_service_get_eshelf.yml +11823 -0
  45. data/test/vcr_cassettes/web_service_get_eshelf_structure_search.yml +47 -0
  46. data/test/vcr_cassettes/web_service_invalid_document.yml +54 -0
  47. data/test/vcr_cassettes/web_service_isbn_search.yml +299 -0
  48. data/test/vcr_cassettes/web_service_issn_search.yml +293 -0
  49. data/test/vcr_cassettes/web_service_problem_document.yml +193 -0
  50. data/test/vcr_cassettes/web_service_single_document.yml +233 -0
  51. data/test/vcr_cassettes/web_service_title_author_genre_search.yml +719 -0
  52. data/test/vcr_cassettes/web_service_title_search.yml +1035 -0
  53. metadata +147 -77
  54. data/lib/tasks/exlibris-primo_tasks.rake +0 -4
  55. data/test/dummy/README.rdoc +0 -261
  56. data/test/dummy/Rakefile +0 -7
  57. data/test/dummy/app/assets/javascripts/application.js +0 -15
  58. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  59. data/test/dummy/app/controllers/application_controller.rb +0 -3
  60. data/test/dummy/app/helpers/application_helper.rb +0 -2
  61. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  62. data/test/dummy/config.ru +0 -4
  63. data/test/dummy/config/application.rb +0 -56
  64. data/test/dummy/config/boot.rb +0 -10
  65. data/test/dummy/config/database.yml +0 -25
  66. data/test/dummy/config/environment.rb +0 -5
  67. data/test/dummy/config/environments/development.rb +0 -37
  68. data/test/dummy/config/environments/production.rb +0 -67
  69. data/test/dummy/config/environments/test.rb +0 -37
  70. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  71. data/test/dummy/config/initializers/inflections.rb +0 -15
  72. data/test/dummy/config/initializers/mime_types.rb +0 -5
  73. data/test/dummy/config/initializers/secret_token.rb +0 -7
  74. data/test/dummy/config/initializers/session_store.rb +0 -8
  75. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  76. data/test/dummy/config/locales/en.yml +0 -5
  77. data/test/dummy/config/routes.rb +0 -58
  78. data/test/dummy/db/README +0 -0
  79. data/test/dummy/db/test.sqlite3 +0 -0
  80. data/test/dummy/log/test.log +0 -1704
  81. data/test/dummy/public/404.html +0 -26
  82. data/test/dummy/public/422.html +0 -26
  83. data/test/dummy/public/500.html +0 -25
  84. data/test/dummy/public/favicon.ico +0 -0
  85. data/test/dummy/script/rails +0 -6
@@ -0,0 +1,47 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/primo/eshelfstructure
6
+ body:
7
+ string: |-
8
+ <?xml version="1.0" encoding="utf-8" ?>
9
+ <env:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
12
+ <env:Body>
13
+ <n1:getEshelfStructure env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
14
+ xmlns:n1="http://www.exlibris.com/primo/xsd/wsRequest">
15
+ <getEshelfStructureRequest xsi:type="xsd:string">&lt;getEshelfStructureRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/wsRequest&apos;&gt;&lt;userId&gt;N18158418&lt;/userId&gt;&lt;institution&gt;NYU&lt;/institution&gt;&lt;includeBasketItems&gt;false&lt;/includeBasketItems&gt;&lt;/getEshelfStructureRequest&gt;</getEshelfStructureRequest>
16
+ </n1:getEshelfStructure>
17
+ </env:Body>
18
+ </env:Envelope>
19
+ headers:
20
+ Content-Type:
21
+ - text/xml; charset=utf-8
22
+ Soapaction:
23
+ - "\"\""
24
+ User-Agent:
25
+ - SOAP4R/1.6.1-SNAPSHOT
26
+ Accept:
27
+ - "*/*"
28
+ response:
29
+ status:
30
+ code: 200
31
+ message: OK
32
+ headers:
33
+ Server:
34
+ - Apache-Coyote/1.1
35
+ X-Powered-By:
36
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
37
+ Content-Type:
38
+ - text/xml;charset=utf-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Date:
42
+ - Fri, 12 Oct 2012 18:00:31 GMT
43
+ body:
44
+ string: <?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><ns1:getEshelfStructureResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><getEshelfStructureReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">&lt;prim:eshelf_folders xmlns:prim=&quot;http://www.exlibris.com/primo/xsd/primoeshelffolder&quot;&gt;&lt;prim:eshelf_folder folder_id=&quot;298560007&quot; parent_id=&quot;298560007&quot;&gt;&lt;prim:folder_name&gt;Basket&lt;/prim:folder_name&gt;&lt;prim:eshelf_folder_set&gt;&lt;prim:eshelf_folder folder_id=&quot;344619707&quot; parent_id=&quot;298560007&quot;&gt;&lt;prim:folder_name&gt;Test&lt;/prim:folder_name&gt;&lt;/prim:eshelf_folder&gt;&lt;/prim:eshelf_folder_set&gt;&lt;/prim:eshelf_folder&gt;&lt;/prim:eshelf_folders&gt;</getEshelfStructureReturn></ns1:getEshelfStructureResponse></soapenv:Body></soapenv:Envelope>
45
+ http_version:
46
+ recorded_at: Fri, 12 Oct 2012 18:00:31 GMT
47
+ recorded_with: VCR 2.2.5
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/primo/searcher
6
+ body:
7
+ string: |-
8
+ <?xml version="1.0" encoding="utf-8" ?>
9
+ <env:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
12
+ <env:Body>
13
+ <n1:getRecord env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
14
+ xmlns:n1="http://www.exlibris.com/primo/xsd/wsRequest">
15
+ <getRecordRequest xsi:type="xsd:string">&lt;fullViewRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/wsRequest&apos;&gt;&lt;PrimoSearchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/search/request&apos;&gt;&lt;QueryTerms&gt;&lt;BoolOpeator&gt;AND&lt;/BoolOpeator&gt;&lt;/QueryTerms&gt;&lt;StartIndex&gt;1&lt;/StartIndex&gt;&lt;BulkSize&gt;5&lt;/BulkSize&gt;&lt;DidUMeanEnabled&gt;false&lt;/DidUMeanEnabled&gt;&lt;HighlightingEnabled&gt;false&lt;/HighlightingEnabled&gt;&lt;/PrimoSearchRequest&gt;&lt;docId&gt;thisIsNotAValidDocId&lt;/docId&gt;&lt;institution&gt;NYU&lt;/institution&gt;&lt;/fullViewRequest&gt;</getRecordRequest>
16
+ </n1:getRecord>
17
+ </env:Body>
18
+ </env:Envelope>
19
+ headers:
20
+ Content-Type:
21
+ - text/xml; charset=utf-8
22
+ Soapaction:
23
+ - "\"\""
24
+ User-Agent:
25
+ - SOAP4R/1.6.1-SNAPSHOT
26
+ Accept:
27
+ - "*/*"
28
+ response:
29
+ status:
30
+ code: 200
31
+ message: OK
32
+ headers:
33
+ Server:
34
+ - Apache-Coyote/1.1
35
+ X-Powered-By:
36
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
37
+ Content-Type:
38
+ - text/xml;charset=utf-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Date:
42
+ - Fri, 12 Oct 2012 17:59:19 GMT
43
+ body:
44
+ string: |-
45
+ <?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><ns1:getRecordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><getRecordReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">&lt;SEGMENTS xmlns=&quot;http://www.exlibrisgroup.com/xsd/jaguar/search&quot;&gt;
46
+ &lt;JAGROOT&gt;
47
+ &lt;RESULT&gt;
48
+ &lt;ERROR CODE=&quot;-1&quot; MESSAGE=&quot;PrimoSearchWS getRecord null&quot;/&gt;
49
+ &lt;/RESULT&gt;
50
+ &lt;/JAGROOT&gt;
51
+ &lt;/SEGMENTS&gt;</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
52
+ http_version:
53
+ recorded_at: Fri, 12 Oct 2012 17:59:19 GMT
54
+ recorded_with: VCR 2.2.5
@@ -0,0 +1,299 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/primo/searcher
6
+ body:
7
+ string: |-
8
+ <?xml version="1.0" encoding="utf-8" ?>
9
+ <env:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
12
+ <env:Body>
13
+ <n1:searchBrief env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
14
+ xmlns:n1="http://www.exlibris.com/primo/xsd/wsRequest">
15
+ <searchBriefRequest xsi:type="xsd:string">&lt;searchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/wsRequest&apos;&gt;&lt;PrimoSearchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/search/request&apos;&gt;&lt;QueryTerms&gt;&lt;BoolOpeator&gt;AND&lt;/BoolOpeator&gt;&lt;QueryTerm&gt;&lt;IndexField&gt;isbn&lt;/IndexField&gt;&lt;PrecisionOperator&gt;exact&lt;/PrecisionOperator&gt;&lt;Value&gt;0143039008&lt;/Value&gt;&lt;/QueryTerm&gt;&lt;/QueryTerms&gt;&lt;StartIndex&gt;1&lt;/StartIndex&gt;&lt;BulkSize&gt;5&lt;/BulkSize&gt;&lt;DidUMeanEnabled&gt;false&lt;/DidUMeanEnabled&gt;&lt;HighlightingEnabled&gt;false&lt;/HighlightingEnabled&gt;&lt;/PrimoSearchRequest&gt;&lt;institution&gt;NYU&lt;/institution&gt;&lt;/searchRequest&gt;</searchBriefRequest>
16
+ </n1:searchBrief>
17
+ </env:Body>
18
+ </env:Envelope>
19
+ headers:
20
+ Content-Type:
21
+ - text/xml; charset=utf-8
22
+ Soapaction:
23
+ - "\"\""
24
+ User-Agent:
25
+ - SOAP4R/1.6.1-SNAPSHOT
26
+ Accept:
27
+ - "*/*"
28
+ response:
29
+ status:
30
+ code: 200
31
+ message: OK
32
+ headers:
33
+ Server:
34
+ - Apache-Coyote/1.1
35
+ X-Powered-By:
36
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
37
+ Content-Type:
38
+ - text/xml;charset=utf-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Date:
42
+ - Fri, 12 Oct 2012 18:00:31 GMT
43
+ body:
44
+ string: |-
45
+ <?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><ns1:searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">&lt;SEGMENTS xmlns=&quot;http://www.exlibrisgroup.com/xsd/jaguar/search&quot;&gt;
46
+ &lt;JAGROOT&gt;
47
+ &lt;RESULT&gt;
48
+ &lt;QUERYTRANSFORMS/&gt;
49
+ &lt;FACETLIST ACCURATE_COUNTERS=&quot;true&quot;&gt;
50
+ &lt;FACET NAME=&quot;creator&quot; COUNT=&quot;1&quot;&gt;
51
+ &lt;FACET_VALUES KEY=&quot;Greene, G&quot; VALUE=&quot;1&quot;/&gt;
52
+ &lt;/FACET&gt;
53
+ &lt;FACET NAME=&quot;lcc&quot; COUNT=&quot;1&quot;&gt;
54
+ &lt;FACET_VALUES KEY=&quot;P - Language and literature.&quot; VALUE=&quot;1&quot;/&gt;
55
+ &lt;/FACET&gt;
56
+ &lt;FACET NAME=&quot;lang&quot; COUNT=&quot;1&quot;&gt;
57
+ &lt;FACET_VALUES KEY=&quot;eng&quot; VALUE=&quot;1&quot;/&gt;
58
+ &lt;/FACET&gt;
59
+ &lt;FACET NAME=&quot;rtype&quot; COUNT=&quot;1&quot;&gt;
60
+ &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;1&quot;/&gt;
61
+ &lt;/FACET&gt;
62
+ &lt;FACET NAME=&quot;topic&quot; COUNT=&quot;6&quot;&gt;
63
+ &lt;FACET_VALUES KEY=&quot;Travelers&quot; VALUE=&quot;1&quot;/&gt;
64
+ &lt;FACET_VALUES KEY=&quot;Retirees&quot; VALUE=&quot;1&quot;/&gt;
65
+ &lt;FACET_VALUES KEY=&quot;Aunts&quot; VALUE=&quot;1&quot;/&gt;
66
+ &lt;FACET_VALUES KEY=&quot;British&quot; VALUE=&quot;1&quot;/&gt;
67
+ &lt;FACET_VALUES KEY=&quot;Older women&quot; VALUE=&quot;1&quot;/&gt;
68
+ &lt;FACET_VALUES KEY=&quot;Women travelers&quot; VALUE=&quot;1&quot;/&gt;
69
+ &lt;/FACET&gt;
70
+ &lt;FACET NAME=&quot;pfilter&quot; COUNT=&quot;1&quot;&gt;
71
+ &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;1&quot;/&gt;
72
+ &lt;/FACET&gt;
73
+ &lt;FACET NAME=&quot;creationdate&quot; COUNT=&quot;1&quot;&gt;
74
+ &lt;FACET_VALUES KEY=&quot;2004&quot; VALUE=&quot;1&quot;/&gt;
75
+ &lt;/FACET&gt;
76
+ &lt;FACET NAME=&quot;domain&quot; COUNT=&quot;1&quot;&gt;
77
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;1&quot;/&gt;
78
+ &lt;/FACET&gt;
79
+ &lt;FACET NAME=&quot;genre&quot; COUNT=&quot;2&quot;&gt;
80
+ &lt;FACET_VALUES KEY=&quot;Fiction&quot; VALUE=&quot;1&quot;/&gt;
81
+ &lt;FACET_VALUES KEY=&quot;Humorous stories&quot; VALUE=&quot;1&quot;/&gt;
82
+ &lt;/FACET&gt;
83
+ &lt;FACET NAME=&quot;library&quot; COUNT=&quot;1&quot;&gt;
84
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;1&quot;/&gt;
85
+ &lt;/FACET&gt;
86
+ &lt;FACET NAME=&quot;local1&quot; COUNT=&quot;1&quot;&gt;
87
+ &lt;FACET_VALUES KEY=&quot;Main Collection&quot; VALUE=&quot;1&quot;/&gt;
88
+ &lt;/FACET&gt;
89
+ &lt;/FACETLIST&gt;
90
+ &lt;DOCSET HIT_TIME=&quot;16&quot; TOTALHITS=&quot;1&quot; FIRSTHIT=&quot;1&quot; LASTHIT=&quot;1&quot; TOTAL_TIME=&quot;64&quot; IS_LOCAL=&quot;true&quot;&gt;
91
+ &lt;DOC ID=&quot;2278588&quot; RANK=&quot;1.0&quot; NO=&quot;1&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
92
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
93
+ &lt;record&gt;
94
+ &lt;control&gt;
95
+ &lt;sourcerecordid&gt;000062856&lt;/sourcerecordid&gt;
96
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
97
+ &lt;recordid&gt;nyu_aleph000062856&lt;/recordid&gt;
98
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
99
+ &lt;ilsapiid&gt;NYU01000062856&lt;/ilsapiid&gt;
100
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
101
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
102
+ &lt;/control&gt;
103
+ &lt;display&gt;
104
+ &lt;type&gt;book&lt;/type&gt;
105
+ &lt;title&gt;Travels with my aunt&lt;/title&gt;
106
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
107
+ &lt;edition&gt;Deluxe ed.&lt;/edition&gt;
108
+ &lt;publisher&gt;New York : Penguin Books&lt;/publisher&gt;
109
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
110
+ &lt;format&gt;xvi, 254 p. ; 22 cm.&lt;/format&gt;
111
+ &lt;identifier&gt;$$Cisbn$$V0143039008; $$Cisbn$$V9780143039006&lt;/identifier&gt;
112
+ &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories&lt;/subject&gt;
113
+ &lt;language&gt;eng&lt;/language&gt;
114
+ &lt;relation&gt;$$Cseries $$VPenguin classics&lt;/relation&gt;
115
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
116
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
117
+ &lt;lds02&gt;nyu_aleph000062856&lt;/lds02&gt;
118
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
119
+ &lt;availinstitution&gt;$$INYU$$Sunavailable&lt;/availinstitution&gt;
120
+ &lt;availpnx&gt;unavailable&lt;/availpnx&gt;
121
+ &lt;version&gt;2&lt;/version&gt;
122
+ &lt;/display&gt;
123
+ &lt;links&gt;
124
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
125
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
126
+ &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
127
+ &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
128
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
129
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
130
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
131
+ &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
132
+ &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
133
+ &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
134
+ &lt;/links&gt;
135
+ &lt;search&gt;
136
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
137
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
138
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
139
+ &lt;creatorcontrib&gt;Graham Greene ; introduction by Gloria Emerson.&lt;/creatorcontrib&gt;
140
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
141
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
142
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
143
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
144
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
145
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
146
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
147
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
148
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
149
+ &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
150
+ &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
151
+ &lt;subject&gt;Older women Fiction&lt;/subject&gt;
152
+ &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
153
+ &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
154
+ &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
155
+ &lt;subject&gt;Humorous stories&lt;/subject&gt;
156
+ &lt;subject&gt;People, Retired&lt;/subject&gt;
157
+ &lt;subject&gt;Retired persons&lt;/subject&gt;
158
+ &lt;subject&gt;Retired people&lt;/subject&gt;
159
+ &lt;subject&gt;Travelers, Women&lt;/subject&gt;
160
+ &lt;subject&gt;Britishers&lt;/subject&gt;
161
+ &lt;subject&gt;British people&lt;/subject&gt;
162
+ &lt;subject&gt;Britons (British)&lt;/subject&gt;
163
+ &lt;subject&gt;Brits&lt;/subject&gt;
164
+ &lt;subject&gt;Aged women&lt;/subject&gt;
165
+ &lt;general&gt;Penguin Books,&lt;/general&gt;
166
+ &lt;general&gt;&quot;Graham Greene centennial, 1904-2004&quot;--Cover.&lt;/general&gt;
167
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
168
+ &lt;recordid&gt;nyu_aleph000062856&lt;/recordid&gt;
169
+ &lt;isbn&gt;0143039008&lt;/isbn&gt;
170
+ &lt;isbn&gt;9780143039006&lt;/isbn&gt;
171
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
172
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
173
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
174
+ &lt;addtitle&gt;Penguin classics&lt;/addtitle&gt;
175
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
176
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
177
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
178
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
179
+ &lt;scope&gt;BOBST&lt;/scope&gt;
180
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
181
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
182
+ &lt;scope&gt;NYU&lt;/scope&gt;
183
+ &lt;lsr01&gt;PR6013.R44 T7 2004&lt;/lsr01&gt;
184
+ &lt;lsr01&gt;PR6013 .R44 T7 2004&lt;/lsr01&gt;
185
+ &lt;lsr02&gt;Penguin Books,&lt;/lsr02&gt;
186
+ &lt;/search&gt;
187
+ &lt;sort&gt;
188
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
189
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
190
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
191
+ &lt;lso01&gt;2004&lt;/lso01&gt;
192
+ &lt;/sort&gt;
193
+ &lt;facets&gt;
194
+ &lt;language&gt;eng&lt;/language&gt;
195
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
196
+ &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
197
+ &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
198
+ &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
199
+ &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
200
+ &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
201
+ &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
202
+ &lt;collection&gt;BOBST&lt;/collection&gt;
203
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
204
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
205
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
206
+ &lt;genre&gt;Fiction&lt;/genre&gt;
207
+ &lt;genre&gt;Humorous stories&lt;/genre&gt;
208
+ &lt;library&gt;BOBST&lt;/library&gt;
209
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
210
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
211
+ &lt;frbrgroupid&gt;49340863&lt;/frbrgroupid&gt;
212
+ &lt;frbrtype&gt;5&lt;/frbrtype&gt;
213
+ &lt;/facets&gt;
214
+ &lt;dedup&gt;
215
+ &lt;t&gt;1&lt;/t&gt;
216
+ &lt;c1&gt;2004559272&lt;/c1&gt;
217
+ &lt;c2&gt;0143039008;9780143039006&lt;/c2&gt;
218
+ &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
219
+ &lt;c4&gt;2004&lt;/c4&gt;
220
+ &lt;f1&gt;2004559272&lt;/f1&gt;
221
+ &lt;f3&gt;0143039008;9780143039006&lt;/f3&gt;
222
+ &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
223
+ &lt;f6&gt;2004&lt;/f6&gt;
224
+ &lt;f7&gt;travels with my aunt&lt;/f7&gt;
225
+ &lt;f8&gt;nyu&lt;/f8&gt;
226
+ &lt;f9&gt;xvi, 254 p. ;&lt;/f9&gt;
227
+ &lt;f10&gt;penguin books&lt;/f10&gt;
228
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
229
+ &lt;/dedup&gt;
230
+ &lt;frbr&gt;
231
+ &lt;t&gt;1&lt;/t&gt;
232
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
233
+ &lt;k3&gt;$$Kbooktravels with my aunt$$AT&lt;/k3&gt;
234
+ &lt;/frbr&gt;
235
+ &lt;delivery&gt;
236
+ &lt;institution&gt;NYU&lt;/institution&gt;
237
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
238
+ &lt;/delivery&gt;
239
+ &lt;enrichment&gt;
240
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
241
+ &lt;/enrichment&gt;
242
+ &lt;ranking&gt;
243
+ &lt;booster1&gt;1&lt;/booster1&gt;
244
+ &lt;booster2&gt;1&lt;/booster2&gt;
245
+ &lt;/ranking&gt;
246
+ &lt;addata&gt;
247
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
248
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
249
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
250
+ &lt;btitle&gt;Travels with my aunt&lt;/btitle&gt;
251
+ &lt;seriestitle&gt;Penguin classics&lt;/seriestitle&gt;
252
+ &lt;date&gt;2004&lt;/date&gt;
253
+ &lt;risdate&gt;2004.&lt;/risdate&gt;
254
+ &lt;isbn&gt;0143039008&lt;/isbn&gt;
255
+ &lt;isbn&gt;9780143039006&lt;/isbn&gt;
256
+ &lt;format&gt;book&lt;/format&gt;
257
+ &lt;genre&gt;book&lt;/genre&gt;
258
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
259
+ &lt;notes&gt;Includes bibliographical references (p. xv-xvi).&lt;/notes&gt;
260
+ &lt;cop&gt;New York&lt;/cop&gt;
261
+ &lt;pub&gt;Penguin Books&lt;/pub&gt;
262
+ &lt;oclcid&gt;56781200&lt;/oclcid&gt;
263
+ &lt;lccn&gt;2004559272&lt;/lccn&gt;
264
+ &lt;lad01&gt;BOBST&lt;/lad01&gt;
265
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
266
+ &lt;/addata&gt;
267
+ &lt;/record&gt;
268
+ &lt;/PrimoNMBib&gt;
269
+ &lt;GETIT deliveryCategory=&quot;Physical Item&quot; GetIt1=&quot;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000062856&quot; GetIt2=&quot;https://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A31IST&amp;amp;url_ver=Z39.88-2004&amp;amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;rft.genre=book&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt&amp;amp;rft.aulast=Greene&amp;amp;rft.aufirst=Graham%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;amp;rft.aucorp=&amp;amp;rft.volume=&amp;amp;rft.issue=&amp;amp;rft.part=&amp;amp;rft.quarter=&amp;amp;rft.ssn=&amp;amp;rft.spage=&amp;amp;rft.epage=&amp;amp;rft.pages=&amp;amp;rft.artnum=&amp;amp;rft.pub=Penguin%20Books&amp;amp;rft.place=New%20York&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=0143039008&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph000062856&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;000062856&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
270
+ &lt;LIBRARIES&gt;
271
+ &lt;LIBRARY&gt;
272
+ &lt;institution&gt;NYU&lt;/institution&gt;
273
+ &lt;library&gt;BOBST&lt;/library&gt;
274
+ &lt;status&gt;unavailable&lt;/status&gt;
275
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
276
+ &lt;callNumber&gt;(PR6013.R44 T7 2004 )&lt;/callNumber&gt;
277
+ &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000062856&lt;/url&gt;
278
+ &lt;/LIBRARY&gt;
279
+ &lt;/LIBRARIES&gt;
280
+ &lt;LINKS&gt;
281
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A31IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt&amp;rft.aulast=Greene&amp;rft.aufirst=Graham%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Penguin%20Books&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0143039008&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000062856&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;000062856&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
282
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000062856&lt;/backlink&gt;
283
+ &lt;thumbnail&gt;http://images.amazon.com/images/P/0143039008.01._SSTHUM_.jpg&lt;/thumbnail&gt;
284
+ &lt;linktotoc&gt;http://www.amazon.com/gp/reader/0143039008&lt;/linktotoc&gt;
285
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A31IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt&amp;rft.aulast=Greene&amp;rft.aufirst=Graham%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Penguin%20Books&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0143039008&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;000062856&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
286
+ &lt;linktoholdings&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000062856&lt;/linktoholdings&gt;
287
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph000062856?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
288
+ &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=0143039008&lt;/linktouc&gt;
289
+ &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A0143039008&lt;/linktouc&gt;
290
+ &lt;/LINKS&gt;
291
+ &lt;/DOC&gt;
292
+ &lt;/DOCSET&gt;
293
+ &lt;/RESULT&gt;
294
+ &lt;searchToken&gt;0&lt;/searchToken&gt;
295
+ &lt;/JAGROOT&gt;
296
+ &lt;/SEGMENTS&gt;</searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
297
+ http_version:
298
+ recorded_at: Fri, 12 Oct 2012 18:00:31 GMT
299
+ recorded_with: VCR 2.2.5
@@ -0,0 +1,293 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/primo/searcher
6
+ body:
7
+ string: |-
8
+ <?xml version="1.0" encoding="utf-8" ?>
9
+ <env:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
12
+ <env:Body>
13
+ <n1:searchBrief env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
14
+ xmlns:n1="http://www.exlibris.com/primo/xsd/wsRequest">
15
+ <searchBriefRequest xsi:type="xsd:string">&lt;searchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/wsRequest&apos;&gt;&lt;PrimoSearchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/search/request&apos;&gt;&lt;QueryTerms&gt;&lt;BoolOpeator&gt;AND&lt;/BoolOpeator&gt;&lt;QueryTerm&gt;&lt;IndexField&gt;isbn&lt;/IndexField&gt;&lt;PrecisionOperator&gt;exact&lt;/PrecisionOperator&gt;&lt;Value&gt;0090-5720&lt;/Value&gt;&lt;/QueryTerm&gt;&lt;/QueryTerms&gt;&lt;StartIndex&gt;1&lt;/StartIndex&gt;&lt;BulkSize&gt;5&lt;/BulkSize&gt;&lt;DidUMeanEnabled&gt;false&lt;/DidUMeanEnabled&gt;&lt;HighlightingEnabled&gt;false&lt;/HighlightingEnabled&gt;&lt;/PrimoSearchRequest&gt;&lt;institution&gt;NYU&lt;/institution&gt;&lt;/searchRequest&gt;</searchBriefRequest>
16
+ </n1:searchBrief>
17
+ </env:Body>
18
+ </env:Envelope>
19
+ headers:
20
+ Content-Type:
21
+ - text/xml; charset=utf-8
22
+ Soapaction:
23
+ - "\"\""
24
+ User-Agent:
25
+ - SOAP4R/1.6.1-SNAPSHOT
26
+ Accept:
27
+ - "*/*"
28
+ response:
29
+ status:
30
+ code: 200
31
+ message: OK
32
+ headers:
33
+ Server:
34
+ - Apache-Coyote/1.1
35
+ X-Powered-By:
36
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
37
+ Content-Type:
38
+ - text/xml;charset=utf-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Date:
42
+ - Fri, 12 Oct 2012 18:00:31 GMT
43
+ body:
44
+ string: |-
45
+ <?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><ns1:searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">&lt;SEGMENTS xmlns=&quot;http://www.exlibrisgroup.com/xsd/jaguar/search&quot;&gt;
46
+ &lt;JAGROOT&gt;
47
+ &lt;RESULT&gt;
48
+ &lt;QUERYTRANSFORMS/&gt;
49
+ &lt;FACETLIST ACCURATE_COUNTERS=&quot;true&quot;&gt;
50
+ &lt;FACET NAME=&quot;lcc&quot; COUNT=&quot;1&quot;&gt;
51
+ &lt;FACET_VALUES KEY=&quot;H - Social sciences.&quot; VALUE=&quot;1&quot;/&gt;
52
+ &lt;/FACET&gt;
53
+ &lt;FACET NAME=&quot;lang&quot; COUNT=&quot;1&quot;&gt;
54
+ &lt;FACET_VALUES KEY=&quot;eng&quot; VALUE=&quot;1&quot;/&gt;
55
+ &lt;/FACET&gt;
56
+ &lt;FACET NAME=&quot;rtype&quot; COUNT=&quot;1&quot;&gt;
57
+ &lt;FACET_VALUES KEY=&quot;journals&quot; VALUE=&quot;1&quot;/&gt;
58
+ &lt;/FACET&gt;
59
+ &lt;FACET NAME=&quot;topic&quot; COUNT=&quot;1&quot;&gt;
60
+ &lt;FACET_VALUES KEY=&quot;Economics&quot; VALUE=&quot;1&quot;/&gt;
61
+ &lt;/FACET&gt;
62
+ &lt;FACET NAME=&quot;tlevel&quot; COUNT=&quot;2&quot;&gt;
63
+ &lt;FACET_VALUES KEY=&quot;online_resources&quot; VALUE=&quot;1&quot;/&gt;
64
+ &lt;FACET_VALUES KEY=&quot;available&quot; VALUE=&quot;1&quot;/&gt;
65
+ &lt;/FACET&gt;
66
+ &lt;FACET NAME=&quot;pfilter&quot; COUNT=&quot;1&quot;&gt;
67
+ &lt;FACET_VALUES KEY=&quot;journals&quot; VALUE=&quot;1&quot;/&gt;
68
+ &lt;/FACET&gt;
69
+ &lt;FACET NAME=&quot;creationdate&quot; COUNT=&quot;1&quot;&gt;
70
+ &lt;FACET_VALUES KEY=&quot;1972&quot; VALUE=&quot;1&quot;/&gt;
71
+ &lt;/FACET&gt;
72
+ &lt;FACET NAME=&quot;domain&quot; COUNT=&quot;1&quot;&gt;
73
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;1&quot;/&gt;
74
+ &lt;/FACET&gt;
75
+ &lt;FACET NAME=&quot;genre&quot; COUNT=&quot;2&quot;&gt;
76
+ &lt;FACET_VALUES KEY=&quot;Periodicals&quot; VALUE=&quot;1&quot;/&gt;
77
+ &lt;FACET_VALUES KEY=&quot;Electronic journals&quot; VALUE=&quot;1&quot;/&gt;
78
+ &lt;/FACET&gt;
79
+ &lt;FACET NAME=&quot;library&quot; COUNT=&quot;6&quot;&gt;
80
+ &lt;FACET_VALUES KEY=&quot;ISAW&quot; VALUE=&quot;1&quot;/&gt;
81
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;1&quot;/&gt;
82
+ &lt;FACET_VALUES KEY=&quot;REI&quot; VALUE=&quot;1&quot;/&gt;
83
+ &lt;FACET_VALUES KEY=&quot;IFAC&quot; VALUE=&quot;1&quot;/&gt;
84
+ &lt;FACET_VALUES KEY=&quot;IFA&quot; VALUE=&quot;1&quot;/&gt;
85
+ &lt;FACET_VALUES KEY=&quot;COUR&quot; VALUE=&quot;1&quot;/&gt;
86
+ &lt;/FACET&gt;
87
+ &lt;FACET NAME=&quot;local1&quot; COUNT=&quot;2&quot;&gt;
88
+ &lt;FACET_VALUES KEY=&quot;Main Collection&quot; VALUE=&quot;1&quot;/&gt;
89
+ &lt;FACET_VALUES KEY=&quot;Internet Resources&quot; VALUE=&quot;1&quot;/&gt;
90
+ &lt;/FACET&gt;
91
+ &lt;/FACETLIST&gt;
92
+ &lt;DOCSET HIT_TIME=&quot;11&quot; TOTALHITS=&quot;1&quot; FIRSTHIT=&quot;1&quot; LASTHIT=&quot;1&quot; TOTAL_TIME=&quot;38&quot; IS_LOCAL=&quot;true&quot;&gt;
93
+ &lt;DOC ID=&quot;1271691&quot; RANK=&quot;1.0&quot; NO=&quot;1&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
94
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
95
+ &lt;record&gt;
96
+ &lt;control&gt;
97
+ &lt;sourcerecordid&gt;002736245&lt;/sourcerecordid&gt;
98
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
99
+ &lt;recordid&gt;nyu_aleph002736245&lt;/recordid&gt;
100
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
101
+ &lt;ilsapiid&gt;NYU01002736245&lt;/ilsapiid&gt;
102
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
103
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
104
+ &lt;/control&gt;
105
+ &lt;display&gt;
106
+ &lt;type&gt;journal&lt;/type&gt;
107
+ &lt;title&gt;The Journal of behavioral economics.&lt;/title&gt;
108
+ &lt;publisher&gt;Macomb, Center for Business and Economic Research, Western Illinois University&lt;/publisher&gt;
109
+ &lt;creationdate&gt;1972&lt;/creationdate&gt;
110
+ &lt;format&gt;v. 28 cm.&lt;/format&gt;
111
+ &lt;identifier&gt;$$Cissn$$V0090-5720&lt;/identifier&gt;
112
+ &lt;subject&gt;Economics -- Psychological aspects -- Periodicals; Economics -- Periodicals; Electronic journals&lt;/subject&gt;
113
+ &lt;language&gt;eng&lt;/language&gt;
114
+ &lt;relation&gt;$$Clater_title ; $$VJournal of socio-economics&lt;/relation&gt;
115
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
116
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(HB1 .J55 )$$Sunavailable$$38$$48$$5Y$$60$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
117
+ &lt;availlibrary&gt;$$INYU$$LBWEB$$1Internet Resources$$2(HB1 .J55 Electronic access )$$Scheck_holdings$$XNYU50$$YBWEB$$ZBNYUI&lt;/availlibrary&gt;
118
+ &lt;lds02&gt;nyu_aleph002736245&lt;/lds02&gt;
119
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
120
+ &lt;lds01&gt;NYUAD&lt;/lds01&gt;
121
+ &lt;availinstitution&gt;$$INYU$$Scheck_holdings&lt;/availinstitution&gt;
122
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
123
+ &lt;/display&gt;
124
+ &lt;links&gt;
125
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
126
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
127
+ &lt;linktorsrc&gt;$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.sciencedirect.com/science/journal/00905720$$DOnline Version$$INYU&lt;/linktorsrc&gt;
128
+ &lt;linktorsrc&gt;$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.sciencedirect.com/science/journal/00905720$$DOnline Resource$$INYUAD&lt;/linktorsrc&gt;
129
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
130
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
131
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
132
+ &lt;/links&gt;
133
+ &lt;search&gt;
134
+ &lt;creatorcontrib&gt;Mellon Project.&lt;/creatorcontrib&gt;
135
+ &lt;creatorcontrib&gt;ScienceDirect (Online service)&lt;/creatorcontrib&gt;
136
+ &lt;title&gt;The Journal of behavioral economics.&lt;/title&gt;
137
+ &lt;subject&gt;Economics Psychological aspects Periodicals&lt;/subject&gt;
138
+ &lt;subject&gt;Economics Periodicals&lt;/subject&gt;
139
+ &lt;subject&gt;Electronic journals&lt;/subject&gt;
140
+ &lt;subject&gt;Political economy&lt;/subject&gt;
141
+ &lt;subject&gt;Economic theory&lt;/subject&gt;
142
+ &lt;general&gt;Center for Business and Economic Research, Western Illinois University]&lt;/general&gt;
143
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
144
+ &lt;recordid&gt;nyu_aleph002736245&lt;/recordid&gt;
145
+ &lt;isbn&gt;0090-5720&lt;/isbn&gt;
146
+ &lt;rsrctype&gt;journal&lt;/rsrctype&gt;
147
+ &lt;creationdate&gt;1972&lt;/creationdate&gt;
148
+ &lt;creationdate&gt;1990&lt;/creationdate&gt;
149
+ &lt;addtitle&gt;The Journal of behavioral economics (Online)&lt;/addtitle&gt;
150
+ &lt;addtitle&gt;Journal of socio-economics&lt;/addtitle&gt;
151
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
152
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
153
+ &lt;searchscope&gt;BWEB&lt;/searchscope&gt;
154
+ &lt;searchscope&gt;BWEB Internet Resources&lt;/searchscope&gt;
155
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
156
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
157
+ &lt;searchscope&gt;NYUAD&lt;/searchscope&gt;
158
+ &lt;searchscope&gt;IFA&lt;/searchscope&gt;
159
+ &lt;searchscope&gt;IFAC&lt;/searchscope&gt;
160
+ &lt;searchscope&gt;ISAW&lt;/searchscope&gt;
161
+ &lt;searchscope&gt;COUR&lt;/searchscope&gt;
162
+ &lt;searchscope&gt;REI&lt;/searchscope&gt;
163
+ &lt;scope&gt;BOBST&lt;/scope&gt;
164
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
165
+ &lt;scope&gt;BWEB&lt;/scope&gt;
166
+ &lt;scope&gt;BWEB Internet Resources&lt;/scope&gt;
167
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
168
+ &lt;scope&gt;NYU&lt;/scope&gt;
169
+ &lt;scope&gt;NYUAD&lt;/scope&gt;
170
+ &lt;scope&gt;IFA&lt;/scope&gt;
171
+ &lt;scope&gt;IFAC&lt;/scope&gt;
172
+ &lt;scope&gt;ISAW&lt;/scope&gt;
173
+ &lt;scope&gt;COUR&lt;/scope&gt;
174
+ &lt;scope&gt;REI&lt;/scope&gt;
175
+ &lt;lsr01&gt;HB1 .J55&lt;/lsr01&gt;
176
+ &lt;lsr01&gt;HB1.J55&lt;/lsr01&gt;
177
+ &lt;lsr02&gt;Center for Business and Economic Research, Western Illinois University]&lt;/lsr02&gt;
178
+ &lt;/search&gt;
179
+ &lt;sort&gt;
180
+ &lt;title&gt;Journal of behavioral economics.&lt;/title&gt;
181
+ &lt;creationdate&gt;1972&lt;/creationdate&gt;
182
+ &lt;lso01&gt;1972&lt;/lso01&gt;
183
+ &lt;/sort&gt;
184
+ &lt;facets&gt;
185
+ &lt;language&gt;eng&lt;/language&gt;
186
+ &lt;creationdate&gt;1972&lt;/creationdate&gt;
187
+ &lt;topic&gt;Economics&#x2013;Psychological aspects&#x2013;Periodicals&lt;/topic&gt;
188
+ &lt;topic&gt;Economics&#x2013;Periodicals&lt;/topic&gt;
189
+ &lt;collection&gt;BOBST&lt;/collection&gt;
190
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
191
+ &lt;toplevel&gt;online_resources&lt;/toplevel&gt;
192
+ &lt;prefilter&gt;journals&lt;/prefilter&gt;
193
+ &lt;rsrctype&gt;journals&lt;/rsrctype&gt;
194
+ &lt;genre&gt;Periodicals&lt;/genre&gt;
195
+ &lt;genre&gt;Electronic journals&lt;/genre&gt;
196
+ &lt;library&gt;BOBST&lt;/library&gt;
197
+ &lt;library&gt;IFA&lt;/library&gt;
198
+ &lt;library&gt;IFAC&lt;/library&gt;
199
+ &lt;library&gt;ISAW&lt;/library&gt;
200
+ &lt;library&gt;COUR&lt;/library&gt;
201
+ &lt;library&gt;REI&lt;/library&gt;
202
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
203
+ &lt;lfc01&gt;Internet Resources&lt;/lfc01&gt;
204
+ &lt;classificationlcc&gt;H - Social sciences.&#x2013;Economic theory. Demography&lt;/classificationlcc&gt;
205
+ &lt;frbrgroupid&gt;64653363&lt;/frbrgroupid&gt;
206
+ &lt;frbrtype&gt;6&lt;/frbrtype&gt;
207
+ &lt;/facets&gt;
208
+ &lt;dedup&gt;
209
+ &lt;t&gt;2&lt;/t&gt;
210
+ &lt;c1&gt;73641924&lt;/c1&gt;
211
+ &lt;c2&gt;0090-5720&lt;/c2&gt;
212
+ &lt;c3&gt;journalofbehavioraleconomics&lt;/c3&gt;
213
+ &lt;c4&gt;macomb&lt;/c4&gt;
214
+ &lt;f1&gt;73641924&lt;/f1&gt;
215
+ &lt;f3&gt;00905720&lt;/f3&gt;
216
+ &lt;f6&gt;1972&lt;/f6&gt;
217
+ &lt;f7&gt;journal of behavioral economics&lt;/f7&gt;
218
+ &lt;f8&gt;journal of behavioral economics&lt;/f8&gt;
219
+ &lt;f9&gt;ilu&lt;/f9&gt;
220
+ &lt;f10&gt;macomb&lt;/f10&gt;
221
+ &lt;/dedup&gt;
222
+ &lt;frbr&gt;
223
+ &lt;t&gt;1&lt;/t&gt;
224
+ &lt;k3&gt;$$Kjournal of behavioral economics$$AT&lt;/k3&gt;
225
+ &lt;/frbr&gt;
226
+ &lt;delivery&gt;
227
+ &lt;institution&gt;NYU&lt;/institution&gt;
228
+ &lt;institution&gt;NYUAD&lt;/institution&gt;
229
+ &lt;delcategory&gt;Online Resource&lt;/delcategory&gt;
230
+ &lt;/delivery&gt;
231
+ &lt;enrichment&gt;
232
+ &lt;classificationlcc&gt;HB1&lt;/classificationlcc&gt;
233
+ &lt;/enrichment&gt;
234
+ &lt;ranking&gt;
235
+ &lt;booster1&gt;1&lt;/booster1&gt;
236
+ &lt;booster2&gt;1&lt;/booster2&gt;
237
+ &lt;/ranking&gt;
238
+ &lt;addata&gt;
239
+ &lt;jtitle&gt;The Journal of behavioral economics.&lt;/jtitle&gt;
240
+ &lt;date&gt;1972&lt;/date&gt;
241
+ &lt;risdate&gt;1972&lt;/risdate&gt;
242
+ &lt;issn&gt;0090-5720&lt;/issn&gt;
243
+ &lt;format&gt;journal&lt;/format&gt;
244
+ &lt;genre&gt;journal&lt;/genre&gt;
245
+ &lt;ristype&gt;JOUR&lt;/ristype&gt;
246
+ &lt;cop&gt;Macomb&lt;/cop&gt;
247
+ &lt;pub&gt;Center for Business and Economic Research, Western Illinois University]&lt;/pub&gt;
248
+ &lt;lccn&gt;73641924&lt;/lccn&gt;
249
+ &lt;lad01&gt;BOBSTBWEB&lt;/lad01&gt;
250
+ &lt;lad01&gt;Online Resource&lt;/lad01&gt;
251
+ &lt;/addata&gt;
252
+ &lt;/record&gt;
253
+ &lt;/PrimoNMBib&gt;
254
+ &lt;GETIT deliveryCategory=&quot;Online Resource&quot; GetIt1=&quot;https://ezproxy.library.nyu.edu/login?url=http://www.sciencedirect.com/science/journal/00905720&quot; GetIt2=&quot;https://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A31IST&amp;amp;url_ver=Z39.88-2004&amp;amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph002736245&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;amp;rft.genre=journal&amp;amp;rft.jtitle=The%20Journal%20of%20behavioral%20economics.&amp;amp;rft.btitle=&amp;amp;rft.aulast=&amp;amp;rft.aufirst=&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=&amp;amp;rft.aucorp=&amp;amp;rft.volume=&amp;amp;rft.issue=&amp;amp;rft.part=&amp;amp;rft.quarter=&amp;amp;rft.ssn=&amp;amp;rft.spage=&amp;amp;rft.epage=&amp;amp;rft.pages=&amp;amp;rft.artnum=&amp;amp;rft.pub=Center%20for%20Business%20and%20Economic%20Research%2C%20Western%20Illinois%20University]&amp;amp;rft.place=Macomb&amp;amp;rft.issn=0090-5720&amp;amp;rft.eissn=&amp;amp;rft.isbn=&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph002736245&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;002736245&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
255
+ &lt;GETIT deliveryCategory=&quot;Physical Item&quot; GetIt1=&quot;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002736245&quot; GetIt2=&quot;&quot;/&gt;
256
+ &lt;LIBRARIES&gt;
257
+ &lt;LIBRARY&gt;
258
+ &lt;institution&gt;NYU&lt;/institution&gt;
259
+ &lt;library&gt;BOBST&lt;/library&gt;
260
+ &lt;status&gt;unavailable&lt;/status&gt;
261
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
262
+ &lt;callNumber&gt;(HB1 .J55 )&lt;/callNumber&gt;
263
+ &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002736245&lt;/url&gt;
264
+ &lt;/LIBRARY&gt;
265
+ &lt;/LIBRARIES&gt;
266
+ &lt;LIBRARIES&gt;
267
+ &lt;LIBRARY&gt;
268
+ &lt;institution&gt;NYU&lt;/institution&gt;
269
+ &lt;library&gt;BWEB&lt;/library&gt;
270
+ &lt;status&gt;check_holdings&lt;/status&gt;
271
+ &lt;collection&gt;Internet Resources&lt;/collection&gt;
272
+ &lt;callNumber&gt;(HB1 .J55 Electronic access )&lt;/callNumber&gt;
273
+ &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002736245&lt;/url&gt;
274
+ &lt;/LIBRARY&gt;
275
+ &lt;/LIBRARIES&gt;
276
+ &lt;LINKS&gt;
277
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=NYUAD&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A31IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph002736245&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;rft.genre=journal&amp;rft.jtitle=The%20Journal%20of%20behavioral%20economics.&amp;rft.btitle=&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Center%20for%20Business%20and%20Economic%20Research%2C%20Western%20Illinois%20University]&amp;rft.place=Macomb&amp;rft.issn=0090-5720&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph002736245&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;002736245&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
278
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002736245&lt;/backlink&gt;
279
+ &lt;linktorsrc&gt;https://ezproxy.library.nyu.edu/login?url=http://www.sciencedirect.com/science/journal/00905720&lt;/linktorsrc&gt;
280
+ &lt;thumbnail/&gt;
281
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=NYUAD&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A31IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph002736245&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;rft.genre=journal&amp;rft.jtitle=The%20Journal%20of%20behavioral%20economics.&amp;rft.btitle=&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Center%20for%20Business%20and%20Economic%20Research%2C%20Western%20Illinois%20University]&amp;rft.place=Macomb&amp;rft.issn=0090-5720&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;002736245&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
282
+ &lt;linktoholdings&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002736245&lt;/linktoholdings&gt;
283
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph002736245?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
284
+ &lt;/LINKS&gt;
285
+ &lt;/DOC&gt;
286
+ &lt;/DOCSET&gt;
287
+ &lt;/RESULT&gt;
288
+ &lt;searchToken&gt;0&lt;/searchToken&gt;
289
+ &lt;/JAGROOT&gt;
290
+ &lt;/SEGMENTS&gt;</searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
291
+ http_version:
292
+ recorded_at: Fri, 12 Oct 2012 18:00:31 GMT
293
+ recorded_with: VCR 2.2.5