Re: [U2] SSH on Windows Server

2006-10-02 Thread Symeon Breen
On 30/09/06, John Jenkins [EMAIL PROTECTED] wrote:

 Karen

 UniData and UniVerse both support SSL native via OpenSSL - and this works
 with Dynamic Connect (if you don't have wIntegrate or SBClient).

 So unless you specifically want to use SSH?

 Regards

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




Or you can set up your ssh client to tunnel the telnet port and then use the
terminal emulator of your choice to connect via telnet over the ssh tunnel.


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


[U2] IBM Conference travel tips

2006-10-02 Thread Stevenson, Charles
I've lived in Anaheim for almost three years so here's some travel tips
based on experience.

For domestic travellers, if you can avoid LAX and use Long Beach (LGB),
John Wayne(SNA), or Ontario (ONT),  do it.
I find LGB convenient.  I haven't used ONT.  It's a bit further but a
lot of people like it.

For LAX I use Disneyland Express bus service www.airportbus.com.
They will service any of the area hotels.  1/2 hr service at LAX,
$28/round trip.
They serve the other airports, too, but I always drive to them.

If anyone has better ideas, tell me,  I'd love to know.

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


Re: [U2][UD] UniQuery SELECT WITH Limits

2006-10-02 Thread jjuser ud2

Update:

Certainly!  I have several hundred clients and I need to run a report
using SB+ ReportWriter.

I only need to run the report for 251 of those clients, but they don't
have enough in common to select by any usable criteria.  I remember
reading that there is a limit to selection criteria in UniData, though
-- only 120 WITH statements at the same time.

I also want to simply be able to copy and paste the list of clients
and not have to type each one in.

I guess SB+ works around UniData limits, or perhaps those limits are
no longer in place.  I don't know.  I was able to copy and paste the
entire select list into the SB+ dialogue and have it work that way.
Thank you for the helpful suggestions, everybody!

On 9/25/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Not to second guess, but anytime someone says something about hitting one
of the limits, I have to think there is a better way of doing what you
want to do.

Why don't you give us a little more detail as to what you are trying to
do?

Bruce M Neylon
Health Care Management Group




jjuser ud2 [EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
09/25/2006 03:21 PM
To
u2-users@listserver.u2ug.org
Subject
[U2][UD] UniQuery SELECT WITH Limits






Hi hello how are ya :)

Limits.  The documentation I have for Using UniQuery says that you
can only have 120 different with fields in a SELECT statement.  I'm
trying to select a series of non-contiguous numbers at random
intervals to generate a select list.  There are 251 of these numbers.
Do I have to split the list into three different groups in order to
generate three different lists that I can do a SAVE.LIST on?  What's
the best way to go about getting these select lists?

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


[U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Gahan, Mick
I understand that in Unidata (6.x), MATPARSE will distribute the
elements of a dynamic array into a dimensioned array.

Just curious - Does anyone know if there is a command/function that will
do just the opposite?  Something that will distribute the contents of a
dimensioned array to a dynamic array?

Nothing in the manual jumped out at me...

TIA

Mick


Mick Gahan
Director, MIS
Metropolitan Community College
Omaha, NE 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread jpb

MATBUILD
- Original Message - 
From: Gahan, Mick [EMAIL PROTECTED]

To: u2-users@listserver.u2ug.org
Sent: Monday, October 02, 2006 5:24 PM
Subject: [U2] Command that is the opposite of MATPARSE.



I understand that in Unidata (6.x), MATPARSE will distribute the
elements of a dynamic array into a dimensioned array.

Just curious - Does anyone know if there is a command/function that will
do just the opposite?  Something that will distribute the contents of a
dimensioned array to a dynamic array?

Nothing in the manual jumped out at me...

TIA

Mick


Mick Gahan
Director, MIS
Metropolitan Community College
Omaha, NE 
---

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] Command that is the opposite of MATPARSE.

2006-10-02 Thread Mark Johnson
I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B49

My .001 cents.
Mark Johnson
- Original Message -
From: Kevin King [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.


 Just curious - Does anyone know if there is a command/function
 that will do just the opposite (of MATPARSE)?

 MATBUILD

 -Kevin
 [EMAIL PROTECTED]
 http://www.PrecisOnline.com

 ** Check out scheduled Connect! training courses at
 http://www.PrecisOnline.com/train.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] Command that is the opposite of MATPARSE.

2006-10-02 Thread Stevenson, Charles
I've always thought MATPARSE should have been named MATBUILD,
and MATBUILD should have been called MATPARSE.
Is it just me?

Somehow, I don't think I'll submit this one to the U2UG Enhancement
Forum.
cds
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Bill Haskett
Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B49

My .001 cents.
Mark Johnson

- Original Message -
From: Kevin King [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

 Just curious - Does anyone know if there is a command/function
 that will do just the opposite (of MATPARSE)?

 MATBUILD

 -Kevin
 [EMAIL PROTECTED]
 http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Kevin King
Or maybe BUILDDIM vs. BUILDDYN?

Dorothy, wake up! ;-)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Slooooooow BASIC Verb

2006-10-02 Thread Stuart . Boydell
 Stuart, you can replicate the slow BASIC verb? If so, what causes

 have you identified?



Kevin,

I think it occurs under windows too but can't check at the moment.
Basically (excuse the pun) occurs when there is NO carriage return at the
end of the last line.



On UV/AIX .



in a pc editor (Notepad.exe) typed following 3 lines:



   program test.compile.with.no.final.cr

   crt system(99)

   * last line - comment with no CR - the file stops here |



Transferred it (ascii ftp) to a basic lib folder under unix.

Then start to compile it and it stops until break key hit.



Interestingly the following variation:

   crt system(99)

   end

compiles but vlists without the final character of the line.

Eg if last line is:

   'end' = 'en'

   'end ;* comments' = 'end ;* comment'



Cheers,

Stuart





 
**
This email message and any files transmitted with it are confidential and 
intended solely for the use of addressed recipient(s). If you have received 
this communication in error, please reply to this e-mail to notify the sender 
of its incorrect delivery and then delete it and your reply.  It is your 
responsibility to check this email and any attachments for viruses and defects 
before opening or sending them on. Spotless collects personal information to 
provide and market our services. For more information about use, disclosure and 
access, see our privacy policy at http://www.spotless.com.au
Please consider our environment before printing this email.
** 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniObject.Net error

2006-10-02 Thread Jason Lin

Brian Leach wrote:

Jason

Make sure you to an explicit CloseSession before exiting:

Try
UniObjects.CloseSession(Sess)
UniObjects.CloseAllSessions()
Catch ex As Exception

End Try

I suspect Dispose destroys the objects out of sequence.
 
I've been using UO with .NET 2 for a year and that message is the only

problem I've found, other than an issue with device licence counts that has
been aired elsewhere. 


If you are new to UO and .NET, you might want to take a look at the primer
article I've written for the U2UG knowledge base at www.mvopen.org/kb

Brian
  

Brian,

The CloseSession method is exactly I needed.
I also looked at the Uniobject .net primer you wrote and I must say it's 
a pretty good introductory tutorial to Uniobject .Net, much better than 
the Universe PDF manual from IBM.


Thanks very much for the information.

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


Re: [U2] UniObject.Net error

2006-10-02 Thread Jason Lin

Victor St Clair wrote:

Hello Jason

For us, this usually happens when you close a session that's not open.
Typically this happens because an I/O step fails in a way that causes
the session to close.   I think, but I'm not sure, that in some cases
UniObjects does not throw an error.  Or, it could be that we're catching
the error and not re-throwing it if it's an unexpected condition.  


I think there is a property on the session you can test, I believe it's
.IsActive. 

(I'm answering this from home, so I'm going from memory.)  


But in any case, find the code where this error is being thrown, and
check to see if the session object is still valid when it tries to close

Hope this helps


Victor St. Clair
  

Victor,

Thanks for the suggestion.
As mentioned by Brian in a separate message, my problem was the lack of 
a explicit session close call.

I probably do a close all sessions call just to be safe.

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