RE: [U2] Alas .NET

2004-09-16 Thread Tony Gravagno
djordan wrote:
 If Uniobjects .Net is a .Net assembley, then it should run anywhere
 that the .Net frame work runs as well as probably on the Linux
 version as well. 

We've had some discussions in comp.databases.pick about .NET-enabled MV
tools running over Mono.  I believe (though someone with more insight might
correct me) that the current lot of components (UO.NET, PDP.NET, etc) will
not run over Mono in Linux or in Windows unless the authors take the time to
assemble the code over Mono (doesn't matter which platform).

I'm a firm believer that Mono provides opportunities for all developers, MV
and otherwise, that have been unreachable until now.  I strongly encourage
IBM and Raining Data to assemble and support their components over Mono, so
that we can create rich thick and thin clients and other interfaces over
*nix as easily as over Windows.  This will open many sales opportunities
that we simply do not have at the moment.

That said, I don't know, but if UOJ clients can be deployed over *nix, or if
*nix-based Java components (clients and middle tiers) can be implemented
with WebSphere/RedBack - so the issue might be that people just aren't
taking advantage of existing tools, and not that the tools aren't available.
If UOJ/WebSphere/RedBack is the answer, then maybe the problem is just
economics and too much in the middle.

Any comments on that?  Do I need to read the friendly manuals?

Tony, Nebula RD
[EMAIL PROTECTED]
Technical Editor, C#Builder Kick Start, SAMS Publishing
Technical Editor, several .NET articles for magazines and websites
Author, Web Services and .NET article series, Spectrum Magazine
Providing high-end .NET-related services
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Suggestion

2004-09-16 Thread Louie Gouws
Hi all,

 

I want to make a suggestion.

 

When posting a question, say what you want to do. I'm using Nick's question
as an example (no malice intended):

 

What is the fastest way to process a long string byte by byte.  I want

to know if there is a faster way to do the following: etc..

 

10 responses (3 hours) later he came out with:

 

I'm trying to parse some very long XML code.  If I do it byte by byte

this way, it is taking a very long time to parse.  We are trying to find

a faster way to parse it.

 

Then there was the one that started off by talking about printer and
capturing into a file etc... ended up wanting to capture something about
telephones etc.

 

Louie
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniDebugger won't let me in.

2004-09-16 Thread djordan
When creating the connect have you ticked the correct box for UniVerse or
UniData database.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alfke, Colin
Sent: Thursday, 16 September 2004 3:29 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] UniDebugger won't let me in.


You can change your view to host mode and login with the telnet client
UniDebugger users - some sort of stripped Dynamic Connect. You may have a
connection script setup that is incorrect.

Or is this when you are trying to read your source code? If you are on HP-UX
then you will need to use either ftp or UniObjects to grab your code from
the server. Your user may not be setup to ftp into the server.

good luck

Colin Alfke
Calgary, AB  

