RE: [U2] OT - Launching DOS executables from Universe 10.0.10 on Win 2000

2006-01-09 Thread Brian Leach
Just as an off-topic side point: don't forget the oft-overlooked Windows Scripting Host. This is a very powerful beast built into all versions of windows, running VBScript and JScript (and any other scripting engines installed): very much more powerful and legible than BAT files and capable of

RE: [U2] UNiOLEDB [ad+info]

2006-01-09 Thread Tony Gravagno
See this posting I recently made to CDP on the topic. Then look down two posts to where I provide more detail about the issues and solution. http://tinyurl.com/av4jj When OLEDB does work, I can't tell you how it works with ADO.NET - I'm curious to hear more about this as well. mv.NET uses a

[U2] RPC.CALL : error code 81002

2006-01-09 Thread Ang Suan Yong
Dear All Ive testing to run a program in remote server using RPC.CALL. From the remote server ,i able to notice connection is on during RPC.CONNECT but once execute the RPC.CALL, the connection is break down, return error code error 81002 ( connection.ID does not correspond to

RE: [Potentially SPAM Header Checking] - RE: [U2] [UV] Totaling oddity on UniVerse - Email has different SMTP TO: and MIME TO: fields in the email addresses

2006-01-09 Thread Barry Rogen
Piers, Thanks for the insight and detailed explanation. Barry Rogen PNY Technologies, Inc. Senior Programmer/Analyst (973) 515 - 9700 ext 5327 [EMAIL PROTECTED] - Far better it is to dare mighty things, to win glorious triumphs even

RE: [Potentially SPAM Header Checking] - Re: [U2] [UV] Totaling oddity on UniVerse - Email has different SMTP TO: and MIME TO: fields in the email addresses

2006-01-09 Thread Barry Rogen
YES I DO Barry Rogen PNY Technologies, Inc. Senior Programmer/Analyst (973) 515 - 9700 ext 5327 [EMAIL PROTECTED] - Far better it is to dare mighty things, to win glorious triumphs even though checkered by failure, than to rank with those

RE: [Norton AntiSpam] [U2] RPC.CALL : error code 81002

2006-01-09 Thread Debster
Anyone have an answer to this one? Is it the port # set up the same on the receiving box? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ang Suan Yong Sent: Monday, January 09, 2006 4:33 AM To: U2-Users New Lists Subject: [Norton AntiSpam] [U2] RPC.CALL

RE: [U2] [UD] How to determine the File Name within a dictionary called Subroutine

2006-01-09 Thread David A. Green
Can you send it into the Subroutine as a parameter? SUBR(MY.SUB, @FILENAME, Dict_Name, etc. ) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett Sent: Friday, January 06, 2006 2:04 PM To: u2-users@listserver.u2ug.org Subject: [U2] [UD] How to

[U2] CallHTTP

2006-01-09 Thread Peter Veenhof
Hi all, Does anyone have a simple example of doing a HTTP POST from within Universe Basic? The documentation doesn't have any example code and I've failed to get it to work. Thanks Peter --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit

Re: [U2] CallHTTP

2006-01-09 Thread Wendy Smoak
On 1/9/06, Peter Veenhof [EMAIL PROTECTED] wrote: Does anyone have a simple example of doing a HTTP POST from within Universe Basic? The documentation doesn't have any example code and I've failed to get it to work. The Pick Wiki has: http://www.pickwiki.com/cgi-bin/wiki.pl?CallHTTP and

RE: [Potentially SPAM Header Checking] - [U2] CallHTTP - Email has different SMTP TO: and MIME TO: fields in the email addresses

2006-01-09 Thread Barry Rogen
val= reoptVar= wreoptVar= reoptVar1=PROXY_NAME reoptVar2=PROXY_PORT reoptVar3=VERSION reoptVar4=BUFSIZE reoptVar5=AUTHENTICATE reoptVar6=HEADERS val1= val2= val3=1.1 val4= val5 = val6= wreoptVar1=PROXY_NAME wreoptVar2=PROXY_PORT wreoptVar3=VERSION wreoptVar4=BUFSIZE wreoptVar5=AUTHENTICATE

RE: [U2] CallHTTP

2006-01-09 Thread Perry Taylor
Peter, Here are a couple of local subroutines I use for synchronizing records to other servers using a CGI post. The corresponding CGI program on the hosts generates a return value structured like... SG: NUMBER.OF.ERRORS: SG: ERROR.MESSAGES Where SG is EQUATEd to CHAR(255), ERROR.MESSAGES is

[U2] Emptying I/O Cache

2006-01-09 Thread Perry Taylor
Does anyone have any suggestions as to how to get UniVerse to flush all buffers so that all reads come from disc for testing i/o ? Thanks. Perry Taylor Zirmed, Inc. CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may

[U2] DATE conversion problem

2006-01-09 Thread Sunny Matharoo
Hi I have a specific problem whereby any formatting I do using UniObjects always gives me the date in US format even though all PC settings say UK settings. I was wondering is there something that we need to set for UO to display date in UK format from within the program. We are using UV

RE: [U2] CallHTTP

2006-01-09 Thread Peter Veenhof
Thanks to all who gave me tips, I got it working! I had problems with AM's being inside my posted data as well is a wrong encoding type, once I solved those issues it works perfect. Thanks again Peter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [U2] CallHTTP

2006-01-09 Thread Tony Gravagno
If CallHTTP doesn't do what you need, look into cURL. It's open source and free, well supported, very stable, very popular, and it's quite capable of doing HTTP post w/wo SSL as well as many other tricks. HTH T Wendy Smoak wsmoak-at-gmail.com |U2UG| wrote: On 1/9/06, Peter Veenhof [EMAIL

RE: [U2] DATE conversion problem

2006-01-09 Thread Brian Leach
You need to issue the server command: DATE.FORMAT This would normally be done by the UV.LOGIN paragraph in the UV account or by the LOGIN in the account, but UniObjects bypasses both of these. Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [U2] Emptying I/O Cache

2006-01-09 Thread Ray Wurlod
What we used to do was to have a very large file - larger than the cache size - and do something with it. If it's a UniVerse file, beware that the COUNT verb does not necessarily process the file itself, so that's not a good approach. A text file full of lines of rubbish will do - process it

RE: [U2] DATE conversion problem

2006-01-09 Thread Ray Wurlod
You can change your system default date format in the msg.text file (LOC0020). From UniObjects you can execute a DATE.FORMAT command via a Command object, but this applies only to the Session object from which the Command object was instantiated. --- u2-users mailing list

RE: [U2] Emptying I/O Cache

2006-01-09 Thread Perry Taylor
So am I to assume that all caching is a function of the operating system and not UniVerse? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ray Wurlod Sent: Monday, January 09, 2006 12:38 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Emptying I/O

RE: [U2] [UD] How to determine the File Name within a dictionary called Subroutine

2006-01-09 Thread Bill Haskett
Thanks, David. I was trying to avoid changing a bunch of dictionaries but I guess I've got some more re-engineering to do. :-( Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David A. Green Sent: Monday, January 09, 2006 6:28 AM To:

RE: [U2] [UD] How to determine the File Name within a dictionary called Subroutine

2006-01-09 Thread Allen E. Elwood
Or you could write a program to find and re-engineer the dicts for you! If it's just a few, obviously doing it manually would be faster, but if you're talking hundreds, then a program is an option... Allen E. Elwood www.tortillafc.com -Original Message- From: [EMAIL PROTECTED]

[U2] [UV] Callcenter screen pop

2006-01-09 Thread John Hester
We're looking into new call center software and trying to determine to what degree we can integrate incoming call handling with our UV order entry software. Assuming that we've captured either a phone # via caller ID or a customer account number by having them key it in, does anyone know of a

RE: [U2] [UV] Callcenter screen pop

2006-01-09 Thread David Wolverton
I always did this via a write to a 3rd file -- the Call Center software updates some file, and then my application 'looks' there for anything for it as it does a screen change. If there is data there, it looks up if it can and populates, or it just says 'No data for Phone # x' and then at

[U2] Herve Balestrieri/France/IBM est absent ce Mardi 10/01/2005 et sera de retour Mercredi 11/01/2006. In english : is out of office today Tuesday January 10th. I will be back on Wednesday January

2006-01-09 Thread Herve Balestrieri
I will be out of the office starting 10/01/2006 and will not return until 11/01/2006. Pour les clients accidant au Support Technique des produits IBM U2, veuillez renvoyer votre message sur : [EMAIL PROTECTED] Merci For non-french speaking customers : If your IBM U2 products Technical

RE: [U2] [UV] Callcenter screen pop

2006-01-09 Thread Dan Fitzgerald
There was a UniData call center package named Telathena. I can't say for sure that it did this, but I'm guessing so. Our greatest duty in this life is to help others. And please, if you can't help them, could you at least not hurt them? - H.H. the Dalai Lama When buying selling are

Re: [U2] [UV] Callcenter screen pop

2006-01-09 Thread Richard Brown
I wrote a system sometime ago to do this. I used Wyse 50 or 60 terminals. They have duel bi-directional serial ports. The user would logon to UV and go into the application. The app would swap ports the user would logon to the Call center software. When a call was received, the call center

RE: [U2] [UV] Callcenter screen pop

2006-01-09 Thread Anthony Dzikiewicz
Ive seen something like this when we visited a company in Florida. They are running a Universe system with some terminal emulation on the PC's. What they had was a separate software package that popped up the incomming call in a small window that they cut and pasted into the application. Im sure

RE: [U2] [UV] Callcenter screen pop

2006-01-09 Thread Tony Gravagno
One of my client/colleagues (I believe he'll see this and comment) has collection agencies as his clients. They have check scanners to scan checks which are sent in by debtors. The BASIC application that he maintains uses AccuTerm to call a program that I wrote which drives the scanner and

Re: [U2] [UV] Callcenter screen pop

2006-01-09 Thread John Hester
Anthony Dzikiewicz wrote: Ive seen something like this when we visited a company in Florida. They are running a Universe system with some terminal emulation on the PC's. What they had was a separate software package that popped up the incomming call in a small window that they cut and pasted

Re: [U2] [UV] Callcenter screen pop

2006-01-09 Thread John Hester
Richard Brown wrote: I wrote a system sometime ago to do this. I used Wyse 50 or 60 terminals. They have duel bi-directional serial ports. The user would logon to UV and go into the application. The app would swap ports the user would logon to the Call center software. When a call was

Re: [U2] [UV] Callcenter screen pop

2006-01-09 Thread John Hester
Tony Gravagno wrote: One of my client/colleagues (I believe he'll see this and comment) has collection agencies as his clients. They have check scanners to scan checks which are sent in by debtors. The BASIC application that he maintains uses AccuTerm to call a program that I wrote which

Re: [U2] [UV] Callcenter screen pop

2006-01-09 Thread Dave Taylor
John, Some years ago we installed a product called TelAthena for outgoing call processing and very structured screen sequencing. Following that we developed a much less complex lead tracking and callback system that is integrated with the order processing and A/R customer file in our