From: Mike Taylor Date: Mon, 25 Aug 2003 19:53:33 +0000 (+0000) Subject: failReason is no longer OPTIONAL, as advised by OCLC X-Git-Tag: YAZ.2.0.4~6 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=73dfa31aa3d623a2032525637ac07e78886cd4fd failReason is no longer OPTIONAL, as advised by OCLC --- diff --git a/z39.50/oclcui.asn b/z39.50/oclcui.asn index 4f5e7da..2c7aee7 100644 --- a/z39.50/oclcui.asn +++ b/z39.50/oclcui.asn @@ -2,7 +2,7 @@ UserInfoFormat-oclcUserInformation {Z39-50-userInfoFormat OCLCUserInformation (7)} DEFINITIONS ::= BEGIN --- $Id: oclcui.asn,v 1.2 2003-07-18 22:36:39 mike Exp $ +-- $Id: oclcui.asn,v 1.3 2003-08-25 19:53:33 mike Exp $ -- -- This format is returned from the server at -- fsz3950test.oclc.org:210 @@ -14,12 +14,15 @@ BEGIN -- as an Init diagnostic from fsz3950test.oclc.org:210. Adam further -- removed the SEQUENCE structure, changed failReason to a BOOLEAN and -- deleted diagnosticSetId altogether, to make the ASN.1 conform to --- what's actually returned on the wire. +-- what's actually returned on the wire. Finally, I removed the +-- OPTIONAL on failReason on the advice of OCLC's Keith Neibarger +-- (although he'd also advised me, wrongly, that I +-- could remove the OPTIONAL on dblist). OCLC-UserInformation ::= SEQUENCE { motd [1] IMPLICIT VisibleString, dblist SEQUENCE OF DBName OPTIONAL, - failReason [3] IMPLICIT BOOLEAN OPTIONAL, + failReason [3] IMPLICIT BOOLEAN, code [1] IMPLICIT INTEGER OPTIONAL, text [2] IMPLICIT VisibleString OPTIONAL }