Tom Whitmore | 1 Aug 2011 02:49

Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

Thank you everyone.  I'll let you know how things progress this week.
Tom

-----Original Message-----
From: u2-users-bounces <at> listserver.u2ug.org [mailto:u2-users-bounces <at> listserver.u2ug.org] On
Behalf Of Brian Leach
Sent: Saturday, July 30, 2011 11:43 AM
To: 'U2 Users List'
Subject: Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

Tom

I don't know what '.NET TELNET tool' you refer to - but I wrote a customized terminal emulator in .NET for a
client that makes a connection Telnet/SSL connection to UniVerse on Solaris and tested fine on Linux. 

For the server configuration and details on setting up the secure telnet daemon take a look at my blog (you
can get to it from my website).

As far as the client is concerned, I can't give too much away as I don't own it - it was funded by a customer - but I
can probably share the following if you're tempted to roll your own!

1. for the low level connection I use a SecureTCPClient that wraps an SslStream - here are the salient pieces:

public delegate void SecureConnectionResultsCallback(object sender, SecureConnectionResults args);
    public delegate void ReceivedDataEvent( object sender, string data);
    public delegate void ReceiveErrorEvent( object sender );

    public class SecureTcpState
    {
           public SslStream stream;
(Continue reading)

Bill Brutzman | 1 Aug 2011 21:06

Re: [U2] UniBasic SELECT

Keith:

Victory... 

The "F.ICC" argument was from an open statement...

	Open 'INV.CLASS.CODE'  to  F.ICC  else  null

When the command was changed from

	"SELECT F.ICC...

	To

	Execute "SELECT INV.CLASS.CODE..."

The pesky "SQL+" prompt went away.

Thanks very much indeed for the help.  I appreciate it.

Regards,

--Bill

-----Original Message-----
From: u2-users-bounces <at> listserver.u2ug.org [mailto:u2-users-bounces <at> listserver.u2ug.org] On
Behalf Of Keith Johnson [DATACOM]
Sent: Sunday, July 31, 2011 5:02 PM
To: 'u2-users <at> listserver.u2ug.org'
Subject: Re: [U2] UniBasic SELECT
(Continue reading)

John Thompson | 1 Aug 2011 21:11
Picon

Re: [U2] UniBasic SELECT

I think that SQL prompt only appears if the filename does not exist, or your
VOC pointer is off, etc.

In this case, thats what happened, because you were using the file open
variable instead of the actual filename perhaps?

Sounds like you figured it out :)

On Mon, Aug 1, 2011 at 3:06 PM, Bill Brutzman <billb <at> hkmetalcraft.com>wrote:

> Keith:
>
> Victory...
>
> The "F.ICC" argument was from an open statement...
>
>        Open 'INV.CLASS.CODE'  to  F.ICC  else  null
>
> When the command was changed from
>
>        "SELECT F.ICC...
>
>        To
>
>        Execute "SELECT INV.CLASS.CODE..."
>
> The pesky "SQL+" prompt went away.
>
> Thanks very much indeed for the help.  I appreciate it.
>
(Continue reading)

John Thompson | 1 Aug 2011 22:44
Picon

Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

Another thing to think about is that by default most Linux distro's heavily
restrict telnet.

My first question would be, are your Universe users using telnet or ssh?

If they are using ssh only, then I doubt a telnet system is even installed
on the Linux machine.

If they are using telnet, you might try checking the following files to see
if there are any security restrictions set:

One place might be /etc/hosts.allow AND /etc/hosts.deny
Here is a random blog entry on tcpwrappers (One package that can restrict
telnet access)
http://linuxhelp.blogspot.com/2005/10/using-tcp-wrappers-to-secure-linux.html

I think also many linux distro's use xinetd (instead of inetd) to run their
telnet daemon.

So, there may be some restrictions there also.
I think the config file is called:
xinetd.conf
http://www.xinetd.org/sample.shtml

>From a root prompt... do a:
find / -name xinetd.conf

Other than that, I've never done a .NET telnet connection, but, I have
worked with configuring telnet on Linux.

(Continue reading)

Tom Whitmore | 1 Aug 2011 23:22

Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

Hi,
At this point, we are using an internal development server and our Admin does have SSL, and SSH, turned on and
it works with our terminal emulator.  Changing from SSH to SSL Telnet won't be a problem with our customers. 
The critical piece is that it must be an encrypted pipe.

Thanks for the thought.
Tom
RATEX Business Solutions

-----Original Message-----
From: u2-users-bounces <at> listserver.u2ug.org [mailto:u2-users-bounces <at> listserver.u2ug.org] On
Behalf Of John Thompson
Sent: Monday, August 01, 2011 4:44 PM
To: U2 Users List
Subject: Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

Another thing to think about is that by default most Linux distro's heavily restrict telnet.

My first question would be, are your Universe users using telnet or ssh?

If they are using ssh only, then I doubt a telnet system is even installed on the Linux machine.

If they are using telnet, you might try checking the following files to see if there are any security
restrictions set:

One place might be /etc/hosts.allow AND /etc/hosts.deny Here is a random blog entry on tcpwrappers (One
package that can restrict telnet access) http://linuxhelp.blogspot.com/2005/10/using-tcp-wrappers-to-secure-linux.html

I think also many linux distro's use xinetd (instead of inetd) to run their telnet daemon.

(Continue reading)

Brian Leach | 2 Aug 2011 00:34
Picon

Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

John

