[U2] [UV] XML Parser

2011-02-23 Thread Perry Taylor
Can someone recommend an XML parser to run on RHEL?  I'm tired of
fighting trying to get the XML support in BASIC  to work.  Any
suggestions?

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 contain confidential and privileged information.  Any
unauthorized review, use, disclosure or distribution is 
prohibited. ZirMed, Inc. has strict policies regarding the 
content of e-mail communications, specifically Protected Health 
Information, any communications containing such material will 
be returned to the originating party with such advisement 
noted. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the 
original message.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread George Gallen
There is always the XML parsing module for PERL, that will take an XML file and
parse it into an array type structure. It's fairly quick, and any perl programs
would pretty much run under windows or *nix since the modules are available for
both platforms.

George

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Perry Taylor
 Sent: Wednesday, February 23, 2011 8:50 AM
 To: U2 Users List
 Subject: [U2] [UV] XML Parser
 
 Can someone recommend an XML parser to run on RHEL?  I'm tired of
 fighting trying to get the XML support in BASIC  to work.  Any
 suggestions?
 
 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 contain confidential and privileged information.  Any
 unauthorized review, use, disclosure or distribution is
 prohibited. ZirMed, Inc. has strict policies regarding the
 content of e-mail communications, specifically Protected Health
 Information, any communications containing such material will
 be returned to the originating party with such advisement
 noted. If you are not the intended recipient, please contact
 the sender by reply e-mail and destroy all copies of the
 original message.
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread Manu Fernandes
Hi,

For big interchange, we use Altova MapForce, 
- you build xml mapping from/to other structure in wyswyg,
- MapForce build a java jar Library you can deliver as free runtime 
executable .
- you start java ...  from uv 
-- the source can be a sql source, a text file, ... 
-- the result can be text, sql, ... other format

Else, more programatically, we build function with python called from uv.

Under UV, we store the complete xml CLOB, the use a xpath query to read a 
value. (detail available off list)

I hope this help.

Manu

 -Message d'origine-
 De : u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] De la part de Perry Taylor
 Envoyé : mercredi 23 février 2011 14:50
 À : U2 Users List
 Objet : [U2] [UV] XML Parser
 
 Can someone recommend an XML parser to run on RHEL?  I'm tired of
 fighting trying to get the XML support in BASIC  to work.  Any suggestions?
 
 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 contain confidential
 and privileged information.  Any unauthorized review, use, disclosure or
 distribution is prohibited. ZirMed, Inc. has strict policies regarding the 
 content
 of e-mail communications, specifically Protected Health Information, any
 communications containing such material will be returned to the originating
 party with such advisement noted. If you are not the intended recipient,
 please contact the sender by reply e-mail and destroy all copies of the
 original message.
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread Steve Romanow

On 2/23/2011 8:49 AM, Perry Taylor wrote:

Can someone recommend an XML parser to run on RHEL?  I'm tired of
fighting trying to get the XML support in BASIC  to work.  Any
suggestions?

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 contain confidential and privileged information.  Any
unauthorized review, use, disclosure or distribution is
prohibited. ZirMed, Inc. has strict policies regarding the
content of e-mail communications, specifically Protected Health
Information, any communications containing such material will
be returned to the originating party with such advisement
noted. If you are not the intended recipient, please contact
the sender by reply e-mail and destroy all copies of the
original message.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

I like the lxml python module.  I use it frequently.
http://lxml.de/
If the rhel python packages are still ~2.4, you can use the EPEL repo to 
get pytyhon 2.6 alongside of 2.4.


http://fedoraproject.org/wiki/EPEL



I also have xml starlet installed, which may be faster (but not as 
flexible.)

http://xmlstar.sourceforge.net/docs.php


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread George Gallen
Is python 2.6 needed?

I did the easy_install lxml , and it didn't give any install errors, and did
  install the latest lxml 2.3

