Re: [U2] accessing subrotines via IBM u2 Web Services Developer

2009-11-20 Thread icePhalanx
Turning off connection pooling worked a treat, thanks Michael. Just in addition to this, I found that on the Unidata 7.1A client that the check box for toggling connection pooling is missing, but it is there on Unidata 7.1B client. That had me foxed for a while just in case anyone else is

[U2] IBM U2 Web services Deployment

2009-11-20 Thread icePhalanx
Hi, Can anyone throw some light on deploying a web service within IBM U2 Web services developer? I've created the web service and it works a treat, but when I go to deploy it by right clicking on the SOAP server in the U2 Web Services pane, the export option is ghosted out and I can't select

Re: [U2] IBM U2 Web services Deployment

2009-11-20 Thread Carl Dula
The latest version of the Web Services Developer is: Version 1.2.3 Build id: 20090925_7384 I am using this, and do not experience the problem you describe. Perhaps you should upgrade and see what happens, since the version you have appears quite old.

[U2] UniVerse Indexes

2009-11-20 Thread Steve Hinnenkamp
Need help, I'm new at using UniVerse indexes. In a basic program: SELECTINDEX INDX.FLD, MATCH.FLD FROM OPEN.FILE SELECT TO IX.LIST READNEXT ID FROM IX.LIST ELSE (loop until done) This works great (and fast). Now I have come upon a need to bring these matching indexes in sorted a different way.

Re: [U2] UniVerse Indexes

2009-11-20 Thread John Woollam
SSELECTINDEX? No. Indices are sorted in key order. You will find that if you do a TCL SELECT on a file where the key field is indexed, it is the same as a SSELECT. BUT If you do a SELECT or SSELECT on the file from TCL or in an EXECUTE or PERFORM, up to one index will be used. Try adding the word

Re: [U2] UniVerse Indexes

2009-11-20 Thread Steve Hinnenkamp
Thanks John, you put me on the right track -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John Woollam Sent: Friday, November 20, 2009 9:05 AM To: U2 Users List Subject: Re: [U2] UniVerse Indexes SSELECTINDEX?

[U2] uucp

2009-11-20 Thread Barber, Bonnie
Hi everyone. I would like to use uucp to copy files from our AIX production server to our AIX development/test server. I already use rcp to copy programs back and forth, but that does not work for files. Ftping the files to the desktop then to the development server is very tedious. I have

Re: [U2] uucp

2009-11-20 Thread Baakkonen, Rodney A (Rod) 46K
I would tar up the files, zip them and ftp them -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Barber, Bonnie Sent: Friday, November 20, 2009 10:37 AM To: u2-users@listserver.u2ug.org Subject: [U2] uucp Hi

Re: [U2] uucp

2009-11-20 Thread George Gallen
You can use a combination of rsh and tar to copy the files (directories), basically, you tar the directory, then push it into rsh with a command to untar on the other side. Something like: (cd /source ; tar cf - .) | rsh machine 'cd /target ; tar xpvf -' George -Original Message-

[U2] [ad] XLr8Editor Improvements [/ad]

2009-11-20 Thread Doug
Hi All, We are please to announce today that we have upgraded XLr8Editor and Tools to support multiple clipboards. You create as many clipboards as you want. You use these to copy from any U2 database to any U2 database just as if you where using standard copy and paste from any other product

Re: [U2] uucp

2009-11-20 Thread Robert Porter
Hadn't seen uucp used in a while... For a one-shot deal I'd do like Rod says. If this is an ongoing process, I'd either look at scp or rsync over uucp. Robert Robert F. Porter, MCSE, CCNA, ZCE Lead Sr. Programmer / Analyst Laboratory Information Services Ochsner Health System This

Re: [U2] uucp

2009-11-20 Thread Barber, Bonnie
Thanks, I can see as a Universe programmer I am very much out of date with my UNIX skills and need to do a little more research. Neither scp or rsync are in the man pages on my systems. Thanks for the suggestions. Bonnie :-) -Original Message- From:

Re: [U2] uucp

2009-11-20 Thread Carl Dula
Have you tried using rcp -rp to copy to the other AIX system. If you are copying u2 files, they could be a directory. This will copy that directory. -- Carl Dula Voice: 973-227-8440 X111 Pulsar Systems, Inc.

Re: [U2] uucp

2009-11-20 Thread Robert Porter
Sounds like they might need to be installed... :( but they should both be available. Both are significantly improved copy mechanisms. scp (secure cp) works like a remote cp with encryption. rsync is nice as it can keep files in sync between 2 machines transmitting only updated files also

Re: [U2] uucp

2009-11-20 Thread Barber, Bonnie
Thanks, I will definitely look into those commands; they might be on the system, just not in the man pages. Thanks, Bonnie :-) -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Robert Porter Sent: Friday, November

Re: [U2] uucp

2009-11-20 Thread Barber, Bonnie
This might be our answer, it sounds like it would take care of both issues we are trying to resolve. I am doing more research on it. Thanks, Bonnie :-) -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Powell

