Re: [U2] OCONV Extraction Question

2007-11-16 Thread MAJ Programming
This is real smart, making things harder than they should be. Just use .

Mark Johnson
- Original Message -
From: [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Wednesday, November 14, 2007 5:23 PM
Subject: RE: [U2] OCONV Extraction Question


 Didn't work for me either. It may not fit what you need, but SWAP can make
 it work.

 VAR1 = 'SAM':@VM:'TRUDY'
 SWAP @VM WITH '*' IN VAR1
 FMTSTR = 'G*1'
 CRT OCONV(VAR1,FMTSTR)

 Brad


 U.S. BANCORP made the following annotations
 -
 Electronic Privacy Notice. This e-mail, and any attachments, contains
information that is, or may be, covered by electronic communications privacy
laws, and is also confidential and proprietary in nature. If you are not the
intended recipient, please be advised that you are legally prohibited from
retaining, using, copying, distributing, or otherwise disclosing this
information in any manner. Instead, please reply to the sender that you have
received this communication in error, and then immediately delete it. Thank
you in advance for your cooperation.



 -
 ---
 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] U2U Tarrytown [not-secure]

2007-11-16 Thread Hennessey, Mark F.
Chuck - I agree, it was great! 

I'm afraid it's going to be quite some time before I can line up funding
to go to any other training. I just wish I had taken some of the .Net
developers!  The ADO.NET provider looks very, very cool!

Mark Hennessey

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Charles Barouch
Sent: Wednesday, November 14, 2007 10:03 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] U2U Tarrytown

All,
I've been to the first two days of U2U (Tarrytown, NY). I have to
say that it has been well worth it so far and I look forward to going
back tomorrow. Well worth the price of admission, if just for the
one-on-one conversations with key IBM-folk between sessions. In
addition, I've been to several excellent sessions.

 - Chuck
---
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] WebService

2007-11-16 Thread Symeon Breen
Hi Rudy

This is actually more of a asp.net question than anything else - if you already 
have your vb.net code that connects using uniobjects.net then it is a simple 
addition to turn this into a web service.

I will send on to you an example - you may also want to read a few articles on 
the net on creating asp.net webservices - it is pretty easy...

Rgds
Symeon.



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cooper, Rudy
Sent: 15 November 2007 23:20
To: u2-users@listserver.u2ug.org
Subject: [U2] WebService

Hello List,



Can someone direct me to a source for creating a web service TO UV.



We are running UV 10.10 on a Windows Xp server.  As a test I want to
create a simple web service to uv to return some data in a dotnet app.



I have a vb.net app reading and writing to uv using uonet, but I want to
create a web service to do the same thing.



I've looked everywhere for a workable example, but have found nothing.



If someone already knows how to do such a thing could you bullet point
what I need to do.



If you happen to be going to U2U in San Francisco and you know the
technology I'd appreciate a chat with you over drinks, I'll buy of
course.



Thx,



Rudy



Rudy Cooper



Technical Project Lead

Sage Publications

Information Technology Development
[EMAIL PROTECTED]
---
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] Haydon Bishop is out of the office.

2007-11-16 Thread haydon . bishop
I will be out of the office starting  16/11/2007 and will not return until
20/11/2007.

I will respond to your message when I return.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] OT: Email encryption

2007-11-16 Thread Clifton Oliver
If the csv files are being generated by UniBasic, the language has  
encryption functions. Outside of basic, check out GPG. (http:// 
www.gnupg.org/)



--

Regards,

Clif

~~~
W. Clifton Oliver, CCP
CLIFTON OLIVER  ASSOCIATES
Tel: +1 619 460 5678Web: www.oliver.com
~~~


On Nov 16, 2007, at 8:26 AM, Brenda Price wrote:


We sometimes have to email csv files with sensitive information to our
clients.  Right now we are just setting a password to the zipped  
files.

We really need to encrypt either the whole email or just the attached
files.  We are using Microsoft Outlook.



Any ideas?



Brenda L Price

Senior Programmer Analyst

Affiliated Acceptance Corporation

Sunrise Beach, MO

(800)233-8483
---
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] OCONV Extraction Question

2007-11-16 Thread Brutzman, Bill
Speaking of mis-used commands and side-stepping some of the given code
craziness...