-Original Message-
From: Shawn Waldie [mailto:[EMAIL PROTECTED]

I can log in using wintegrate, and I can even telnet in, but an error 
message is returned stating invalid username or password when I try 
to access my source code using unidebugger.

Any suggestions on where to look first?

TIA
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Copying _HOLD_ records to Windows folders

2004-09-16 Thread Al DeWitt
UniData 6.0.12, Realty Flavor
 
I have a program that, thanks to many of you, reads entries in the _HOLD_
file copies them to another name based upon information found in the first
record.  Sort of like this:
 
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON HOLD.FILE,NEW.NAME
END
 
I'm being requested to have the program write the renamed record to a
Windows folder that the user can update:
 
WINDOWS.FOLDER = \\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH
file://\\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH 
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON WINDOWS.FOLDER,NEW.NAME
END
 
I know I can't just 'write' it to the folder.  But I know there has to be a
way to do this through UniBasic.  Any ideas?
 
Thanks.

Al DeWitt 
Stylmark, Inc. 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Copying _HOLD_ records to Windows folders

2004-09-16 Thread Bjorn Behr
We use UniVerse, not Unidata, and what we did was create a entry in the voc
that uses dos commands to copy a file to the required directory. This might
work?

01 ED MD TEST.COPY 
5 lines long.  
   
: P
0001: PA   
0002: * User Name  
0003: * Password   
0004: DOS /C NET USE X: \\192.168.6.131\ZFOLDER Password /USER:User
Name   
0005: COPY /C COPY E:\ACCOUNTS\EFT\* X:\*

WORKS LIKE A DREAM FOR ME.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Al DeWitt
Sent: 16 September 2004 02:36
To: [EMAIL PROTECTED]
Subject: [U2] Copying _HOLD_ records to Windows folders

UniData 6.0.12, Realty Flavor
 
I have a program that, thanks to many of you, reads entries in the _HOLD_
file copies them to another name based upon information found in the first
record.  Sort of like this:
 
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON HOLD.FILE,NEW.NAME
END
 
I'm being requested to have the program write the renamed record to a
Windows folder that the user can update:
 
WINDOWS.FOLDER = \\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH
file://\\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON WINDOWS.FOLDER,NEW.NAME END
 
I know I can't just 'write' it to the folder.  But I know there has to be a
way to do this through UniBasic.  Any ideas?
 
Thanks.

Al DeWitt
Stylmark, Inc. 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Copying _HOLD_ records to Windows folders

2004-09-16 Thread Kevin King
Why can't you just setup a DIR-type file and write it to that file?
That'll drop it in the Windows folder.  You might need to remove any
special characters in the name, like wildcard characters that Unidata
doesn't care about (but Windows does!), but other than that it should
be quite simple. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Al DeWitt
Sent: Thursday, September 16, 2004 6:36 AM
To: [EMAIL PROTECTED]
Subject: [U2] Copying _HOLD_ records to Windows folders

UniData 6.0.12, Realty Flavor
 
I have a program that, thanks to many of you, reads entries in the
_HOLD_ file copies them to another name based upon information found
in the first record.  Sort of like this:
 
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON HOLD.FILE,NEW.NAME
END
 
I'm being requested to have the program write the renamed record to a
Windows folder that the user can update:
 
WINDOWS.FOLDER = \\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH
file://\\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON WINDOWS.FOLDER,NEW.NAME END
 
I know I can't just 'write' it to the folder.  But I know there has to
be a way to do this through UniBasic.  Any ideas?
 
Thanks.

Al DeWitt
Stylmark, Inc. 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Assembling in Las Vegas this weekend ...

2004-09-16 Thread Mark Johnson
So Results is a nick-name. I still would be interested in hearing from
anyone who has used or is using the Results package from Microdata. I've had
Results-based clients for 17 years.

Thanks.

- Original Message -
From: Results [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, September 16, 2004 12:58 AM
Subject: Re: [U2] Assembling in Las Vegas this weekend ...


 Mark,
 She meant me. To the best of my knowledge, Microdata never sold me to
 anyone.

 --
  - Charles Barouch
  (718) 762-3884 x 1   - Key Ally Voice Mail

  [EMAIL PROTECTED]  - Consulting services
  [EMAIL PROTECTED] - News
  [EMAIL PROTECTED] - U2-Users Moderator

  [EMAIL PROTECTED]- Zeus Data Integration
  Mount Olympus, Home of Zeus Data Integration


 Mark Johnson wrote:

 Is Chuck Results Barouch related to the Results Application for
Microdata.
 I still have several clients on it and would love to get some
documentation
 and/or more clients. Those that have it, love it.
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Copying _HOLD_ records to Windows folders

2004-09-16 Thread Alfke, Colin
If you can setup a VOC entry (like the one for _HOLD_) then you *can* just write it to 
the folder.
Otherwise just use the PCPERFORM command and copy it to the required windows folder. 
Please note though that you won't have the drive mappings setup on the server that you 
may be expecting.

Of course, the _hold_ directory is a windows folder that the users could update 
directly. I'm just not sure it would be a good idea to show them how

Colin Alfke
Calgary, AB

-Original Message-
From: Al DeWitt [mailto:[EMAIL PROTECTED]

UniData 6.0.12, Realty Flavor
 
[snip]
 
I'm being requested to have the program write the renamed record to a
Windows folder that the user can update:
 
WINDOWS.FOLDER = \\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH
file://\\SERVER.NAME\HOME\MONTHEND\CURRENT.MONTH 
READ HOLD.REC FROM HOLD.FILE,ID ELSE HOLD.REC = ''
IF HOLD.REC THEN
  NEW.NAME = TRIM(HOLD.REC1[40,30])
  WRITE HOLD.REC ON WINDOWS.FOLDER,NEW.NAME
END
 
I know I can't just 'write' it to the folder.  But I know 
there has to be a
way to do this through UniBasic.  Any ideas?
 
Thanks.

Al DeWitt 
Stylmark, Inc. 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniDebugger won't let me in.

2004-09-16 Thread Shawn Waldie
This is what's so strange. I can log in through other windows.

I have UniDebugger running right now, and I can access my source code
through the wIntegrate pane (on the right). However, I get the error
message when I attempt to access my source code with the editor pane (on
the left). I've always used uniobjects in the past, but ftp won't work
either.  I can even telnet in from the cmd line of my workstation.


-Original Message-
From: Adrian Matthews [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 16, 2004 1:06 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] UniDebugger won't let me in.


If you have wIntegrate installed then UniDebugger uses that for the
embedded terminal window rather than Dynamic Connect (which is a
stripped down wIntegrate).

A long winded way of saying that if you can already log on and edit the
source code in wIntegrate then it should be fine in UniDebugger. It's
not as basic as having the wrong username/password in the UniDebugger
settings?




You can change your view to host mode and login with the telnet client
UniDebugger users - some sort of stripped Dynamic Connect. You may have
a connection script setup that is incorrect.

Or is this when you are trying to read your source code? If you are on
HP-UX then you will need to use either ftp or UniObjects to grab your
code from the server. Your user may not be setup to ftp into the server.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniDebugger won't let me in.

2004-09-16 Thread Shawn Waldie
I'm good here, too.

-Original Message-
From: kafsat taiyus [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 15, 2004 4:41 PM
To: '[EMAIL PROTECTED]'
Subject: RE: [U2] UniDebugger won't let me in.


Permission on the source code.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] Processing a string

2004-09-16 Thread Glen B
 This gets better and better every day. *LOL*

  Per HTTP 1.0-1.2 specifications,  and  are not exempt from content
encoding requirements. They are protected characters and must be treated as
such when sending content. Light bulb going off yet?

  If you must use a  or  character as a non-elemental string, in ANY
media, transferred through an HTTP 1.0 to 1.2 compliant application then you
MUST URL-encode them as lt;, gt; or their equiv. charset hex values as
%XX;. Comments are an exception to this rule, but you can still have
problems with general parsing if you put protected characters in the
comments. I always url-encode my non-alpha-numeric strings.

Glen
http://picksource.com

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of David Beahm
 Sent: Thursday, September 16, 2004 10:16 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [U2] [UV] Processing a string


 I agree, inside of a tag the Unicode equivalent is, if not required,
 certainly prudent:

 !ENTITY % xx '#60;zz;'

 Think outside the tag.  ;)

 Consider:

 thisdatahere's some text saying 2  3  2/thisdata

 If you FIELD() or EREPLACE or whatever on  or  then you're going
 to have problems when a document contains them in text.

 quoted
 2.2 Characters

 [Definition: A parsed entity contains text, a sequence of characters,
 which may represent markup or character data.] [Definition: A character
 is an atomic unit of text as specified by ISO/IEC 10646:2000 [ISO/IEC
 10646]. Legal characters are tab, carriage return, line feed, and the
 legal characters of Unicode and ISO/IEC 10646. The versions of these
 standards cited in A.1 Normative References were current at the time
 this document was prepared. New characters may be added to these
 standards by amendments or new editions. Consequently, XML processors
 MUST accept any character in the range specified for Char. ]
 /quoted

 Ref: http://www.w3.org/TR/2004/REC-xml-20040204/

 Best,
 David Beahm

 Kevin King wrote:

  Is it not against the XML standard to have a quoted string containing
   or  in a tag?
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] ANNOUNCEMENT: Commercial MultiValue Database released as Open Source under GPL

2004-09-16 Thread Doug Dumitru
I am pleased to announce the creation of the first operational,
production MultiValue database environment released as Open Source
software.
This new package is based on the commercial MultiValue database QM,
developed by Ladybridge Systems in the UK.
  About QM
* Originally developed for in-house use at Ladybridge in 1995
* Released as a stand-along database engine in 2001
* Not beta code.  Full production code with real users.
* Complete MultiValue environment
* Basic comiler and run-time
* Query language with dictionaries
* MultiValue filesystem with dynamic files
* external C/VP API
* Update triggers
* User defined functions
Announcing OpenQM
OpenQM is an open-source fork of QM with all features intact.  OpenQM
is being released under the GNU General Public License (GPL) allowing
for full access to source code and free use for all applications that
are compatible with the GPL license.  For applications that need other
license terms, commercial licenses are also available at a cost that
is 15-20% that of similar sized U2 systems.
Call for Developers
Most of OpenQM is implemented in BASIC.  Even internal functions such
as the Basic debugger, TCL, and line INPUT are implemented in BASIC.
Almost the entire system can be extended in BASIC.  If you are a
MultiValue developer and want to get under the hood of a remarkable
platform, we want to here from you.  Join the 'openqm-devel' mailing
list at:
  http://lists.sourceforge.net/lists/listinfo/openqm-devel
Call for Users
Take control of your MultiValue destiny.  Control costs.  Help build a
community.  While the open-source version of QM is not quite available
yet, you can get a demo copy of the existing QM software to start
working with right now.  The release for Linux is only a 460K download
with a seperate, much larger, download for documentation and the
client API code.
Come Visit Us
While still pretty new, we are working hard on building an internet
presence for OpenQM.  Come to our welcome page (which has a bunch of
links)
  http://openqm.sourceforge.net

Doug Dumitru 800-470-2756 (610-237-2000)
EasyCo LLC   [EMAIL PROTECTED]  http://easyco.com

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


RE: [U2] Assembling in Las Vegas this weekend ...

2004-09-16 Thread Tony Gravagno
When you say has used, OK, I fit that category.  I had one client about 12
years ago that was running Results on a Microdata.  I worked with them for
about 4 years, so I knew their customized app well at the time.  Good
software, though some parts of it I wouldn't touch with a long pole.  When
their annual revenue exceeded 100 million dollars they felt a need to use
something else.

Personally I try to avoid applications work, but if you'd like to connect
your Results package to remote applications, web-enable it, tie it into
Excel, enable it for credit card processing, etc - lemme know...

HTH
Tony
[EMAIL PROTECTED]

Mark Johnson wrote:

 I still would be interested in hearing from
 anyone who has used or is using the Results package from Microdata.
 I've had Results-based clients for 17 years.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UV] SOX - TCL command logging / auditing

2004-09-16 Thread Buss, Troy \(Logitek Systems\)
Does anyone know if there is a built in facility within universe for
logging TCL commands by account or even globally?  Something similar
perhaps as the 'errlog' feature.
 
Of concern by an internal SOX (sarbanes-oxley) audit was that its
possible for data to be changed outside of the application.
Specifically, direct access to data could remain undetected resulting
in unauthorized changes to financial data, affecting data integrity.
 
Thanks!
 
-Troy
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniDebugger won't let me in.

2004-09-16 Thread Alfke, Colin
Not so strange. The editor does it's file transfer independently of the terminal 
window. You can load edit, format, and save source code without logging the terminal 
window in.

It's strange that you've used uniobjects in the past and it's no longer working - or 
have you just never used it with UniDebugger. My servers are windows based so I 
usually use the disk option but I've used UniObjects when I want to make sure the 
source code item is locked.

If the server name/address or the account is invalid I get an Unable to connect to 
host message.
If the user/password is incorrect I get an Invalid user name or password message.
If the file is incorrect I get an unable to open host file message.

So it looks like the user/password you are using on the editor side isn't valid or 
doesn't have the correct permissions to access the account.

I did have some trouble with an example project that I got from IBM not liking certain 
characters in the password. I haven't seen that type of trouble with the UniDebugger 
but at this point it's worth a shot

Colin Alfke
Calgary, AB

-Original Message-
From: Shawn Waldie [mailto:[EMAIL PROTECTED]

This is what's so strange. I can log in through other windows.

I have UniDebugger running right now, and I can access my source code
through the wIntegrate pane (on the right). However, I get the error
message when I attempt to access my source code with the 
editor pane (on
the left). I've always used uniobjects in the past, but ftp won't work
either.  I can even telnet in from the cmd line of my workstation.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] ANNOUNCEMENT: Commercial MultiValue Database released as Open Source under GPL

2004-09-16 Thread Glen B
 Awesome! I definitely want a development part. I also want to work my
projects into it, when they hit a stable release. If you want, I can devote
a section of PickSource to it.

Glen aka PickCoder
http://picksource.com

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Doug Dumitru
 Sent: Thursday, September 16, 2004 1:16 PM
 To: [EMAIL PROTECTED]
 Subject: [U2] ANNOUNCEMENT: Commercial MultiValue Database released as
 Open Source under GPL


 I am pleased to announce the creation of the first operational,
 production MultiValue database environment released as Open Source
 software.

 This new package is based on the commercial MultiValue database QM,
 developed by Ladybridge Systems in the UK.

About QM

  * Originally developed for in-house use at Ladybridge in 1995
  * Released as a stand-along database engine in 2001
  * Not beta code.  Full production code with real users.
  * Complete MultiValue environment
  * Basic comiler and run-time
  * Query language with dictionaries
  * MultiValue filesystem with dynamic files
  * external C/VP API
  * Update triggers
  * User defined functions

 Announcing OpenQM

 OpenQM is an open-source fork of QM with all features intact.  OpenQM
 is being released under the GNU General Public License (GPL) allowing
 for full access to source code and free use for all applications that
 are compatible with the GPL license.  For applications that need other
 license terms, commercial licenses are also available at a cost that
 is 15-20% that of similar sized U2 systems.

 Call for Developers

 Most of OpenQM is implemented in BASIC.  Even internal functions such
 as the Basic debugger, TCL, and line INPUT are implemented in BASIC.
 Almost the entire system can be extended in BASIC.  If you are a
 MultiValue developer and want to get under the hood of a remarkable
 platform, we want to here from you.  Join the 'openqm-devel' mailing
 list at:

http://lists.sourceforge.net/lists/listinfo/openqm-devel

 Call for Users

 Take control of your MultiValue destiny.  Control costs.  Help build a
 community.  While the open-source version of QM is not quite available
 yet, you can get a demo copy of the existing QM software to start
 working with right now.  The release for Linux is only a 460K download
 with a seperate, much larger, download for documentation and the
 client API code.

 Come Visit Us

 While still pretty new, we are working hard on building an internet
 presence for OpenQM.  Come to our welcome page (which has a bunch of
 links)

http://openqm.sourceforge.net


 
 Doug Dumitru 800-470-2756 (610-237-2000)
 EasyCo LLC   [EMAIL PROTECTED]  http://easyco.com
 
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] uv-pe problem