My RHEL is runining python 2.4.3

I haven't done much with python, but might consider playing with it, as I have
   some XML project in mind.

George

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
 Sent: Wednesday, February 23, 2011 10:07 AM
 To: U2 Users List
 Subject: Re: [U2] [UV] XML Parser
 
 I like the lxml python module.  I use it frequently.
 http://lxml.de/
 If the rhel python packages are still ~2.4, you can use the EPEL repo
 to
 get pytyhon 2.6 alongside of 2.4.
 
 http://fedoraproject.org/wiki/EPEL
 
 
 
 I also have xml starlet installed, which may be faster (but not as
 flexible.)
 http://xmlstar.sourceforge.net/docs.php
 
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread Steve Romanow

On 2/23/2011 10:30 AM, George Gallen wrote:

Is python 2.6 needed?

I did the easy_install lxml , and it didn't give any install errors, and did
   install the latest lxml 2.3

My RHEL is runining python 2.4.3

I haven't done much with python, but might consider playing with it, as I have
some XML project in mind.

George


-Original Message-
From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
Sent: Wednesday, February 23, 2011 10:07 AM
To: U2 Users List
Subject: Re: [U2] [UV] XML Parser

I like the lxml python module.  I use it frequently.
http://lxml.de/
If the rhel python packages are still ~2.4, you can use the EPEL repo
to
get pytyhon 2.6 alongside of 2.4.

http://fedoraproject.org/wiki/EPEL



I also have xml starlet installed, which may be faster (but not as
flexible.)
http://xmlstar.sourceforge.net/docs.php


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
It may not be, but I do quite a bit with python so I am addicted to 
new.  I am eagerly trying to get 2.7.1 rpms for aix.


2.6+ has a LOT of great new things (with statement,  argparse,  umm)  
2.4 is just too old for my use.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread Steve Romanow

On 2/23/2011 10:30 AM, George Gallen wrote:

Is python 2.6 needed?

I did the easy_install lxml , and it didn't give any install errors, and did
   install the latest lxml 2.3

My RHEL is runining python 2.4.3

I haven't done much with python, but might consider playing with it, as I have
some XML project in mind.

George


-Original Message-
From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
Sent: Wednesday, February 23, 2011 10:07 AM
To: U2 Users List
Subject: Re: [U2] [UV] XML Parser

I like the lxml python module.  I use it frequently.
http://lxml.de/
If the rhel python packages are still ~2.4, you can use the EPEL repo
to
get pytyhon 2.6 alongside of 2.4.

http://fedoraproject.org/wiki/EPEL



I also have xml starlet installed, which may be faster (but not as
flexible.)
http://xmlstar.sourceforge.net/docs.php


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
Not a parser, but a streaming generator, check out ElementFlow.  It is 
really nice.
I just wish I could figure a way to use this from U2.  The XML DOM stuff 
in 6.1 is infuriating with memory leaks.

http://pypi.python.org/pypi/elementflow


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] FW: Retrieving data from remote SQL DB from Universe via ODBC?

2011-02-23 Thread Ken Ford
Fellow U2 Users,
I am getting the message 'Telnet session limit has been reached' when I try to 
log in to Universe.  The machine is a development only machine and has 2 
Universe licences assigned to it, but this occurs when none are in use!  Any 
suggestions.  There are no phantoms running.  I could find nothing pertinent in 
the archives or on the web.

Ken Ford
Software Engineer=20
Brisbane, Queensland, Australia.


#
This email (inc all attachments) is for the use of the intended recipient(s) 
only.
Privileged or confidential information may be contained in this communication. 
If you have received this email in error, please notify the sender immediately 
and then
delete all copies of this message from your computer network. If you are not the
intended recipient, you must not keep, use, disclose, copy or distribute this 
email
without the author's prior permission. If you are the intended recipient and 
you do
not wish to receive similar electronic messages from us in future, then please
respond to the sender to this effect.