It is better practice to atomize the code into discrete elements such as...

  Var1.F = oconv(Var1, 'MD0')
  crt Var1.F 'R#11'

rather than to try to kill two birds with one stone by including an oconv
statement inside a crt statement such as...

  crt oconv(Var1, 'MD0')

--Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of MAJ Programming
Sent: Friday, November 16, 2007 12:48 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] OCONV Extraction Question


This is real smart, making things harder than they should be. Just use .

Mark Johnson
- Original Message -
From: [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Wednesday, November 14, 2007 5:23 PM
Subject: RE: [U2] OCONV Extraction Question


 Didn't work for me either. It may not fit what you need, but SWAP can make
 it work.

 VAR1 = 'SAM':@VM:'TRUDY'
 SWAP @VM WITH '*' IN VAR1
 FMTSTR = 'G*1'
 CRT OCONV(VAR1,FMTSTR)

 Brad


 U.S. BANCORP made the following annotations
 -
 Electronic Privacy Notice. This e-mail, and any attachments, contains
information that is, or may be, covered by electronic communications privacy
laws, and is also confidential and proprietary in nature. If you are not the
intended recipient, please be advised that you are legally prohibited from
retaining, using, copying, distributing, or otherwise disclosing this
information in any manner. Instead, please reply to the sender that you have
received this communication in error, and then immediately delete it. Thank
you in advance for your cooperation.



 -
 ---
 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] OT: Email encryption

2007-11-16 Thread Brenda Price
We sometimes have to email csv files with sensitive information to our
clients.  Right now we are just setting a password to the zipped files.
We really need to encrypt either the whole email or just the attached
files.  We are using Microsoft Outlook.



Any ideas?



Brenda L Price

Senior Programmer Analyst

Affiliated Acceptance Corporation

Sunrise Beach, MO

(800)233-8483
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] OT: Email encryption

2007-11-16 Thread Jeffrey Butera
quote who='Brenda Price' date='Friday 16 November 2007'
 We sometimes have to email csv files with sensitive information to our
 clients.  Right now we are just setting a password to the zipped files.
 We really need to encrypt either the whole email or just the attached
 files.  We are using Microsoft Outlook.

We're using gpg to encrypt files and it's available for windows, unix and many 
other platforms.  The only issue with gpg is the recipient must have it 
installed and you have to exchange keys for them to decrypt the file once 
received.  You only need to exchange keys once and then can encrypt and 
decrypt as many files as you'd like...  

If you want more details let me know - I just documented this for another 
audience.


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

That's why you have two ears and one mouth - 
   use them accordingly. Mike Golic
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] OT: Email encryption

2007-11-16 Thread Glen Batchelor
A Spectrum tech article would be nice. :)
nudges Cliff

 I'd be interested in seeing your GPG mail implementation guidelines and
perhaps a generic sample. I never got into GPG, but I've briefly thought
about integrating it before.


Glen Batchelor
IT Director
All-Spec Industries
 phone: (910) 332-0424
   fax: (910) 763-5664
E-mail: [EMAIL PROTECTED]
   Web: http://www.all-spec.com
  Blog: http://blog.all-spec.com


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Jeffrey Butera
 Sent: Friday, November 16, 2007 1:41 PM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] OT: Email encryption
 
 quote who='Brenda Price' date='Friday 16 November 2007'
  We sometimes have to email csv files with sensitive information to our
  clients.  Right now we are just setting a password to the zipped files.
  We really need to encrypt either the whole email or just the attached
  files.  We are using Microsoft Outlook.
 
 We're using gpg to encrypt files and it's available for windows, unix and
 many
 other platforms.  The only issue with gpg is the recipient must have it
 installed and you have to exchange keys for them to decrypt the file once
 received.  You only need to exchange keys once and then can encrypt and
 decrypt as many files as you'd like...
 
 If you want more details let me know - I just documented this for another
 audience.
 
 
 --
 Jeff Butera, Ph.D.
 Administrative Systems
 Hampshire College
 [EMAIL PROTECTED]
 413-559-5556
 
 That's why you have two ears and one mouth -
use them accordingly. Mike Golic
 ---
 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] OT: Email encryption