2004-09-16 Thread GarryS
Xtreme Pain HOME edition is kludged version that does not allow many
networking options.  IE.. you can log into a domain. And it is not so easy
to update to the PRO edition from HOME.

Garry Smith
Dir. Info Systems
Charles McMurray Company
V# 559-292-5782   F# 559-346-6169

CONFIDENCE NOTICE:
This is an e-mail message, theretofore may have many accompanying documents,
and is truly for the intended recipient(s) and heretofore may contain data
and information.  Surely any unauthorized review, use, disclosure,
distribution or copying could become arum nauseous.  If you are not the
intended recipient, please look deep within yourself by any means and
immediately forgo digesting the original message.

 -Original Message-
 From: Michael O'Rear [SMTP:[EMAIL PROTECTED]
 Sent: Thursday, September 16, 2004 10:50 AM
 To:   [EMAIL PROTECTED]
 Subject:  [U2] uv-pe problem
 
 Running Universe 10.0 - Personal edition on a high-end pc running XP home
 SP2.
 
  
 
 Whenever I boot my system or go to services and attempt to start the REXEC
 and the TELNET services for universe, either/both stop immediately.  When
 booting with the services enabled, I get a hard error and then XP offers
 to
 send a message back to Microsquish.  
 
  
 
 I have turned the XP firewall off and get the same results.
 
  
 
 Anybody have any ideas that I could try?
 
  
 
 Mike O'Rear
 
 [EMAIL PROTECTED]
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] uv-pe problem

