Re: [U2] Seeing error messages from UniObjects subroutines

2007-04-19 Thread Ray Wurlod
They are usually accessible via the Error property on the Session object.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Horribly Overflowed Dynamic File

2007-04-19 Thread Ray Wurlod
I expect you might find that ANALYZE.FILE reports little, if any, overflow.  
The reason for this is that what you have is oversized records - that is, 
records that are larger than the LARGE.RECORD parameter.  Such records have 
most of their data portion stored in OVER.30, and only the key and a bit of the 
data (maybe none) in the group buffer.

Dynamic hashed files are not really intended for records of this size, but it 
explains why you will be recovering little disk space.
You might like to use RESIZE filename * * * USING workdirpath to recover as 
much free space as possible.

I think you would be better to opt for a static hashed file, where the group 
size is much more tunable.  A separation of 16, or even 32, will give you 
larger groups, in which you can store these large records more efficiently.  
The math to figure out how many groups is straightforward enough - you may even 
remember how to do it.  Allow for some headroom - say 20%.

Groups = (bytes_to_store) / (bytes_per_group * 80%)

where bytes_to_store = (record_count * (average_record_size + 14))
and   bytes_per_group = (separation) * 512 bytes
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Multivalue Column

2007-04-19 Thread Ray Wurlod
Think of a multi-valued column as a single-column nested table.  If you prefer, 
a cell whose data type is 'table'.  This is a simple enough concept in XML; the 
Pick model has had it since the 1960's!

The sum of all elements in a multi-valued column is given by the SUM() function 
if there are no sub-values, or by the SUMMATION() function if there are 
sub-values.  A sub-value is the next level of division; where a field (cell) 
can contain multiple values, each of those values can contain multiple 
sub-values.

A multi-valued field is already an array - a dynamic array.  You can get the 
nth value from a multi-valued field using angle bracket notation, for example 
StageList1,n - which means the nth value in the first field of StageList.  
Statements in the BASIC programming language exist for converting between 
dynamic arrays and dimensioned arrays (MATPARSE/MATBUILD), between dynamic 
arrays and Select Lists (READLIST/FORMLIST), and between dynamic arrays and 
delimited strings (CONVERT).

It is also possible to have associated multi-valued columns in which a 
one-to-one relationship is preserved between the values in the fields in the 
association.  Think of this as a multi-column nested table.  Again it is an 
easy concept to represent using that new kid on the block, XML.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Garbage Characters

2007-04-19 Thread Allen Bell
It could be that U2 Device licensing turned on and are not using an 
Enterprise version of U2. Accuterm will send a handshake to negotiate 
the device licensing issues that will appear as several characters on 
your screen if you are not using a device licensed equipped version of 
U2. This also happens if you have disconnected an reconnected because U2 
only recognizes the handshake when you first connect.

To check for the device licensing option click on the Accuterm menu bar, 
Tools, Select settings from the drop down menu, then the Connection 
tab of the multi-tabbed screen. Click on the Advanced button and see 
if U2 Device Licensing is checked.

Note: You must have a session open to get to this option screen.



John Hester wrote:
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Joseph Ruiz
 Sent: Wednesday, April 18, 2007 8:01 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Garbage Characters

Sometimes when I open an Accuterm 2k2 session and start
 A program and I need to back space I get garbage characters.
 Does anyone have any idea how to solve this problem?
 

 Is this happening after you've already logged in?  Assuming this is
 linux, the following added to your .bash_profile will probably correct
 it:

 if tty --quiet; then
 stty erase '^H'
 fi

 If it's happening while you're attempting to log in, and you're
 telnetting in, and this is a linux server, your only option is to press
 the key sequence that login will interpret as a back space.  It's
 ctrlbackspace for me when using VT220 or ADDS A2 emulation through
 Accuterm.  It may be ctrlH or something else depending on your
 emulation.  This is due to the limitations of the linux login program,
 and AFAIK there is no way around it other than to authenticate with a
 service that doesn't call login, like SSH.

 -John
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Wintegrate Scripting for Images