We have taken precautions to minimise the risk of transmitting software 
viruses, but
advise you to carry out your own virus checks on this email and its 
attachments. We
do not accept liability for any loss or damage caused by software viruses and 
do not
represent that this transmission is free from viruses or other defects. 

FirstMac Limited (ABN 59 094 145 963)  (AFSL 290600)
#
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV] XML Parser

2011-02-23 Thread Tony Gravagno
 From: Perry Taylor
 Can someone recommend an XML parser to run on RHEL? 
 I'm tired of fighting trying to get the XML support in 
 BASIC to work.  Any suggestions?


I recommend you look in the open market (FOSS/commercial) for
software that satisfies your business and technical requirements.
You can interface anything to your UV system.  So asking for
ideas in a U2-specific forum is a nice gesture but it
unnecessarily restricts responses to a small pool of possible
respondents.

For example, in addition to other recommendations posted so far,
I suggest you take a look at the XML handling in Mono and Java,
where your code is portable across many OS's, and maintainable by
some millions of people in the open market:
http://www.mono-project.com/Using_XML
http://download.oracle.com/javase/6/docs/technotes/guides/xml/in
dex.html

I've blogged on my approach to this kind of thing:
nospamNebula-RnD.com/blog/tech/mv/2009/08/mv-to-anything.html
(Copy everything after nospam)

HTH
T

Tony Gravagno
Nebula Research and Development
TG@ remove.pleaseNebula-RnD.com
Nebula RD sells mv.NET worldwide
and provides related development services
remove.pleaseNebula-RnD.com/blog
Visit PickWiki.com! Contribute!
http://Twitter.com/TonyGravagno 

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] U2 soap server on startup

2011-02-23 Thread Steve Romanow


I am assuming you are talking about U2 on Windows?
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] U2 soap server on startup

2011-02-23 Thread George Gallen
is this windows or UV?

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Lettau, Jeff
 Sent: Wednesday, February 23, 2011 4:29 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] U2 soap server on startup
 
 I just noticed a potentially bad thing.  The soap service will only run
 if you run it manually after logging into the server.  If I log off of
 the server the soap service stops running.
 I'm guessing the problem is that it is not actually running as a
 service, but I don't see how to make it run as a service.
 
 Does anyone have any suggestions on how to enable a soap server to run
 on startup?
 
 Jeffrey Lettau
 ERP Systems Manager
 polkaudio
 
 
 
 
   
 
 
 Disclaimer: This email may contain confidential and/or privileged
 information. It is intended only for the person or persons to whom it
 is addressed. Any unauthorized review, use, or distribution is
 prohibited. If you are not the intended recipient, please contact the
 sender by reply email or telephone and destroy all copies of the
 original message.
 
 Please consider the environment before printing this email.
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] U2 soap server on startup

2011-02-23 Thread George Gallen
windows or unix

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Lettau, Jeff
 Sent: Wednesday, February 23, 2011 4:29 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] U2 soap server on startup
 
 I just noticed a potentially bad thing.  The soap service will only run
 if you run it manually after logging into the server.  If I log off of
 the server the soap service stops running.
 I'm guessing the problem is that it is not actually running as a
 service, but I don't see how to make it run as a service.
 
 Does anyone have any suggestions on how to enable a soap server to run
 on startup?
 
 Jeffrey Lettau
 ERP Systems Manager
 polkaudio
 
 
 
 
   
 
 
 Disclaimer: This email may contain confidential and/or privileged
 information. It is intended only for the person or persons to whom it
 is addressed. Any unauthorized review, use, or distribution is
 prohibited. If you are not the intended recipient, please contact the
 sender by reply email or telephone and destroy all copies of the
 original message.
 
 Please consider the environment before printing this email.
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] U2 soap server on startup