2007-11-16 Thread Scott Ballinger
I have a client that uses Tumbleweed to send secure emails. It works at the
email server level (these folks use Exchange), intercepting any email
message with the string ##SECURE in the subject. It then sends an email to
the recipient telling them they have a secure email waiting for them at the
client site; they need to connect to the site (via https by clicking a link)
and  authenticate themselves (or if first time create a user  password),
then they can view the text + attachments of the original email. Works
seamlessly with outlook+exchange and with automatically generated emails
from the UV/Linux system that use SMTP to connect to the exchange server.
Should also work with other email clients. Not cheap, but pretty cool.

Another option would be pgp/gpg if full paranoia mode is required.

/Scott Ballinger
Pareto Corporation
Edmonds WA USA
206 713 6006



On Nov 16, 2007 8:26 AM, Brenda Price [EMAIL PROTECTED] wrote:

 We sometimes have to email csv files with sensitive information to our
 clients.  Right now we are just setting a password to the zipped files.
 We really need to encrypt either the whole email or just the attached
 files.  We are using Microsoft Outlook.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] OT: Email encryption

2007-11-16 Thread Brenda Price
What we need is something that the email recipient does not have to do
anything with except for use a key or password to open.

Some (probably 80%) of the recipients are not very technical (we're
talking about health clubs, tanning salons, etc) and they have to be
able to import the file(s) into whatever they are using.

We would definitely be looking at a cheap solution as it isn't an every
day thing.  

We have what we need to develop our own solution with just the .csv file
but it would really not be cost effective.

A piece of software that already exists under $100 for 2-4 licenses
would be great as it would get the job done cheaper and faster.

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


RE: [U2] OT: Email encryption

2007-11-16 Thread Eric Armstrong
We also use gpg (alias pgp).

Eric Armstrong
Programmer/Analyst
Lobel Financial

-Original Message-
From: Jeffrey Butera [mailto:[EMAIL PROTECTED]
Sent: Friday, November 16, 2007 10:41 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] OT: Email encryption


quote who='Brenda Price' date='Friday 16 November 2007'
 We sometimes have to email csv files with sensitive information to our
 clients.  Right now we are just setting a password to the zipped files.
 We really need to encrypt either the whole email or just the attached
 files.  We are using Microsoft Outlook.

We're using gpg to encrypt files and it's available for windows, unix and
many 
other platforms.  The only issue with gpg is the recipient must have it 
installed and you have to exchange keys for them to decrypt the file once 
received.  You only need to exchange keys once and then can encrypt and 
decrypt as many files as you'd like...  

If you want more details let me know - I just documented this for another 
audience.


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

That's why you have two ears and one mouth - 
   use them accordingly. Mike Golic
---
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] OT: Email encryption

2007-11-16 Thread Clifton Oliver
Would work if you can guarantee that all of your clients use Outlook.  
But a lot of folks won't go near the thing. ;-)



--

Regards,

Clif


On Nov 16, 2007, at 1:30 PM, Jerry Banker wrote:


Brenda,
If I'm not mistaken Outlook has an encryption feature built into it.
Jerry

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


RE: [U2] OT: Email encryption

2007-11-16 Thread Tom Dodds
Here is a snippet from the Outlook help on encryption.  It looks like your
back to the public key/private key setup which is unacceptable

Encrypting an e-mail message in Microsoft Office Outlook 2007 protects the
privacy of the message by converting it from readable plaintext into
ciphered (scrambled) text. Only the recipient who has the private key
(private key: The secret key kept on the sender's computer that the sender
uses to digitally sign messages to recipients and to decrypt (unlock)
messages from recipients. Private keys should be password protected.) that
matches the public key (public key: The key a sender gives to a recipient so
that the recipient can verify the sender's signature and confirm that the
message was not altered. Recipients also use the public key to encrypt
(lock) e-mail messages to the sender.) used to encrypt the message can
decipher the message. 


Tom Dodds


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jerry Banker
Sent: Friday, November 16, 2007 3:31 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] OT: Email encryption

Brenda,
If I'm not mistaken Outlook has an encryption feature built into it.
Jerry

