Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Append/Restart not permitted

 [1/6] from: tim::johnsons-web::com at: 26-Nov-2000 11:10


Hi Write/append causes a failure when I attempt to append to a remote file. Full reads and writes are performed successfully: i.e. : ;where blk is a block of test: write/lines full-path blk ;executes successfully read/lines full-path ; works too! write/append full-path "this is a test" ; generates the error message below: ** User Error: Server error: tcp 451 test.txt: Append/Restart not permitted, try again.. ** Where: write/append full-path "this is a test" any ideas, also would be helpful to know if code 451 is a standard tcp error or if it is rebol-originated. Thanks! Tim

 [2/6] from: holger:rebol at: 26-Nov-2000 18:06


On Sun, Nov 26, 2000 at 11:10:42AM -0900, Tim Johnson wrote:
> Hi > Write/append causes a failure when I attempt to append to a remote file.
<<quoted lines omitted: 11>>
> error or > if it is rebol-originated.
It is an error from the application layer protocol, i.e. FTP, HTTP, SMTP etc. If you tried to use write/append through ftp then this error indicates that the ftp server does not support appending data to an existing file. -- Holger Kruse [holger--rebol--com]

 [3/6] from: tim:johnsons-web at: 26-Nov-2000 18:04


Thanks Holger: ========== I was hoping that you would respond. That is consitent with the fact that this works on other servers that I have tested. I'm glad to have your input! ...................................................................................... Is it possible that you could point me towards further information on decoding the error messages coming back from rebol on TCP issues? ...................................................................................... I'm setting up an online class on programming using rebol as the source language. I'd like to have as many TCP questions covered at the course level..... Regards Tim ===== Holger Kruse wrote:

 [4/6] from: chris:starforge:demon at: 27-Nov-2000 10:21


Tim Johnson wrote:
> Is it possible that you could point me towards further information > on decoding the error messages coming back from rebol > on TCP issues?
You could check the RFCs. RFP959 covers FTP IIRC. Chris -- New sig in the works Explorer2260 Designer and Coder http://www.starforge.co.uk

 [5/6] from: holger:rebol at: 27-Nov-2000 9:07


On Sun, Nov 26, 2000 at 06:04:30PM -0900, Tim Johnson wrote:
> Is it possible that you could point me towards further information > on decoding the error messages coming back from rebol > on TCP issues?
Those error codes are related to the individual application protocol, in this case FTP. For an explanation of error codes you need to look at the RFCs for FTP. The most important one for FTP is RFC 959. RFCs are available from ftp://ftp.isi.edu/in-notes/ or through the search engine at http://www.rfc-editor.org -- Holger Kruse [holger--rebol--com]

 [6/6] from: tim:johnsons-web at: 27-Nov-2000 8:43


Hello Holger and Chris Thank You Both! :) Regards Tim Holger Kruse wrote:

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted