Re: xml and txt submission on web page

Russ Housley <housley@vigilsec.com> Wed, 13 June 2018 18:32 UTC

Return-Path: <housley@vigilsec.com>
X-Original-To: ietf@ietfa.amsl.com
Delivered-To: ietf@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6C637130F67 for <ietf@ietfa.amsl.com>; Wed, 13 Jun 2018 11:32:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.9
X-Spam-Level:
X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZwLEZQs-y7KT for <ietf@ietfa.amsl.com>; Wed, 13 Jun 2018 11:32:16 -0700 (PDT)
Received: from mail.smeinc.net (mail.smeinc.net [209.135.209.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A38A130F7C for <ietf@ietf.org>; Wed, 13 Jun 2018 11:32:16 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1]) by mail.smeinc.net (Postfix) with ESMTP id C192A300A3E for <ietf@ietf.org>; Wed, 13 Jun 2018 14:32:13 -0400 (EDT)
X-Virus-Scanned: amavisd-new at mail.smeinc.net
Received: from mail.smeinc.net ([127.0.0.1]) by localhost (mail.smeinc.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id mKLCRXP-DhVU for <ietf@ietf.org>; Wed, 13 Jun 2018 14:32:12 -0400 (EDT)
Received: from a860b60074bd.home (pool-71-127-50-4.washdc.fios.verizon.net [71.127.50.4]) by mail.smeinc.net (Postfix) with ESMTPSA id D879B3004FE; Wed, 13 Jun 2018 14:32:12 -0400 (EDT)
Content-Type: text/plain; charset="us-ascii"
Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\))
Subject: Re: xml and txt submission on web page
From: Russ Housley <housley@vigilsec.com>
In-Reply-To: <bb906889-1383-7a1f-9f18-ff67f71424b3@gmail.com>
Date: Wed, 13 Jun 2018 14:32:14 -0400
Cc: IETF <ietf@ietf.org>
Content-Transfer-Encoding: quoted-printable
Message-Id: <9FAE6A35-21E1-4B02-9ECA-4B3BC19517BF@vigilsec.com>
References: <fcee1ad8-255c-5619-1945-bab24c95ca89@gmail.com> <6c352737-991e-c4c2-a104-e7ebfe548009@forfun.net> <4E469EA123CE8A23BCF57C77@PSB> <8f6fc380-85ab-d012-2869-0ea0b821a4c7@gmail.com> <0813D666DD13EF9BB96D0992@PSB> <0e4353ce-72dd-a804-761e-10790d421c3f@gmail.com> <93807EEB-6FF7-447B-8330-85540CC51AAB@vigilsec.com> <bb906889-1383-7a1f-9f18-ff67f71424b3@gmail.com>
To: Alexandre Petrescu <alexandre.petrescu@gmail.com>
X-Mailer: Apple Mail (2.3273)
Archived-At: <https://mailarchive.ietf.org/arch/msg/ietf/ZexESEbRlj57FT7S7l1jxpKy8rI>
X-BeenThere: ietf@ietf.org
X-Mailman-Version: 2.1.26
Precedence: list
List-Id: IETF-Discussion <ietf.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/ietf>, <mailto:ietf-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/ietf/>
List-Post: <mailto:ietf@ietf.org>
List-Help: <mailto:ietf-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/ietf>, <mailto:ietf-request@ietf.org?subject=subscribe>
X-List-Received-Date: Wed, 13 Jun 2018 18:32:18 -0000

Alex:
> 
> I have just tried again: if I submit just the xml then the web page
> complains in red about title and draft name.  If I submit both the xml
> and the txt then it accepts it.
> 
> The complain in red is this:
>> Could not extract a valid draft revision from the upload. To fix this
>> in a text upload, please make sure that the full draft name including
>> revision number appears centered on its own line below the document
>> title on the first page. In an xml upload, please make sure that the
>> top-level <rfc/> element has a docName attribute which provides the
>> full draft name including revision number.

Others have had success submitting just the .xml file.

Looking at your .xml file, you need to remove the ".txt" from the docName as follows:

OLD:

<rfc category="std"
    docName="draft-ietf-ipwave-ipv6-over-80211ocb-23.txt"
    ipr="trust200902">

NEW:

<rfc category="std"
    docName="draft-ietf-ipwave-ipv6-over-80211ocb-23"
    ipr="trust200902">

Russ