1) I have the GemStone server running.
2) I have a Pharo 1.0 image with the gemStone Tools loaded.
3) I could succesfully login to the server after creating a session.
现在,我在另一个"abc.st"
中完成了Pharo-Image
个文件。
我找不到任何可以帮助filein
使用gemStone
工具gemStone
{{1}}服务器的界面。
我错过了什么吗?
答案 0 :(得分:2)
使用GemTools将代码传输到GemStone的首选机制是使用Monticello软件包。如果您不熟悉使用Monticello,请阅读Pharo By Example Monticello chapter(pdf)。这里描述的基本原理可以应用于Pharo和GemStone。
话虽如此,您可以通过执行以下操作来提交.st文件:
(BinaryOrTextFile openReadOnServer: 'full path to abc.st')
fileIn;
close.
戴尔