2004-09-16 Thread BobW56
Hum  I wonder what that hard error says  Might give us a clue!

- Original Message - 
From: Michael O'Rear [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, September 16, 2004 10:50 AM
Subject: [U2] uv-pe problem


 Running Universe 10.0 - Personal edition on a high-end pc running XP home
 SP2.



 Whenever I boot my system or go to services and attempt to start the REXEC
 and the TELNET services for universe, either/both stop immediately.  When
 booting with the services enabled, I get a hard error and then XP offers
to
 send a message back to Microsquish.



 I have turned the XP firewall off and get the same results.



 Anybody have any ideas that I could try?



 Mike O'Rear

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


RE: [U2] UniDebugger won't let me in.

2004-09-16 Thread Shawn Waldie
I recently changed my password.  However, only when I attempt to access
my source code using UDB am I denied...so I know it can't be a
permissions problem.  I'll try changing my password.



snip

So it looks like the user/password you are using on the editor side
isn't valid or doesn't have the correct permissions to access the
account.

I did have some trouble with an example project that I got from IBM not
liking certain characters in the password. I haven't seen that type of
trouble with the UniDebugger but at this point it's worth a shot

snip
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] SOX - TCL command logging / auditing

2004-09-16 Thread Baakkonen, Rodney
You can define verbs as 'R' types and secure them using Unibasic code:

Record Layout:
@ID:remote_record_ID
Attribute 1:R [description]
Attribute 2:file_name
Attribute 3:record_name
Attribute 4:[subroutine_name]


The following screen shows an example of a remote item you could create for
the ECL LIST command:
:AE VOC LIST
Top of LIST in VOC, 4 lines, 26 characters.
*--: P
001: R
002: OTHER_VOC
003: LIST
004: SECTEST2
Bottom.
*--:
With this VOC record in place, when you execute the LIST command,
UniData executes a security subroutine called SECTEST2. If that subroutine
returns a value of 1, UniData executes the record LIST in a file called
OTHER_VOC.

-Original Message-
From: Buss, Troy (Logitek Systems) [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 16, 2004 1:04 PM
To: [EMAIL PROTECTED]
Subject: [U2] [UV] SOX - TCL command logging / auditing


Does anyone know if there is a built in facility within universe for
logging TCL commands by account or even globally?  Something similar
perhaps as the 'errlog' feature.
 
Of concern by an internal SOX (sarbanes-oxley) audit was that its
possible for data to be changed outside of the application.
Specifically, direct access to data could remain undetected resulting
in unauthorized changes to financial data, affecting data integrity.
 
Thanks!
 
-Troy
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] attachments

2004-09-16 Thread Marc Harbeson
What attachments? snicker