2011-02-23 Thread George Gallen
If it's windows, what happens if you put the .exe in the STARTUP folder?
If it's unix, can you add the command to start the service into the file 
/etc/rc.local

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Lettau, Jeff
 Sent: Wednesday, February 23, 2011 4:29 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] U2 soap server on startup
 
 I just noticed a potentially bad thing.  The soap service will only run
 if you run it manually after logging into the server.  If I log off of
 the server the soap service stops running.
 I'm guessing the problem is that it is not actually running as a
 service, but I don't see how to make it run as a service.
 
 Does anyone have any suggestions on how to enable a soap server to run
 on startup?
 
 Jeffrey Lettau
 ERP Systems Manager
 polkaudio
 
 
 
 
   
 
 
 Disclaimer: This email may contain confidential and/or privileged
 information. It is intended only for the person or persons to whom it
 is addressed. Any unauthorized review, use, or distribution is
 prohibited. If you are not the intended recipient, please contact the
 sender by reply email or telephone and destroy all copies of the
 original message.
 
 Please consider the environment before printing this email.
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] U2 soap server on startup

2011-02-23 Thread LeRoy Dreyfuss
What I've noticed is that on Windows the SOAP (Jetty) server runs as an
instance of javaw.exe. When you create the server and start it using Web
Services Developer, you can check the U2 SOAP Server log in the bottom
pane to ensure it started. By default it will listen using port 8181. You
change that when you create or edit the server.

You can see the port and status by running something like netstat -an from
a DOS command window. When you close Web Services Developer, you should
still see it listing on that port.

If all is well, you can deploy the SOAP server to another Windows host by
first exporting it, then deploying it. The instructions are in the Web
Services Developer manual under chapter 7. After completing the deployment
process, you can use the runsoapserver.bat and stopsoapserver.bat batch
files to manage it.

If you don't need to deploy it on a separate host, then simply use the
batch files as required on the local Windows host.

Regards,

LeRoy



On 2/23/11 4:28 PM, Lettau, Jeff jlet...@polkaudio.com wrote:

I just noticed a potentially bad thing.  The soap service will only run
if you run it manually after logging into the server.  If I log off of
the server the soap service stops running.
I'm guessing the problem is that it is not actually running as a service,
but I don't see how to make it run as a service.

Does anyone have any suggestions on how to enable a soap server to run on
startup?

Jeffrey Lettau
ERP Systems Manager
polkaudio


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] U2 soap server on startup

2011-02-23 Thread Lettau, Jeff
I just noticed a potentially bad thing.  The soap service will only run if you 
run it manually after logging into the server.  If I log off of the server the 
soap service stops running.
I'm guessing the problem is that it is not actually running as a service, but I 
don't see how to make it run as a service.

Does anyone have any suggestions on how to enable a soap server to run on 
startup?

Jeffrey Lettau
ERP Systems Manager
polkaudio




  


Disclaimer: This email may contain confidential and/or privileged information. 
It is intended only for the person or persons to whom it is addressed. Any 
unauthorized review, use, or distribution is prohibited. If you are not the 
intended recipient, please contact the sender by reply email or telephone and 
destroy all copies of the original message.

Please consider the environment before printing this email.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Telnet session limt has been reached (was Retrieving data from remote SQL DB from Universe via ODBC?)

2011-02-23 Thread Ken Ford
Firstly, my apologies for using an old posting's subject line as clarified in 
the new subject line!
Now, the problem described in my last posting (the body of which was correct!) 
has been solved.  The message in question was actually generated by our 
Universe Administrator's putting a new step in the UV account login paragraph 
and forgetting to tell the Universe development staff (unless I have just 
forgotten being told - quite possible).
Thanks anyone who was wrestling with a response or who has responded already.  
I shall try to expect the unexpected in future before burdening the list with 
such questions. :-)

