Re: HttpFile async reading

2003-03-14 Thread William Bardwell
read from the url. {output "Got data: ", e.data} } } } } William Bardwell [EMAIL PROTECTED] *** To unsubscribe from this list, send a mail to: mailto:[EMAIL PROTECTED] To contact a human list administrator

Re: HttpFile async reading

2003-03-15 Thread William Bardwell
ral you will want to use InputStream-of.async-read. > {output "Got data: ", {buf.to-String}, " -- Chars read: ", > n} > } > } > } William Bardwell [EMAIL PROTECTED] *** To unsubscri

Re: Tip: Private persistent data & URI's

2003-09-28 Thread William Bardwell
pplets, it treats them as different applets as a conservative choice...you can override that with the shared persistent data way of doing things. (Shared ones are not very different from private ones, they just have a set URL.) William Bardwell [EMAIL PROTECTED] *

Re: Creating a Cursor

2003-11-02 Thread William Bardwell
} } {for c key i in my-cursor-array do {map.set-offset i, c} } William Bardwell [EMAIL PROTECTED] *** To unsubscribe from this list, send a mail to: mailto:[EMAIL PROTECTED] To contact a human list administrator, send a mail to: mailto:[EMAIL PROTECTED

Re: Http login client

2004-01-15 Thread William Bardwell
and submiting a form (using HttpFormData). You may also need to actually request the login page to set up session cookies or to get a server name (from being redirected from the public name to a particular server, although yahoo doesn't seem to do that.) William

Re: Http login client

2004-01-16 Thread William Bardwell
.I would watch exactly what the browser does when you do the login sequence from a browser, using a packet sniffer. HTML can't effect the request headers except for with cookies that were sent with the HTML, but javascript could be doing weird stuff... I would expect al

Re: Http login client

2004-01-19 Thread William Bardwell
e-type = "application/x-www-from-urlencoded" (and the class constant HttpFormData.urlencoded-mime-type is provided to avoid typing mistakes... so mime-type = HttpFormData.urlencoded-mime-type) or set the mime-type setter after creating the HttpFormData. William Bardwell [EMAIL PROTECTED]

Re: http-read-open www.curl.com?

2004-03-03 Thread William Bardwell
hoices for that are odd.) So: {({{url "http://www.curl.com/index.php"}.instantiate-File} asa HttpFile).http-read-open} William Bardwell [EMAIL PROTECTED] *** To unsubscribe from this list, send a mail to: mailto:[EMAIL PROTECTED] To contact a human list adm

Re: Session management

2004-04-27 Thread William Bardwell
loaded before any applet code is run, and would have the same problem.) Some work to solve this completly is in progress for a future release. (Contact support if this problem is critical for you right now.) William Bardwell [EMAIL PROTECTED] *** To unsubscri

Re: Can I get the last modified datetime of a local directory?

2005-05-25 Thread William Bardwell
e} asa LocalFile).info}.modified William Bardwell [EMAIL PROTECTED] *** To unsubscribe from this list, send a mail to: mailto:[EMAIL PROTECTED] To contact a human list administrator, send a mail to: mailto:[EMAIL PROTECTED] To recieve a list of other options for thi

Re: about the architecture of applets and curl runtime

2006-06-18 Thread William Bardwell
pplets runs separatelly like a multithread application? Yes, each sub-applet runs in it's own thread. There are occasions like compiling when only one thread at a time can do a particular activity. William Bardwell [EMAIL PROTECTED] *** To unsubscrib

Re: Can't communicate between applets through socket

2006-07-11 Thread William Bardwell
{sender.connect} > > let output:DataSocketByteOutputStream = {sender.to-OutputStream} > > {for i:int = 0 to 6 do > {output.write-one bv[i]} > } > > {sender.shutdown DataSocketShutdownOption.input-output} I don't know what you are hoping to do

Re: Can't communicate between applets through socket

2006-07-12 Thread William Bardwell
on.input}, but I am not sure that that call always does something. {close} also calls {shutdown DataSocketShutdownOption.input-output} for you. But you should always call {close} on both the DataTCPSocket and the streams that you made from it when you are totally done with the socket. (And you can c

Re: Can't communicate between applets through socket

2006-07-12 Thread William Bardwell
.) (Thanks to BenH for the samples.) William Bardwell [EMAIL PROTECTED] {curl 4.0 applet} {curl-file-attributes character-encoding = "utf8"} {include "ipc.scurl"} || For creating sub-applets. {import * from CURL.ENGINE.BROWSER} || Allow graphical projecting of a child applet (

Re: Where I can search the help regarding the CURL.REMOTE?

2007-03-21 Thread William Bardwell
n tell it to change the colors of the child applets, and see the child applets talking to the parent. William Bardwell [EMAIL PROTECTED] {curl 4.0, 5.0 applet} {curl-file-attributes character-encoding = "utf8"} {include "ipc.scurl"} || For creating sub-applets. {import

Re: About ActiveX performance in Curl

2008-03-10 Thread William Bardwell
eXObject set {with-1.Cells self.w_lngRDLine, 10}.Value = {value let (ret:String, replacement-ymd:String) = {substrDateChange rd-value.KAISHI_YMD, "g#e.#m.#d"} set rd-value.KAISHI_YMD = replacement-ymd ret } William Bardwell [EMAIL PROTECTED]