-Original Message-
From: Allen E. Elwood (CA) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 16, 2004 2:17 PM
To: [EMAIL PROTECTED]
Subject: [U2] attachments

This morning I started getting attachment along with the u2 user mail.
Is
everyone else getting these, or am I the only lucky one?  ;-)

I haven't opened any - just doesn't seem a wise choice.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] ANNOUNCEMENT: Commercial MultiValue Database released as Open Source under GPL

2004-09-16 Thread Martin Phillips
George,

Visit www.openqm.com, click on Buy QM today and select Evaluation
licences.

Martin Phillips
Ladybridge Systems
17b Coldstream Lane, Hardingstone, Northampton NN4 6DB
+44-(0)1604-709200

- Original Message - 
From: George Gallen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, September 16, 2004 8:43 PM
Subject: RE: [U2] ANNOUNCEMENT: Commercial MultiValue Database released as
Open Source under GPL


 ok. where do I get the 10 digit serial# and other #'s to try it out?

 George
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] attachments

2004-09-16 Thread Paul Trebbien
No attachments here!

 Paul Trebbien
 Kore Technologies, Senior Support Tech. 
 Solutions that work. People who care.
 V 858.678.0030 F 858.300.2600 W www.koretech.com
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Allen E. Elwood
(CA)
Sent: Thursday, September 16, 2004 12:17 PM
To: [EMAIL PROTECTED]
Subject: [U2] attachments