Re: [U2] uucp

2009-11-20 Thread Anthony W. Youngman
In message 4b06d726.9020...@powellclan.com, Jeff Powell j...@powellclan.com writes Have you tried rsync? You can copy whole directories omitting files that have not changed. rsync -auv --compress source_dir destination_server:/dest_dir In our case we do this every two hours as a backup to a

Re: [U2] uucp

2009-11-20 Thread Larry Hiscock
http://www.manpagez.com/man/1/rsync/ Larry Hiscock Western Computer Services -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Barber, Bonnie Sent: Friday, November 20, 2009 9:52 AM To: U2 Users List Subject: Re:

Re: [U2] uucp

2009-11-20 Thread Glen Batchelor
Plus, you can tell it to tunnel over ssh and with ssh keys setup on the remote host you won't need to enter a password. Glen.mobile RewriteRule ^(garbage|junk)$ /$1 [NC,L] On Nov 20, 2009, at 1:48 PM, Anthony W. Youngman u...@thewolery.demon.co.uk wrote: In message

Re: [U2] uucp

2009-11-20 Thread Andrea Charles
Bonnie, I just tried using rcp -rp with a hashed file and it works fine. What is it that doesn't work? Andrea From: u2-users-boun...@listserver.u2ug.org on behalf of Barber, Bonnie Sent: Fri 11/20/2009 11:37 AM To: u2-users@listserver.u2ug.org Subject: [U2]

Re: [U2] uucp

2009-11-20 Thread Barber, Bonnie
It was a while back, and I do not remember for sure but I think my data was scrambled; luckily it was only test file. We are on IBM AIX systems. I might have not used the same options you are showing here. I will try it again this weekend when I have a little more time. Thanks, Bonnie :-)

[U2] xmlconfig

2009-11-20 Thread Doug Chanco
Anyone know the default location of where the above file would be located in a aix system running universe 10.3.x? I need to set the hidemv and hidems to the xmlconfig file Can I just create the file and put the info in it? Whats happening is that Universe adds the /mv and /ms tags to

Re: [U2] Migrating OS

2009-11-20 Thread Ray Wurlod
Hi Jeff, You need to byte-swap data as part of the migration process. For example, what's stored as (hex) 004E on the Solaris machine (unless it uses Intel chips) is stored as (hex) 4E00 on the Intel-chipped Linux machine. UniVerse, as someone else noted has a utility called fnuxi (also

Re: [U2] Migrating OS

2009-11-20 Thread Jeff Butera
You need to byte-swap data as part of the migration process. For example, what's stored as (hex) 004E on the Solaris machine (unless it uses Intel chips) is stored as (hex) 4E00 on the Intel-chipped Linux machine. UniVerse, as someone else noted has a utility called fnuxi (also known as

Re: [U2] Migrating OS

2009-11-20 Thread Don
On Unidata the byte conversion program are: In [ud install]\ud\bin convdata.exe - Data files convidx.exe - Indexes (you may be better off rebuilding indexes). convcode.exe - the compile code/object files just type the command with no arguments for their usage. Don Verhagen People 2.0 Global

Re: [U2] uucp

2009-11-20 Thread Doug Chanco
While personally I like scp expecially when you get the keys setup and can scp files without the need for a passwd between systems Could you not use q pointers from one system to the other? We use this to copy data from a database items from one aix system to another The problem with scp

Re: [U2] Migrating OS

2009-11-20 Thread Jeffrey Butera
Thanks Don - I did already run all three and still encountered issues. Sent from my iPhone Jeff Butera jbut...@hampshire.edu On Nov 20, 2009, at 7:35 PM, Don u2-us...@southeast-florida.com wrote: On Unidata the byte conversion program are: In [ud install]\ud\bin convdata.exe - Data

Re: [U2] Migrating OS

2009-11-20 Thread Wally Terhune
Jeff: 1) you haven't actually detailed the problems you encountered 2) you do need to move the files in a 'binary' mode 3) As you pointed out, Datatel has migrated many customers from Solaris to Linux. Perhaps you should re-direct your queries to your support provider (Datatel) - and just post

Re: [U2] Migrating OS

2009-11-20 Thread Jeff Butera
Wally wrote: 1) you haven't actually detailed the problems you encountered 2) you do need to move the files in a 'binary' mode 3) As you pointed out, Datatel has migrated many customers from Solaris to Linux. Perhaps you should re-direct your queries to your support provider (Datatel) - and

Re: [U2] xmlconfig

2009-11-20 Thread Boydell, Stuart
Xmlconfig can be in the uv home directory (global) or account directory (local) - but saying that, I couldn't get it working when I tried. (10.3.3/Linux) (Or using the U2XMLOUT.map either) Regards, Stuart -Original Message- From: u2-users-boun...@listserver.u2ug.org

[U2] Haydon Bishop is out of the office.

2009-11-20 Thread Haydon Bishop
I will be out of the office starting 20/11/2009 and will not return until 23/11/2009. I will respond to your message when I return. ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users