Ken Ford
Software Engineer 
Brisbane, Queensland, Australia.
#
This email (inc all attachments) is for the use of the intended recipient(s) 
only.
Privileged or confidential information may be contained in this communication. 
If you have received this email in error, please notify the sender immediately 
and then
delete all copies of this message from your computer network. If you are not the
intended recipient, you must not keep, use, disclose, copy or distribute this 
email
without the author's prior permission. If you are the intended recipient and 
you do
not wish to receive similar electronic messages from us in future, then please
respond to the sender to this effect.

We have taken precautions to minimise the risk of transmitting software 
viruses, but
advise you to carry out your own virus checks on this email and its 
attachments. We
do not accept liability for any loss or damage caused by software viruses and 
do not
represent that this transmission is free from viruses or other defects. 

FirstMac Limited (ABN 59 094 145 963)  (AFSL 290600)
#
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] U2 soap server on startup

2011-02-23 Thread Hona, David
See the Webservices.pdf in the U2 Documentation. Specifically Deploying Web 
Services...If in Windows create your own scheduled task or UNIX - a crontab 
job.

Also, from the archivesthis may help if you like to know what's going on 
behind the scenes (this pre-dates the above chapter being published in that PDF 
guide):
http://www.mail-archive.com/u2-users@listserver.u2ug.org/msg24130.html

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Lettau, Jeff
Sent: Thursday, 24 February 2011 8:29 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] U2 soap server on startup

I just noticed a potentially bad thing.  The soap service will only run if you 
run it manually after logging into the server.  If I log off of the server the 
soap service stops running.
I'm guessing the problem is that it is not actually running as a service, but I 
don't see how to make it run as a service.

Does anyone have any suggestions on how to enable a soap server to run on 
startup?

Jeffrey Lettau
ERP Systems Manager
polkaudio


** IMPORTANT MESSAGE *   
This e-mail message is intended only for the addressee(s) and contains 
information which may be
confidential. 
If you are not the intended recipient please advise the sender by return email, 
do not use or
disclose the contents, and delete the message and any attachments from your 
system. Unless
specifically indicated, this email does not constitute formal advice or 
commitment by the sender
or the Commonwealth Bank of Australia (ABN 48 123 123 124) or its subsidiaries. 
We can be contacted through our web site: commbank.com.au. 
If you no longer wish to receive commercial electronic messages from us, please 
reply to this
e-mail by typing Unsubscribe in the subject line. 
**



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Telnet session limt has been reached (was Retrieving data from remote SQL DB from Universe via ODBC?)

2011-02-23 Thread Hona, David
Oh, did you fix your ODBC problem? :-)
I can't recall you posting any responses back??

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Ken Ford
Sent: Thursday, 24 February 2011 11:47 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Telnet session limt has been reached (was Retrieving data from 
remote SQL DB from Universe via ODBC?)

Firstly, my apologies for using an old posting's subject line as clarified in 
the new subject line!
Now, the problem described in my last posting (the body of which was correct!) 
has been solved.  The message in question was actually generated by our 
Universe Administrator's putting a new step in the UV account login paragraph 
and forgetting to tell the Universe development staff (unless I have just 
forgotten being told - quite possible).
Thanks anyone who was wrestling with a response or who has responded already.  
I shall try to expect the unexpected in future before burdening the list with 
such questions. :-)

Ken Ford
Software Engineer 
Brisbane, Queensland, Australia.

** IMPORTANT MESSAGE *   
This e-mail message is intended only for the addressee(s) and contains 
information which may be
confidential. 
If you are not the intended recipient please advise the sender by return email, 
do not use or
disclose the contents, and delete the message and any attachments from your 
system. Unless
specifically indicated, this email does not constitute formal advice or 
commitment by the sender
or the Commonwealth Bank of Australia (ABN 48 123 123 124) or its subsidiaries. 
We can be contacted through our web site: commbank.com.au. 
If you no longer wish to receive commercial electronic messages from us, please 
reply to this
e-mail by typing Unsubscribe in the subject line. 
**



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users