• Hello MLAers! We've re-enabled auto-approval for accounts. If you are still waiting on account approval, please check this thread for more information.

Bridge LocalTalk Cookbook?

Hey all. PowerBook 3400c with new OS 7.6.1 install, looking for the right network/software setup so the PB can scheduled download XML files over HTTPS (eg https://w1.weather.gov/xml/current_obs/KVAY.xml) using built-in ethernet and place them on a classic AppleTalk share so a Mac Plus (6.0.8) with an AirTalk box (PB has AirTalk box also) can get on a schedule.

As a true lightweight, looking for docs on how to make this happen all over.

Thanks!

(Googling is not my friend in this case, all of the search terms I have come-up with are not specific enough).
 
Last edited:
I can't offer docs, but for starters you need a proxy server to translate the https requests to unencrypted http. My fork of macproxy, among others, can do that, so get it running on a Linux machine on your LAN. Then get something like Anarchie, configure it to use the aforementioned proxy server (requires the Internet Config app I think) and try to initiate a transfer of the xml file. If it works, you can automate the process with AppleScript perhaps? Clunky but should work.

Good luck. :)
 
I can't offer docs, but for starters you need a proxy server to translate the https requests to unencrypted http. My fork of macproxy, among others, can do that, so get it running on a Linux machine on your LAN. Then get something like Anarchie, configure it to use the aforementioned proxy server (requires the Internet Config app I think) and try to initiate a transfer of the xml file. If it works, you can automate the process with AppleScript perhaps? Clunky but should work.

Good luck. :)
Very cool. I was under the impression that a 3400c would have (browser+hardware) capability for HTTPS and there was some kind of command/script work that could be done to "wget". Still learning. 🙂
Thanks!
 
I think you have three blockers for https: the absence of valid SSL root certificates in Classic Mac OS (they have long since expired), lack of support for modern SSL protocols like TLS 1.2, and then a user agent (browser) that can handle all of the above.

Perhaps Classilla can get you part of the way?

Anyhow, a web proxy is still your best bet.
 
Back
Top