-Original Message-
From: Brenda Price [mailto:[EMAIL PROTECTED] 
Sent: Friday, November 16, 2007 10:27 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] OT: Email encryption

We sometimes have to email csv files with sensitive information to our
clients.  Right now we are just setting a password to the zipped files.
We really need to encrypt either the whole email or just the attached
files.  We are using Microsoft Outlook.



Any ideas?



Brenda L Price

Senior Programmer Analyst

Affiliated Acceptance Corporation

Sunrise Beach, MO

(800)233-8483
---
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/

__ NOD32 2664 (20071116) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] WebService

2007-11-16 Thread Tony G
Rudy, you haven't been clicking the links I sent you.
Here's a video showing step by step how to create web services to U2 in
under 20 minutes.  This demo uses mv.NET but it could have easily used the
UO.NET code that you have.
  removepleaseNebula-RnD.com/products/gallery.htm

I also have articles on SOAP and Web Services related to MV here:
  removepleaseNebula-RnD.com/articles/index.htm

Regards,
Tony Gravagno
Nebula Research and Development
TG@ always.remove.this.pleaseNebula-RnD.com
(Please do not email to the sneakemail addresses I use for forums, the mail
might get trashed.  Thanks.)


 From: Charles Barouch
 I just attended the U2U in NY. there are *several* 
 sessions designed to help you do exactly that. There is a
 wealth of information on how to expose data in a controlled
 manner. Louis Tur did one on how to build the entire process
 in under 20 minutes.


 Cooper, Rudy wrote:
  Can someone direct me to a source for creating a web service TO UV.
  We are running UV 10.10 on a Windows Xp server.  As a test I want to
  create a simple web service to uv to return some data in a 
  dotnet app.
 
  I have a vb.net app reading and writing to uv using uonet, 
  but I want to create a web service to do the same thing.
 
  I've looked everywhere for a workable example, but have 
  found nothing.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] OT: Email encryption

2007-11-16 Thread Jeff Butera

On Fri, 16 Nov 2007, Clifton Oliver wrote:

Would work if you can guarantee that all of your clients use Outlook. But a 
lot of folks won't go near the thing. ;-)


Amen to that.

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

But Dad - I need most of your attention, not brother.
   Catherine Butera
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] OCONV Extraction Question

2007-11-16 Thread MAJ Programming
According to who?

I know there are some pluses and minuses but where is this decided or is it
just a preference.

Thanks
Mark Johnson
- Original Message -
From: Brutzman, Bill [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Friday, November 16, 2007 11:30 AM
Subject: RE: [U2] OCONV Extraction Question


 Speaking of mis-used commands and side-stepping some of the given code
 craziness...

 It is better practice to atomize the code into discrete elements such
as...

   Var1.F = oconv(Var1, 'MD0')
   crt Var1.F 'R#11'

 rather than to try to kill two birds with one stone by including an oconv
 statement inside a crt statement such as...

   crt oconv(Var1, 'MD0')

 --Bill


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of MAJ Programming
 Sent: Friday, November 16, 2007 12:48 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] OCONV Extraction Question


 This is real smart, making things harder than they should be. Just use .

 Mark Johnson
 - Original Message -
 From: [EMAIL PROTECTED]
 To: u2-users@listserver.u2ug.org
 Sent: Wednesday, November 14, 2007 5:23 PM
 Subject: RE: [U2] OCONV Extraction Question


  Didn't work for me either. It may not fit what you need, but SWAP can
make
  it work.
 
  VAR1 = 'SAM':@VM:'TRUDY'
  SWAP @VM WITH '*' IN VAR1
  FMTSTR = 'G*1'
  CRT OCONV(VAR1,FMTSTR)
 
  Brad
 
 
  U.S. BANCORP made the following annotations
  -
  Electronic Privacy Notice. This e-mail, and any attachments, contains
 information that is, or may be, covered by electronic communications
privacy
 laws, and is also confidential and proprietary in nature. If you are not
the
 intended recipient, please be advised that you are legally prohibited from
 retaining, using, copying, distributing, or otherwise disclosing this
 information in any manner. Instead, please reply to the sender that you
have
 received this communication in error, and then immediately delete it.
Thank
 you in advance for your cooperation.
 
 
 
  -
  ---
  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/