This morning I started getting attachment along with the u2 user mail.  Is
everyone else getting these, or am I the only lucky one?  ;-)

I haven't opened any - just doesn't seem a wise choice.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UV] Processing a string

2004-09-16 Thread Craig Bennett
Glen,
  Per HTTP 1.0-1.2 specifications,  and  are not exempt from content
encoding requirements. They are protected characters and must be treated as
such when sending content. Light bulb going off yet?
Surely you don't mean the HTTP specifications? (Which the W3 have 
officially closed at HTTP/1.1).

 If you must use a  or  character as a non-elemental string, in
 ANY
 media, transferred through an HTTP 1.0 to 1.2 compliant application
 then you
 MUST URL-encode them as lt;, gt; or their equiv. charset hex values 
 as
 %XX;. Comments are an exception to this rule, but you can still have
 problems with general parsing if you put protected characters in the
 comments. I always url-encode my non-alpha-numeric strings.

You do not have to URL encode these characters at all, otherwise you 
could never send XML or indeed binary data over HTTP (image/jpeg).

If you are sending a body with a specific content then encoding rules 
will apply, but these are defined by other standards. Perhaps you are 
thinking of the HTML standards for POSTING data using the 
application/x-www-form-urlencoded content type?

Craig
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] TEST

2004-09-16 Thread Mitchell, Stewart
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UniObjects over SSL

2004-09-16 Thread Moderator
Forwarded to the list for a non-member (Jeremy Geffre 
[EMAIL PROTECTED]). Jeremy, please visit 
http://listserver.u2ug.org/ to subscribe.

I'm having problems getting UniObjects to connect over SSL 
and was wondering if anyone has any suggestions.  We are on 
UniData 6.03, and so far I have done the following:

1)  Added the IBM security provider to the list in 
java.security
2)  Added the UniObject jar files and ibmjsse.jar to the 
classpath
3)  Created a Security Context Record and changed the files 
unirpcservices and .scrfile
4)  Restarted unirpcd
5)  Created a truststore and imported the CA root 
certificate into it
6)  Created a keystore and imported a signed certificate 
into it
7)  Wrote a simple class and ran it

The exception is pretty vague and states:

The connection is bad, and may be passing corrupt data = 
81001
asjava.uniobjects.UniSessionException: The connection is 
bad, and may be passing corrupt data
at 
asjava.uniobjects.UniSession.connect(UniSession.java:323)
at UOJTestSSL.main(UOJTestSSL.java:39)

The class class I'm using is for a direct connection and 
contains the following code:

import asjava.uniobjects.*;
import asjava.uniclientlibs.*;
import asjava.unirpc.*;

public class UOJTestSSL
{
  static final String u2host = ourhost;
  static final String username = username;
  static final String password = passwd;
  static final String accountpath = /path/to/account;
  static final String keyfilepath = /path/to/keyfile;
  static final String keyfilepwd = keypwd;
  static final String trustfilepath = /path/to/testtrust;
  static final String trustfilepwd = trustpwd;