Universe ships with its own secure telnet daemon for *nix running telnet over ssl (uvtelnetd). That's what
you need to configure.

Brian

Sent from my HTC

----- Reply message -----
From: "John Thompson" <jthompson333 <at> gmail.com>
Date: Mon, Aug 1, 2011 21:44
Subject: [U2] Using SSL, with .Net to make a connection to Linux/Unix
To: "U2 Users List" <u2-users <at> listserver.u2ug.org>

Another thing to think about is that by default most Linux distro's heavily
restrict telnet.

My first question would be, are your Universe users using telnet or ssh?

If they are using ssh only, then I doubt a telnet system is even installed
on the Linux machine.

If they are using telnet, you might try checking the following files to see
if there are any security restrictions set:

One place might be /etc/hosts.allow AND /etc/hosts.deny
Here is a random blog entry on tcpwrappers (One package that can restrict
telnet access)
http://linuxhelp.blogspot.com/2005/10/using-tcp-wrappers-to-secure-linux.html
(Continue reading)

Tom Whitmore | 2 Aug 2011 14:24

Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

Actually, Universe ships a telnet for Window but not *nix.  The reason, according to U2 support, is that *nix
provides telnet and Windows does not.
Tom

-----Original Message-----
From: u2-users-bounces <at> listserver.u2ug.org [mailto:u2-users-bounces <at> listserver.u2ug.org] On
Behalf Of Brian Leach
Sent: Monday, August 01, 2011 6:34 PM
To: John Thompson; u2-users <at> listserver.u2ug.org
Subject: Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

John

Universe ships with its own secure telnet daemon for *nix running telnet over ssl (uvtelnetd). That's what
you need to configure.

Brian

Sent from my HTC

----- Reply message -----
From: "John Thompson" <jthompson333 <at> gmail.com>
Date: Mon, Aug 1, 2011 21:44
Subject: [U2] Using SSL, with .Net to make a connection to Linux/Unix
To: "U2 Users List" <u2-users <at> listserver.u2ug.org>

Another thing to think about is that by default most Linux distro's heavily restrict telnet.

My first question would be, are your Universe users using telnet or ssh?

(Continue reading)

Martin Braid | 2 Aug 2011 14:56

[U2] /GC at SBXA 6.0.5.2501 not compiling

ALLOW.PDF is unassigned in the generated code.

Simple to fix, but annoying.

DMGC   GC.PD.R is not replacing \ALLOW.PDF\ with the result.

Anyone know where this is coming from?

Does not seem to be in DMSYSDEFN  GC.CONTROL

Not from PD.R <27,11>

Not from RD <37,3>
--------------------------------------------------------

Epicor Software (UK) is a limited company registered in England & Wales.  
Registration Number: 2338274.   Registered Office:  Osborne Clarke OWA, One London Wall, London EC2Y 5EB 
This e-mail is for the use of the intended recipient(s) only. If you have received this e-mail in error,
please notify the sender immediately and then delete it. If you are not the intended recipient, you must
not use, disclose or distribute this e-mail without the author's prior permission. We have taken
precautions to minimize the risk of transmitting software viruses, but we advise you to carry out your own
virus checks on any attachment to this message. We cannot accept liability for any loss or damage caused by
software viruses. Any views and/or opinions expressed in this e-mail are of the author only and do not
represent the views of Epicor Software (UK) Limited or any other company within its group.

This message has been scanned for malware by Websense. www.websense.com
_______________________________________________
U2-Users mailing list
U2-Users <at> listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
(Continue reading)

Steve Romanow | 2 Aug 2011 15:18
Picon
Gravatar

[U2] Why Pick Eclipse?

Someone on G+ had a post that summed up some of the angst I have
regarding Eclipse.  I think its the overbearing framework followed by
thin plugins.

http://nfarina.com/post/8239634061/ios-to-android

Eclipse has some strong points, but I think some of the apps (plugins)
I have tried had less functionality that free-standing competing apps.

Some examples:

Editor - pydev, bdt, eclim, {insert other editing widget for eclipse here} vs
    Any product by JetBrains, Emacs, VIM, Textmate, heck UltraEdit on win32.

For pure editing, all of these competitors have tons of features they
bring to the table.

The major thing BDT and others bring to the table are using u2 rpc and
svn.  Most of the editors I list also have a network layer, or just
using plain Samba on your dir file full of u2 src code.  There are
also dozens of ways to use git, svn, hg, etc.
_______________________________________________
U2-Users mailing list
U2-Users <at> listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

Brian Leach | 2 Aug 2011 16:05
Picon

Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix

cd `cat /.uvhome`/bin
ls -ls uvtelnetd

But you only need this one is if you want to use their own secure telnet. 

Brian

Sent from my ASUS Eee Pad

Tom Whitmore <tewhitmore <at> ratex.com> wrote:

>Actually, Universe ships a telnet for Window but not *nix.  The reason, according to U2 support, is that
*nix provides telnet and Windows does not.
>Tom
>
>-----Original Message-----
>From: u2-users-bounces <at> listserver.u2ug.org [mailto:u2-users-bounces <at> listserver.u2ug.org] On
Behalf Of Brian Leach
>Sent: Monday, August 01, 2011 6:34 PM
>To: John Thompson; u2-users <at> listserver.u2ug.org
>Subject: Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix
>
>John
>
>Universe ships with its own secure telnet daemon for *nix running telnet over ssl (uvtelnetd). That's
what you need to configure.
>
>Brian
>
>Sent from my HTC
(Continue reading)


Gmane