Re: [U2] What Program Am I?

2009-06-24 Thread Edward Brown
Regarding debugging phantoms, we've developed an intercept mechanism so when a phantom is triggered from the VB GUI we capture the parameters and return to VB with an error. Then, the programmer can restart the phantom code - but running under a normal session - using an entry point routine that

[U2] Universe Telnet service won't start

2009-06-24 Thread Francis Bennett
I support a site using Universe 10.0.15 on W2000 Terminal where for the second time in a month the UV Telnet service won't start - on reboot the other services start but Telnet doesn't, and attempting to start it from the control panel hangs. Last time the server was replaced! There's a known

Re: [U2] Universe abort

2009-06-24 Thread Franno
I've had similar recently and my problem was doing an ICONV on a null variable with an MR2 conversion. This works fine just running the program at TCL but falls over when run as a PHANTOM. Chris Teri Henry wrote: The below noted error was received during a repetitive (once per hour)

Re: [U2] Universe abort

2009-06-24 Thread Brian Leach
I've seen similar where a phantom was accessing a directory that was also being accessed by a system process: i.e. backup or virus scanner. Regards Brian Teri Henry wrote: The below noted error was received during a repetitive (once per hour) series of functions executed within a

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread Brian Leach
First things to check: 1/ check the event log (sorry if that's stating the obvious). 2/ Use netstat -a -o from the cmd shell to check that there's no other process using the telnet port. 3/ Make sure your antivirus isn't kicking it, esp. if it has just auto-updated. Brian -Original

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread Baker Hughes
I'd like to tag onto what Brian said, once I had a similar situation, and the netstat didn't reveal any *active* services with that port number, but a service I had killed still had the port number bound so this can be pernicious issue, difficult to detect. -Baker

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread ozemail
There use to be a requirement to tick the box to allow the service to interact with the desktop that seemed to resolve a similar issue. Regards David Jordan ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread Francis Bennett
Brian, Baker, David, thanks for the replies. . event log has been checked. . netstat is OK. . will have to get administrators to check AV. Their suspicion last time was that Windows was updated and could not be downdated. David - where is the box re interaction with the desktop? Thanks,

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread Colin Alfke
I've used the tools from http://technet.microsoft.com/en-us/sysinternals/default.aspx (before they were assimilated by MS) to find a problem with UD not starting due to some memory being held by the Windows Management Instrumentation service. If UD started prior it was OK but it wouldn't start

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread Tony G
From: Colin Alfke I've used the tools from http://technet.microsoft.com/en-us/sysinternals/default.aspx (before they were assimilated by MS) to find a problem with UD not starting due to some memory being held by the Windows Management Instrumentation service. If UD started prior it

[U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Charles Stevenson
I don't like the way I use mixed case, so it tends to evolve. Not good, because consistency in programming style throughout an application makes for easier maintenance, maintainability is the god of software quality. So I am wondering how others use mixed case. Do you capitalize/lower/mix

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread George Gallen
one drawback I see is that you could get into some trouble with the Capitalize each word. (far fetched example:) RedOmen = 1 RedoMen = 2 Even though they will be unique variable names, they consist of the same sequence of letters REDOMEN Keeping it to Redomen (no capitalization after the first

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Larry Hiscock
I tend to use all lower case for verbs (e.g. read, for, loop, etc), all upper case for constants (i.e. equates -- equ TAB lit char(9)), and camel case for variables (e.g. orderMaster, customerName, etc) One advantage is that I can tell at a glance the difference between a variable and a constant.

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Norman Morgan
I use all caps except for comments and tags. Comments follow normal proper English capitalization and tags are TitleCase with no spaces. I find that this convention, along with good color choices for the syntax highlighting in AccuTerm's WED editor makes my code easy to read.

[U2] webservice create request

2009-06-24 Thread pam
Hi all, I'm implementing a webservice on UV and I get the result like this ns1:consultaProvinciasResponse . /ns1:consultaProvinciasResponse but I wanna this without ns1 consultaProvinciasResponse * consultaProvinciasResponse I'm sending this like document/literal so I don't know

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Results
I tend to lowercase commands and labels. I only UPCASE variables, file variables, and constants. - CHARLES I Tend to Be Variable BAROUCH ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread u2ug
Almost the same, With addition of : - Pascal case ( upper case for 1st character ) for function/subroutine arguments - UPPER CASE for file variables -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Israel, John R.
I use all upper case for everything except comments. This ensures that if I am looking for code via an ESEARCH, I will have a better chance to find it. Some of my tools don't case, but some do. It will also be backward compatible. John Israel Sr. Programmer/Analyst Dayton Superior

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread jpb-u2ug
Code in uppercase and mixed case for Comments, displayed messages/queries, and error messages. Jerry Banker -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles Stevenson Sent: Wednesday, June 24, 2009 1:39 PM

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Dan Fitzgerald
Oh, you didNot say GOTO... -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles Stevenson Sent: Wednesday, June 24, 2009 2:39 PM To: U2 Users List Subject: [U2] Mixed Case UV Basic Programming Standards. I

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread phil walker
As anyone written or thought about writing a code refactorer for U2-BASIC, this would/could/should standardize code semantics and also appearance? If this could be made configurable to the style you want to use then that would be good...and any program with a GOTO in would be deleted...without

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Brutzman, Bill
I remember seeing functionality in Microsoft Visual Studio that allowed for eight or ten different coding styles, switchable on the fly, useful for programmers working in teams. --Bill ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] uvRunCommand

2009-06-24 Thread u2list0512
://listserver.u2ug.org/mailman/listinfo/u2-users __ Information from ESET NOD32 Antivirus, version of virus signature database 4183 (20090624) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com Curt Lashley 2803 North Boulevard Tampa, FL 33602 Cell: (813) 293

[U2] Unix mail server?

2009-06-24 Thread Burwell, Ed
We can send email from our rs/6000 (AIX version 5.3) using sendmail and it works great. Is it possible to receive email also? Thanks. Ed (We are running Unidata version 7.1) __ This e-mail has been scanned by MCI Managed

Re: [U2] Unix mail server?

2009-06-24 Thread Glen Batchelor
That depends on what you consider receive mail. You can easily bring in mail envelopes since they normally contain text/plain or quoted-printable encoded MIME parts. I wrote an LMTP service for OpenQM that accepts local delivery connections via Inetd and stores in either Maildir or mbox style

Re: [U2] Unix mail server?

2009-06-24 Thread Bob Little
Yes you can also receive mail with sendmail. You will want to make sure your firewall allows access to port 25. Be advised however, Sendmail configuration can be quite a daunting task for the uninitiated. Quite beyond the scope of a mere newsgroup post. :) I found that IBM Support was quite

Re: [U2] Unix mail server?

2009-06-24 Thread Larry Hiscock
In short, yes, however, the first question should be: what are you planning to do with the mail you receive? I wouldn't recommend using your application server as a mail server, since to do that, you'd have to expose it, at least to some degree, to the outside world. Larry Hiscock Western

Re: [U2] Universe Telnet service won't start

2009-06-24 Thread David Jordan
Hi Francis It is in the Services section. Click on the required service and select the second tab which I think is the logon tab. Regards David Jordan ___ U2-Users mailing list U2-Users@listserver.u2ug.org

[U2] AUTO: Mark Shannon/Australia/IBM is out of the office. (returning 29/06/2009)

2009-06-24 Thread Mark Shannon
I am out of the office until 29/06/2009. Note: This is an automated response to your message U2-Users Digest, Vol 2, Issue 70 sent on 25/6/09 5:00:02. This is the only notification you will receive while this person is away. ___ U2-Users mailing

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-24 Thread Hona, David
I prefer and use lower case statements/functions/labels, etc and variables in uppercase. Purely to be consistent, all existing code is coded in the style - layout, format, case of the original. Nothing worse than seeing different standards in the one program. ;) It makes good sense for