  public static void main (String args[])
  {
try
{
  UniJava uJava = new UniJava();
  UniSession uSession = 
uJava.openSession(UniObjectsTokens.SECURE_SESSION);
  // UniSession uSession = uJava.openSession(); ** 
Works with this line (non-secure) **

 
uSession.setHostPort(UniRPCTokens.UNIRPC_DEFAULT_PORT);
  uSession.setHostName(u2host);
  uSession.setUserName(username);
  uSession.setPassword( password );
  uSession.setAccountPath(accountpath);

  // Now we ll set locations for the keystore and 
truststore and a password
for the keystore

  System.setProperty(javax.net.ssl.trustStore, 
trustfilepath);
  System.setProperty(javax.net.ssl.keyStore, 
keyfilepath);
  System.setProperty(javax.net.ssl.keyStorePassword, 
keyfilepwd);
 
System.setProperty(javax.net.ssl.trustStorePassword, 
trustfilepwd);

  uSession.setSSLDescriptor(null);

  uSession.connect();

  // Instantiate a command object and set the command
  UniCommand uvc = uSession.command ();
  uvc.setCommand (COUNT PERSON WITH FIRST.NAME = 
'Jeremy');

  // Execute the command
  uvc.exec();

  // Print the response
  System.out.println (uvc.response ());

  // Disconnect from the Database
  uSession.disconnect();
}
catch (UniSessionException e)
{
  System.out.println ( e.getMessage() +  =  + 
e.getErrorCode() );
  e.printStackTrace();
}
catch (UniCommandException e)
{
  System.out.println ( e.getMessage() +  =  + 
e.getErrorCode() );
}
  }
}

Please let me know if you have any ideas or suggestions. 
If someone has a simple working class that uses SSL, I 
would appreciate getting a copy.  Thanks,

Jeremy Geffre
Programmer Analyst
Linfield College
503-883-2554

[demime 1.01d removed an attachment of type text/x-vcard which had a name of u2ug.vcf]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Universe Debugger - compile from different path with run-timeissue

2004-09-16 Thread FFT2001
In a message dated 9/16/2004 8:06:04 PM Pacific Daylight Time, 
[EMAIL PROTECTED] writes:


 The problem occurs on a system that doesn't have source.
 The application was created, and cataloged on another system, the source
 stripped out and the object code stripped.  The application was moved to
 another system and we fixed the paths in the VOC and everything worked just
 fine, until Mr. Unassigned Variable showed up, and the debugger ate his
 lunch .  Or anytime a DEBUG statement occurs before or after a cataloged
 subroutine that has an invalid path on the last line in the .O object
 directory.

You cannot use a DEBUG statement in source-code stripped code.
The debugger wants to know WHERE to get the source from in order to show you 
the line number you are on.  So if you're going to strip source, you need to 
pre-parse to strip any existing DEBUG statements as well, and on new code on 
that client you cannot use DEBUG statements if they are going to enter a 
subroutine where the sub's absolute path has moved.  (Run on sentence alert!!)

A much much much better idea, is to ship the source, compile it AT the client 
and THEN strip it out.   This requires hand-holding but would solve your 
problemo.

There may be an option on the compile that completely removes the map table 
and any other debugging tool.  This may remove the embedded absolute source 
path.  You can easily give it a try, I never have needed it myself.

Will
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] CDBMA .org

2004-09-16 Thread Tony Gravagno
I'm glad you liked the material Dave.

For those who were unable to make it, as seen in another thread here I'll be
on the panel with the U2UG this Sunday.  I'll have some DesignBais
presentation CD's available after the session.

For clarification of licensing costs and other details, please e-mail me, or
contact the  DesignBais team directly.  The software will also be presented
by David Mclean (Director of DesignBais) at London Spectrum and the other
Spectrum shows.

Tony
[EMAIL PROTECTED]

Dave Raven wrote:
 From Southern Californa... 9/15/04
 The CDBMA members met last night at Dave  Busters in Orange County
 CA, for a long over due meeting. 
 
 Mark Pick had arranged 2 different presentations worth a look at.
 
 http://www.openqm.com ..http://www.ladybridge.com/ .. an open source
 MULTIVAUE database including source code. With a small footprint. 
 and
 http://designbais.com/ a step in the right direction to get a browser
 based screen interface to U2. Skipping the layers to get it to
 happen. And it's priced at $1000.  
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/