2007-04-19 Thread Russ Watson
Hi Craig

Look at WIN.BKIMAGE and WIN.BKDEMO in WIN.PROGS

Russ Watson
Asynchron Systems Inc.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Craig Bennett
Sent: Wednesday, April 18, 2007 8:13 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Wintegrate Scripting for Images

Hi All,

does anyone know if Wintegrate can be scripted to change the background 
image at run time?

I want to display a scanned image for behind a data entry screen.


regards,


Craig
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UniData Overflowed Dynamic File

2007-04-19 Thread Jeffrey Butera
Interesting this thread appeared today.

I too was going to post about a dynamic file on the Unidata (HPux) side of 
life.  Here's what I see at the OS level:

-rwxrwx---   1 lpradm users  27377664 Apr 18 16:53 dat001
-rwxrwx---   1 lpradm users  131825664 Apr 18 05:43 idx001
-rwxrwx---   1 lpradm users  143419392 Apr 18 16:53 over001

Am I correct in assuming that having an overXXX file that's some 5 times 
larger than the datXXX file isn't a good thing?


-- 
Jeff Butera, Ph.D.
Administrative Systems
Hampshire College
[EMAIL PROTECTED]
413-559-5556

Daddy, you're not fat - you're growing like me!
Catherine Butera
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Horribly Overflowed Dynamic File

2007-04-19 Thread Dan Fitzgerald
The one thing that ANALYZE.FILE will show is MINIMUM.MODULUS. That's
probably not the problem here, but it's surprising how many 500Mb files with
a minimum modulus of 1 are out there. 

On the sep of a static file, there are some great articles on file sizing by
Mark Baldridge, in which he a) benchmarks file I/O at various seps, and b)
teaches us how to do it for ourselves. You can find them in UV Tech Connect.
Part I is here:

http://www-128.ibm.com/developerworks/edu/dm-dw-dm-0512baldridge-i.html




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ray Wurlod
Sent: Thursday, April 19, 2007 2:44 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Horribly Overflowed Dynamic File

I expect you might find that ANALYZE.FILE reports little, if any, overflow.
The reason for this is that what you have is oversized records - that is,
records that are larger than the LARGE.RECORD parameter.  Such records have
most of their data portion stored in OVER.30, and only the key and a bit of
the data (maybe none) in the group buffer.

Dynamic hashed files are not really intended for records of this size, but
it explains why you will be recovering little disk space.
You might like to use RESIZE filename * * * USING workdirpath to recover as
much free space as possible.

I think you would be better to opt for a static hashed file, where the group
size is much more tunable.  A separation of 16, or even 32, will give you
larger groups, in which you can store these large records more efficiently.
The math to figure out how many groups is straightforward enough - you may
even remember how to do it.  Allow for some headroom - say 20%.

Groups = (bytes_to_store) / (bytes_per_group * 80%)

where bytes_to_store = (record_count * (average_record_size + 14))
and   bytes_per_group = (separation) * 512 bytes
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread Baker Hughes
You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] BarCode Printing

2007-04-19 Thread Mark Waldron
Having an issue with printing 3of9 Barcode to HP printers.  We're on
Wintel UV 10.3. Using a subroutine that came off this group. The  job
works fine going directly to the printer but does not work sending to
HOLD first and then to the printer.  Were using NFMT always on the
SETPTR.  I looked at help for SETPTR and saw something about RAW but
haven't tried it as I don't know what else that may effect.
Thanks in advance.

Mark Waldron
Director of Information Systems
City of Salem, Va
Phone  (540) 375-3099
Email  [EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] XML Namespaces in XDOM API

2007-04-19 Thread brian
Hi

I'm using the XDOM API in UniVerse (sucker for punishment eh) but I've hit a 
problem. I need to construct an XML document that uses namespaces e.g.

myname:booking xmlns:myname=http://blah; ...

I can't seem to find any way to specify the namespace when creating a new node. 
If I try I just get a blank document returned. If I don't try to add the 
namespace the document is returned correctly formatted.

Brian
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


SV: [U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread bjorn.eklund
Sun has the Sun java System Identity Manager.

http://catalog.sun.com/productinfo.xml?site=SE_SWEcatalogue=FCsegment=FC_Ritem=FC_SC_CATgroup=2014fid=5136id=13394



-Ursprungligt meddelande-
Fren: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Baker Hughes
Skickat: den 19 april 2007 15:49
Till: u2-users@listserver.u2ug.org
Dmne: [U2] Single Signon for U2 - Identity Management ?


You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread Les Hewkin
Hi,

Are you looking for something like a CITRIX server?
With CITRIX you publish to users the applications they are allowed to
have.
We run Wintegrate, word ... Etc as well as our VB apps from just one
place. 


Les Sherlock Hewkin 
Project Manager - Financial Systems 
01604 592289 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Baker Hughes
Sent: 19 April 2007 14:49
To: u2-users@listserver.u2ug.org
Subject: [U2] Single Signon for U2 - Identity Management ?

You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

html
head
meta http-equiv=Content-type content=text/html; charset=UTF-8
/head
body
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN 
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This e-mail and any 
attachments are confidential and intended solely for the use of the addressee 
only. If you have received this message in error, you must not copy, distribute 
or disclose the contents; please notify the sender immediately and delete the 
message. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN 
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This message is 
attributed to the sender and may not necessarily reflect the view of Travis 
Perkins plc or its subsidiaries (Travis Perkins). Agreements binding Travis 
Perkins may not be concluded by means of e-mail communication. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN 
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'E-mail transmissions are 
not secure and Travis Perkins accepts no responsibility for changes made to 
this 
message after it was sent. Whilst steps have been taken to ensure that this 
message is virus free, Travis Perkins accepts no liability for infection and 
recommends that you scan this e-mail and any attachments. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN 
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'Part of Travis Perkins 
plc. Registered Office: Lodge Way House, Lodge Way, Harlestone Road, 
Northampton, NN5 7UG. /SPAN/P
/BODY
/HTML
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [ad] XLr8 Editor Update

2007-04-19 Thread daverch
U2logic has released a new version of our free XLr8 Editor for Unidata and
Universe.  Version 1.1.5.2 is available for download using Eclipse update
manager.

One of the new features is showing your compile errors with marks.  For
example, on line 243 you have an error the editor shows you with a red X.
If you turn on Show differences in overview ruler you can then easily
click from error to error.

For those of you who have not tried our free editor, go to
www.u2logic.com/downloads.html for instructions on how to get the most
popular Eclipse based editor for Universe and Unidata.

Thanks,
U2Team
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread Baker Hughes
Les,

It's been a *few* years since I focused more on network and desktop
support, but aren't you talking more about desktop delivery with the
Citrix application server?  Whereas, I'm looking for an IDM solution to
authenticate a User and give them access to the Enterprise assets they
have permissions to.

These are related, but different.

-Baker

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Les Hewkin
Sent: Thursday, April 19, 2007 10:18 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Single Signon for U2 - Identity Management ?

Hi,

Are you looking for something like a CITRIX server?
With CITRIX you publish to users the applications they are allowed to
have.
We run Wintegrate, word ... Etc as well as our VB apps from just one
place. 


Les Sherlock Hewkin
Project Manager - Financial Systems
01604 592289 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Baker Hughes
Sent: 19 April 2007 14:49
To: u2-users@listserver.u2ug.org
Subject: [U2] Single Signon for U2 - Identity Management ?

You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

html
head
meta http-equiv=Content-type content=text/html; charset=UTF-8
/head body P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This e-mail and
any attachments are confidential and intended solely for the use of the
addressee only. If you have received this message in error, you must not
copy, distribute or disclose the contents; please notify the sender
immediately and delete the message. /SPAN/P P style=MARGIN-TOP:
0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This message is
attributed to the sender and may not necessarily reflect the view of
Travis Perkins plc or its subsidiaries (Travis Perkins). Agreements
binding Travis Perkins may not be concluded by means of e-mail
communication. /SPAN/P P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM:
0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'E-mail
transmissions are not secure and Travis Perkins accepts no
responsibility for changes made to this message after it was sent.
Whilst steps have been taken to ensure that this message is virus free,
Travis Perkins accepts no liability for infection and recommends that
you scan this e-mail and any attachments. /SPAN/P P
style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'Part of Travis
Perkins plc. Registered Office: Lodge Way House, Lodge Way, Harlestone
Road, Northampton, NN5 7UG. /SPAN/P /BODY /HTML
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Garbage Characters

2007-04-19 Thread John Hester
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Allen Bell
 Sent: Thursday, April 19, 2007 3:40 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Garbage Characters
 
 It could be that U2 Device licensing turned on and are not using an 
 Enterprise version of U2. 

Yes, now that I re-read the original post, that explanation makes more
sense than a problem with backspace.

 Sometimes when I open an Accuterm 2k2 session and start
  A program and I need to back space I get garbage characters.

You assumed a period after back space where I assumed a comma.
Totally changes the meaning.  They key thing I missed, though, was
sometimes.  If backspace were broken, it would be always.

-John
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread Baker Hughes
Thanks Bjorn,

Do you have any experience with this, with a MV DB server? 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, April 19, 2007 10:02 AM
To: u2-users@listserver.u2ug.org
Subject: SV: [U2] Single Signon for U2 - Identity Management ?

Sun has the Sun java System Identity Manager.

http://catalog.sun.com/productinfo.xml?site=SE_SWEcatalogue=FCsegment=
FC_Ritem=FC_SC_CATgroup=2014fid=5136id=13394



-Ursprungligt meddelande-
Fren: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Baker Hughes
Skickat: den 19 april 2007 15:49
Till: u2-users@listserver.u2ug.org
Dmne: [U2] Single Signon for U2 - Identity Management ?


You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread Charles Barouch

All,
  I *believe* Baker is looking to have people put in their User ID  
Password exactly once, and not have to re-enter it for each process 
(UniVerse, E-mail, Mapped Directories, etc.). Basicly, he wants logging 
on in the morning to preclude having to even think about identity until 
you log off.


   - Chuck Speaking for Baker, Even Though He's Here To Speak For 
Himself Barouch


Baker Hughes wrote:

Les,

It's been a *few* years since I focused more on network and desktop
support, but aren't you talking more about desktop delivery with the
Citrix application server?  Whereas, I'm looking for an IDM solution to
authenticate a User and give them access to the Enterprise assets they
have permissions to.

These are related, but different.

-Baker

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Les Hewkin
Sent: Thursday, April 19, 2007 10:18 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Single Signon for U2 - Identity Management ?

Hi,

Are you looking for something like a CITRIX server?
With CITRIX you publish to users the applications they are allowed to
have.
We run Wintegrate, word ... Etc as well as our VB apps from just one
place. 



Les Sherlock Hewkin
Project Manager - Financial Systems
01604 592289 



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Baker Hughes
Sent: 19 April 2007 14:49
To: u2-users@listserver.u2ug.org
Subject: [U2] Single Signon for U2 - Identity Management ?

You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

html
head
meta http-equiv=Content-type content=text/html; charset=UTF-8
/head body P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This e-mail and
any attachments are confidential and intended solely for the use of the
addressee only. If you have received this message in error, you must not
copy, distribute or disclose the contents; please notify the sender
immediately and delete the message. /SPAN/P P style=MARGIN-TOP:
0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This message is
attributed to the sender and may not necessarily reflect the view of
Travis Perkins plc or its subsidiaries (Travis Perkins). Agreements
binding Travis Perkins may not be concluded by means of e-mail
communication. /SPAN/P P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM:
0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'E-mail
transmissions are not secure and Travis Perkins accepts no
responsibility for changes made to this message after it was sent.
Whilst steps have been taken to ensure that this message is virus free,
Travis Perkins accepts no liability for infection and recommends that
you scan this e-mail and any attachments. /SPAN/P P
style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'Part of Travis
Perkins plc. Registered Office: Lodge Way House, Lodge Way, Harlestone
Road, Northampton, NN5 7UG. /SPAN/P /BODY /HTML
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

  



--

   Charles Barouch ([EMAIL PROTECTED])
   www.KeyAlly.com (718) 762-3884 x 1
   P. O. Box 540957, Queens, NY 11354
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Single Signon for U2 - Identity Management ?

2007-04-19 Thread phil walker
You could try Centrify DirectControl from Centrify. This integrates into
Microsoft Directory. They also offer and auditing facility which you
guys in America at least might be interested in. I have it deployed in a
UV on RHEL 4.0 AS environment.

Cheers,

Phil.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Baker Hughes
Sent: Friday, 20 April 2007 7:16 a.m.
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Single Signon for U2 - Identity Management ?

Thanks Bjorn,

Do you have any experience with this, with a MV DB server? 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, April 19, 2007 10:02 AM
To: u2-users@listserver.u2ug.org
Subject: SV: [U2] Single Signon for U2 - Identity Management ?

Sun has the Sun java System Identity Manager.

http://catalog.sun.com/productinfo.xml?site=SE_SWEcatalogue=FCsegment=
FC_Ritem=FC_SC_CATgroup=2014fid=5136id=13394



-Ursprungligt meddelande-
Fren: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Baker Hughes
Skickat: den 19 april 2007 15:49
Till: u2-users@listserver.u2ug.org
Dmne: [U2] Single Signon for U2 - Identity Management ?


You know how when you go to bed sometimes and your brain keeps thinking
about some problem...

I've been thinking this isn't possible in U2 environment, but sometime
during the night I resolved to ask the question.

Does anyone know of an Identity Management Suite that is U2 aware?  This
data security issue represents the next frontier for programmers, for
solution providers, for network analysts.  Who is the frontiersman in
the U2/MV space?

What we need - single signon and immediate access to those systems,
servers, storage that your identity allows.  Whatever you don't have
rights to, you can't see (an old Novell concept that Microslop still
doesn't get).

Does anyone know about an IDM solution that interoperates with the major
*nix OS's that U2 is ported to?

Thanks for any guidance.

-Baker
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: Spam:RE: [U2] Garbage Characters

2007-04-19 Thread Brenda Price
U2 Device licensing is not turned on. The sometimes is because he did
not realize it only happens when he logins onto our test environment
which is on a Solaris box. 

Brenda

-Original Message-
From: John Hester [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 19, 2007 1:43 PM
To: u2-users@listserver.u2ug.org
Subject: Spam:RE: [U2] Garbage Characters

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Allen Bell
 Sent: Thursday, April 19, 2007 3:40 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Garbage Characters
 
 It could be that U2 Device licensing turned on and are not using an 
 Enterprise version of U2. 

Yes, now that I re-read the original post, that explanation makes more
sense than a problem with backspace.

 Sometimes when I open an Accuterm 2k2 session and start
  A program and I need to back space I get garbage characters.

You assumed a period after back space where I assumed a comma.
Totally changes the meaning.  They key thing I missed, though, was
sometimes.  If backspace were broken, it would be always.

-John
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: Spam:RE: Spam:RE: [U2] Garbage Characters

2007-04-19 Thread Joseph Ruiz
All,
I apologize but when I was getting garbage was when I went into
the editor, ED BP TEST.PGM. Not when I logged in. When using the editor
the backspace key enters garbage characters. This happens randomly and I
have not figured out a pattern yet.
Thank you all very much for your responses and please accept my
apologies for the misinformation on my part.
Joe

-Original Message-
From: Brenda Price [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 19, 2007 3:16 PM
To: u2-users@listserver.u2ug.org
Subject: Spam:RE: Spam:RE: [U2] Garbage Characters

U2 Device licensing is not turned on. The sometimes is because he did
not realize it only happens when he logins onto our test environment
which is on a Solaris box. 

Brenda

-Original Message-
From: John Hester [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 19, 2007 1:43 PM
To: u2-users@listserver.u2ug.org
Subject: Spam:RE: [U2] Garbage Characters

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Allen Bell
 Sent: Thursday, April 19, 2007 3:40 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Garbage Characters
 
 It could be that U2 Device licensing turned on and are not using an 
 Enterprise version of U2. 

Yes, now that I re-read the original post, that explanation makes more
sense than a problem with backspace.

 Sometimes when I open an Accuterm 2k2 session and start
  A program and I need to back space I get garbage characters.

You assumed a period after back space where I assumed a comma.
Totally changes the meaning.  They key thing I missed, though, was
sometimes.  If backspace were broken, it would be always.

-John
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Single Signon for U2 - Identity Management ? {Unclassified}

2007-04-19 Thread HENDERSON MIKE, MR
This is actually a 'hard' problem in IT, particularly with some large
ERP packages, a German one being a particularly aggravating example. ;-)

However, in a UniVerse environment, if you have source code, it's not
too difficult. [The fact that other packages / systems make it seem so
hard is a bit of a mystery to me]
What you need to do, at the place where you would otherwise ask the user
to input a UserID  Password, is *trust* that the identity of the
currently logged-in user has been verified by the identity management
system (in our case Windows Active Directory services). So, don't ask
the user for their ID, it's already there in @LOGNAME.

As an additional check, if the user is about to change some piece of
information which might be of particular concern (like the Bank Account
Number their pay goes into) you can ask them to re-enter their password
(displaying  instead of the actual password course) and use the
manufacturer-supplied API to check that the input password matches the
user-ID.

HTH

Mike

 -Original Message-
 From: [EMAIL PROTECTED] On Behalf Of Charles Barouch
 Sent: Friday, 20 April 2007 07:10
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Single Signon for U2 - Identity Management ?
 
 All,
I *believe* Baker is looking to have people put in their User ID  
 Password exactly once, and not have to re-enter it for each process 
 (UniVerse, E-mail, Mapped Directories, etc.). Basically, he wants 
 logging on in the morning to preclude having to even think about 
 identity until you log off.
 
 - Chuck Speaking for Baker, Even Though He's Here To Speak For 
 Himself Barouch
 
  -Original Message-
  From: [EMAIL PROTECTED] On Behalf Of Baker Hughes
  Sent: 19 April 2007 14:49
  To: u2-users@listserver.u2ug.org
  Subject: [U2] Single Signon for U2 - Identity Management ?
 
[snip]
 
  Does anyone know of an Identity Management Suite that is U2 
  aware?  
 
[snip]
 
  What we need - single signon and immediate access to those systems,
  servers, storage that your identity allows.  Whatever you don't have
  rights to, you can't see (an old Novell concept that Microslop still
  doesn't get).
 
  Thanks for any guidance.
 
  -Baker
  ---
  u2-users mailing list
  u2-users@listserver.u2ug.org
  To unsubscribe please visit http://listserver.u2ug.org/
The information contained in this Internet Email message is intended
for the addressee only and may contain privileged information, but not
necessarily the official views or opinions of the New Zealand Defence Force.
If you are not the intended recipient you must not use, disclose, copy or 
distribute this message or the information in it.

If you have received this message in error, please Email or telephone
the sender immediately.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/