Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

Remote Compilation
Our company develops Lemo Cobol IDE and we are going to implement
Remote Compilation. This feature allows to compile the sources on a
remote server using network.

We would like to know how you use remote compilation.

We have two different scenarios for this purpose.

1. FTP + TelNet. User specifies parameters of FTP and TelNet
connections. IDE copies files through FTP to server. IDE launches
compiler on the server using telnet and shows output log. IDE copies
binary files from server to client through FTP.

2. Compilation Server. Admin launches special program on the server-
Compilation Server. The IDE communicates with the Compilation Server.
The IDE passes sources to the Compilation Server. The server compiles
the sources and passes the output log to IDE. IDE shows the log.

What do you think about these scenarios?

Thanks
Sergey Grigorchuk
LemoSoft Company
http://www.lemosoft.com

Report this thread to moderator Post Follow-up to this message
Old Post
Sergey Grigorchuk
08-26-04 08:55 PM


Re: Remote Compilation
Sergey Grigorchuk wrote:
> Our company develops Lemo Cobol IDE and we are going to implement
> Remote Compilation. This feature allows to compile the sources on a
> remote server using network.
>
> We would like to know how you use remote compilation.
>
> We have two different scenarios for this purpose.
>
> 1. FTP + TelNet. User specifies parameters of FTP and TelNet
> connections. IDE copies files through FTP to server. IDE launches
> compiler on the server using telnet and shows output log. IDE copies
> binary files from server to client through FTP.
>
> 2. Compilation Server. Admin launches special program on the server-
> Compilation Server. The IDE communicates with the Compilation Server.
> The IDE passes sources to the Compilation Server. The server compiles
> the sources and passes the output log to IDE. IDE shows the log.
>
> What do you think about these scenarios?
>
> Thanks
> Sergey Grigorchuk
> LemoSoft Company
> http://www.lemosoft.com

Sounds to me like you are inventing RJE batch.  That's the way I learnt
Cobol in 1967, and it worked quite well.
;< )
Donald


Report this thread to moderator Post Follow-up to this message
Old Post
Donald Tees
08-26-04 08:55 PM


Re: Remote Compilation
In article <B63Xc.22052$DG.1022593@news20.bellglobal.com>,
Donald Tees  <donald_tees@sympatico.ca> wrote:
>Sergey Grigorchuk wrote: 

[snip]

>Sounds to me like you are inventing RJE batch.  That's the way I learnt
>Cobol in 1967, and it worked quite well.

Everything old is new again, aye... but nowadays they have it easy, they
get to use telephone or telnet connections instead of tin-cans and string.

DD


Report this thread to moderator Post Follow-up to this message
Old Post
docdwarf@panix.com
08-26-04 08:55 PM


Re: Remote Compilation
Tin cans and a string worked perfectly fine until you got a knot in your
string.


PatH...always seemed to be the "knot unraveler"

docdwarf@panix.com wrote:
> In article <B63Xc.22052$DG.1022593@news20.bellglobal.com>,
> Donald Tees  <donald_tees@sympatico.ca> wrote:
> 
>
>
> [snip]
>
> 
>
>
> Everything old is new again, aye... but nowadays they have it easy, they
> get to use telephone or telnet connections instead of tin-cans and string.
>
> DD
>


Report this thread to moderator Post Follow-up to this message
Old Post
Pat Hall
08-26-04 08:55 PM


Re: Remote Compilation
In article <10ipivlqfrec431@corp.supernews.com>,
Pat Hall  <phall@notsospam.certcoinc.com> wrote:
>Tin cans and a string worked perfectly fine until you got a knot in your
>string.

How many programmers does it take to change a light-bulb?

None... that's a hardware problem.

>
>
>PatH...always seemed to be the "knot unraveler"

Give my regards to Gordius, Alexander.

DD

>
>docdwarf@panix.com wrote: 
>



Report this thread to moderator Post Follow-up to this message
Old Post
docdwarf@panix.com
08-26-04 08:55 PM


Re: Remote Compilation
sng@lemosoft.com (Sergey Grigorchuk) wrote

> Our company develops Lemo Cobol IDE and we are going to implement
> Remote Compilation. This feature allows to compile the sources on a
> remote server using network.

> 1. FTP + TelNet. User specifies parameters of FTP and TelNet
> connections.

I would hope that you use ssh for these.

Report this thread to moderator Post Follow-up to this message
Old Post
Richard
08-26-04 08:55 PM


Re: Remote Compilation
riplin@Azonic.co.nz (Richard) wrote in message
>
> I would hope that you use ssh for these.

We are going to use both SSH and TelNet.

Report this thread to moderator Post Follow-up to this message
Old Post
Sergey Grigorchuk
08-26-04 08:55 PM


Re: Remote Compilation
In article <a6be1ec.0408260328.6e561242@posting.google.com>, sng@lemosoft.com (Sergey Grigo
rchuk) writes:
> riplin@Azonic.co.nz (Richard) wrote in message 
>
> We are going to use both SSH and TelNet.

SSH / SCP is a far better solution than anything involving FTP (which
is insecure and requires multiple connections, a complication for
firewalls) or Telnet (which is insecure and a rather complex
protocol).  You don't say whether you're planning on implementing the
protocols yourself or driving existing clients.  The former is a lot
of work for little benefit, and the latter is fraught with compatibility
and control issues.

If you have some valid reason for using anything other than SSH, then
the best alternative is probably HTTP (over SSL in any environment
where communications security is desired).  Transferring files with
one protocol and then manipulating them with another has historically
been a poor route.  A simple HTTP PUT of a file, or collection of
files (as a zip archive, say) to a CGI program that handles the
processing (compilation or whatever) and returns the results could be
implemented very simply using any of the major HTTP servers.  The
client can be implemented with a helper library such as libwww; if you
want SSL support (not a bad idea), there's OpenSSL.

--
Michael Wojcik                  michael.wojcik@microfocus.com

This is a "rubbering action game," a 2D platformer where you control a
girl equipped with an elastic rope with a fishing hook at the end.
-- review of _Umihara Kawase Shun_ for the Sony Playstation

Report this thread to moderator Post Follow-up to this message
Old Post
Michael Wojcik
08-26-04 08:55 PM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

Cobol archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 04:29 PM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.