Re: [U2] UniVerse over Solaris Logon Question.

2012-01-12 Thread John Varney
I recently went to work for a company that is running UniVerse over Solaris.
This seems to be working really well. 

We are running ManFact and are setting up multi-plant operations. As part of
the upgrade we are changing the live account from MANLIVE to something else.
I'm not doing the upgrade as I kinda walked into the middle of it, and the
person who is doing it seems very well versed in ManFact so no worries
there.

My question is where do we change the default login account? Come next
Monday, people should not be logging into MANLIVE. We looked at the initial
login script on Solaris but that just starts a uv session. Any ideas?




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


Re: [U2] UniVerse over Solaris Logon Question.

2012-01-12 Thread Joshua Gallant
When you execute the uv session the local directory you are in at the time
is the account directory.  I'd think you are changing to that directory in
your login script or setting the path the same for every Solaris account.

Something like this in your .profile file could help:

cd /path/to/account/directoryexec `cat /.uvhome`/bin/uv


Note those are back ticks above.

- Josh





On 1/12/12 9:04 AM, John Varney jvar...@soft-target-tech.com wrote:

I recently went to work for a company that is running UniVerse over
Solaris.
This seems to be working really well.

We are running ManFact and are setting up multi-plant operations. As part
of
the upgrade we are changing the live account from MANLIVE to something
else.
I'm not doing the upgrade as I kinda walked into the middle of it, and the
person who is doing it seems very well versed in ManFact so no worries
there.

My question is where do we change the default login account? Come next
Monday, people should not be logging into MANLIVE. We looked at the initial
login script on Solaris but that just starts a uv session. Any ideas?




___
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] UniVerse over Solaris Logon Question.

2012-01-12 Thread Sammartino, Richard
We ran Unidata on Solaris.  Try checking /etc/passwd.  This is where the login 
account was stored on our configuration.

Rich
- Original Message -
From: John Varney jvar...@soft-target-tech.com
To: U2 Users List u2-users@listserver.u2ug.org
Sent: Thursday, January 12, 2012 9:04:52 AM
Subject: Re: [U2] UniVerse over Solaris Logon Question.

I recently went to work for a company that is running UniVerse over Solaris.
This seems to be working really well. 

We are running ManFact and are setting up multi-plant operations. As part of
the upgrade we are changing the live account from MANLIVE to something else.
I'm not doing the upgrade as I kinda walked into the middle of it, and the
person who is doing it seems very well versed in ManFact so no worries
there.

My question is where do we change the default login account? Come next
Monday, people should not be logging into MANLIVE. We looked at the initial
login script on Solaris but that just starts a uv session. Any ideas?




___
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] Extracting XML attributes

2012-01-12 Thread Bobby Worley
Does anybody have an experience reading in very large XML files into
Universe on AIX using PrepareXML() function? 

We received a 176Mb XML file, and I'm running out of memory.  I've maxed
out ulimit -d and it still blows up with this error:

ERROR MESSAGE A DOM error occured during parsing.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Wednesday, November 16, 2011 7:34 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

Turns out it is a memory issue. My XML file is 16Mb.   Setting ulimit -d
75 resolved the issue. 



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Friday, November 11, 2011 10:42 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

My latest challenge:

PREPARE.XML FEED.XML MYXML
Prepare the XMLDOM failed.
XMLParser error message: A DOM error occured during parsing.

UNIVERSE RELLEVEL
001 X
002 11.1.0
003 PICK
004 PICK.FORMAT
005 11.1.0

Aix Version 5.3.0.0

FEED.XML is 16mb. 

It prepares just fine on UV 10.1.17.  Unfortunately it wont list on UV
10.1 because UV 10.1 is not aware of namespaces.

This is making my pull my hair out... I don't need this on a Friday.

Bob Worley
Coburn Supply

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


Re: [U2] Extracting XML attributes

2012-01-12 Thread Joshua Gallant
When working with large XML files in the past I've always run into issues
like this but I use a combination of xmapopen, xmapreadnext, and
xmapclose.  I couldn't ever come up with a great way to use the UV tools
for parsing a large file at once so I open as a sequential file and parse
the file until I have a full record.  I then process that one record with
the xml functions.  There might be 15 other ways but this has always
served its purpose.

- Josh





On 1/12/12 11:10 AM, Bobby Worley bwor...@coburns.com wrote:

Does anybody have an experience reading in very large XML files into
Universe on AIX using PrepareXML() function?

We received a 176Mb XML file, and I'm running out of memory.  I've maxed
out ulimit -d and it still blows up with this error:

ERROR MESSAGE A DOM error occured during parsing.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Wednesday, November 16, 2011 7:34 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

Turns out it is a memory issue. My XML file is 16Mb.   Setting ulimit -d
75 resolved the issue.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Friday, November 11, 2011 10:42 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

My latest challenge:

PREPARE.XML FEED.XML MYXML
Prepare the XMLDOM failed.
XMLParser error message: A DOM error occured during parsing.

UNIVERSE RELLEVEL
001 X
002 11.1.0
003 PICK
004 PICK.FORMAT
005 11.1.0

Aix Version 5.3.0.0

FEED.XML is 16mb. 

It prepares just fine on UV 10.1.17.  Unfortunately it wont list on UV
10.1 because UV 10.1 is not aware of namespaces.

This is making my pull my hair out... I don't need this on a Friday.

Bob Worley
Coburn Supply

___
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] Extracting XML attributes

2012-01-12 Thread Bobby Worley
I suppose sequential reads is one approach I may need to consider,
especially if I develop this as a tool for our end-users (doing the XML
import). 

I was able to process the large file - It took some jumping through
hoops, but I got the file imported.   20,669 records. I set ulimit -d to
unlimited , but in order to do so, I had to login as root, set ulimit,
then go into UV.  Then the program completed. This is on a back up UV
server with no other users.

- Bob Worley
Coburn Supply Co


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Joshua
Gallant
Sent: Thursday, January 12, 2012 10:30 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

When working with large XML files in the past I've always run into
issues
like this but I use a combination of xmapopen, xmapreadnext, and
xmapclose.  I couldn't ever come up with a great way to use the UV tools
for parsing a large file at once so I open as a sequential file and
parse
the file until I have a full record.  I then process that one record
with
the xml functions.  There might be 15 other ways but this has always
served its purpose.

- Josh





On 1/12/12 11:10 AM, Bobby Worley bwor...@coburns.com wrote:

Does anybody have an experience reading in very large XML files into
Universe on AIX using PrepareXML() function?

We received a 176Mb XML file, and I'm running out of memory.  I've maxed
out ulimit -d and it still blows up with this error:

ERROR MESSAGE A DOM error occured during parsing.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Wednesday, November 16, 2011 7:34 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

Turns out it is a memory issue. My XML file is 16Mb.   Setting ulimit -d
75 resolved the issue.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Friday, November 11, 2011 10:42 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

My latest challenge:

PREPARE.XML FEED.XML MYXML
Prepare the XMLDOM failed.
XMLParser error message: A DOM error occured during parsing.

UNIVERSE RELLEVEL
001 X
002 11.1.0
003 PICK
004 PICK.FORMAT
005 11.1.0

Aix Version 5.3.0.0

FEED.XML is 16mb. 

It prepares just fine on UV 10.1.17.  Unfortunately it wont list on UV
10.1 because UV 10.1 is not aware of namespaces.

This is making my pull my hair out... I don't need this on a Friday.

Bob Worley
Coburn Supply


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


Re: [U2] Extracting XML attributes

2012-01-12 Thread Symeon Breen
Have done large (10 gig) xml files into unidata

Firstly check the file is correct using something like xmlwf  any error will
just bonb out u2
Also what character encoding is it using ? it is important your u2 session
is configured for the correct character encoding  (well it is in udt at
least)




-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: 12 January 2012 16:10
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

Does anybody have an experience reading in very large XML files into
Universe on AIX using PrepareXML() function? 

We received a 176Mb XML file, and I'm running out of memory.  I've maxed out
ulimit -d and it still blows up with this error:

ERROR MESSAGE A DOM error occured during parsing.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Wednesday, November 16, 2011 7:34 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

Turns out it is a memory issue. My XML file is 16Mb.   Setting ulimit -d
75 resolved the issue. 



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Friday, November 11, 2011 10:42 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

My latest challenge:

PREPARE.XML FEED.XML MYXML
Prepare the XMLDOM failed.
XMLParser error message: A DOM error occured during parsing.

UNIVERSE RELLEVEL
001 X
002 11.1.0
003 PICK
004 PICK.FORMAT
005 11.1.0

Aix Version 5.3.0.0

FEED.XML is 16mb. 

It prepares just fine on UV 10.1.17.  Unfortunately it wont list on UV
10.1 because UV 10.1 is not aware of namespaces.

This is making my pull my hair out... I don't need this on a Friday.

Bob Worley
Coburn Supply

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1416 / Virus Database: 2109/4137 - Release Date: 01/11/12

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


Re: [U2] Extracting XML attributes

2012-01-12 Thread Charlie Noah

Hi Bobby,

If the data isn't corrupted in some way and the process is still this 
fragile, you may need to think of a whole new approach. If it takes 
logging in as root, you'll probably end up doing the job yourself - not 
an ideal choice (Do my job for me once and I thank you, do it twice and 
it's yours). I'm not sure what that approach might be, since logical 
XML data groups can be quite large and variable. XML seems to sacrifice 
size for function, as some other things we all know and love do. 
Whatever you end up with needs to be robust and very scalable. Sorry I 
can't offer any ideas at the moment.


Regards,
Charlie Noah

On 01-12-2012 11:02 AM, Bobby Worley wrote:

I suppose sequential reads is one approach I may need to consider,
especially if I develop this as a tool for our end-users (doing the XML
import).

I was able to process the large file - It took some jumping through
hoops, but I got the file imported.   20,669 records. I set ulimit -d to
unlimited , but in order to do so, I had to login as root, set ulimit,
then go into UV.  Then the program completed. This is on a back up UV
server with no other users.

- Bob Worley
Coburn Supply Co


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Joshua
Gallant
Sent: Thursday, January 12, 2012 10:30 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

When working with large XML files in the past I've always run into
issues
like this but I use a combination of xmapopen, xmapreadnext, and
xmapclose.  I couldn't ever come up with a great way to use the UV tools
for parsing a large file at once so I open as a sequential file and
parse
the file until I have a full record.  I then process that one record
with
the xml functions.  There might be 15 other ways but this has always
served its purpose.

- Josh





On 1/12/12 11:10 AM, Bobby Worleybwor...@coburns.com  wrote:

Does anybody have an experience reading in very large XML files into
Universe on AIX using PrepareXML() function?

We received a 176Mb XML file, and I'm running out of memory.  I've maxed
out ulimit -d and it still blows up with this error:

ERROR MESSAGE A DOM error occured during parsing.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Wednesday, November 16, 2011 7:34 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

Turns out it is a memory issue. My XML file is 16Mb.   Setting ulimit -d
75 resolved the issue.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Friday, November 11, 2011 10:42 AM
To: U2 Users List
Subject: Re: [U2] Extracting XML attributes

My latest challenge:


PREPARE.XML FEED.XML MYXML

Prepare the XMLDOM failed.
XMLParser error message: A DOM error occured during parsing.

UNIVERSE RELLEVEL
001 X
002 11.1.0
003 PICK
004 PICK.FORMAT
005 11.1.0

Aix Version 5.3.0.0

FEED.XML is 16mb.

It prepares just fine on UV 10.1.17.  Unfortunately it wont list on UV
10.1 because UV 10.1 is not aware of namespaces.

This is making my pull my hair out... I don't need this on a Friday.

Bob Worley
Coburn Supply


___
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


[U2] DesignBais Website

2012-01-12 Thread Oaks, Harold
I am interested in showing my boss DesignBais and would like to download
the trial copy.  Unfortunately, when trying to open the website
www.designbais.com I see nothing at all, except the message Done, but
with errors on the page in a bottom bar.  I don't even have a phone# to
call because the webpage is blank.  Can anyone help me out?  At least to
inform DesignBais that their web page has a problem.

Thanks-
Harold Oaks
Clark County, WA, USA

This e-mail and related attachments and any response may be subject to public 
disclosure under state law.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-12 Thread George Gallen
It worked fine for me. 

George

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Oaks, Harold
Sent: Thursday, January 12, 2012 2:39 PM
To: U2 Users List
Subject: [U2] DesignBais Website

I am interested in showing my boss DesignBais and would like to download
the trial copy.  Unfortunately, when trying to open the website
www.designbais.com I see nothing at all, except the message Done, but
with errors on the page in a bottom bar.  I don't even have a phone# to
call because the webpage is blank.  Can anyone help me out?  At least to
inform DesignBais that their web page has a problem.

Thanks-
Harold Oaks
Clark County, WA, USA

This e-mail and related attachments and any response may be subject to public 
disclosure under state law.
___
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] DesignBais Website

2012-01-12 Thread Lunt, Bruce
Me too. Maybe change your browser?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen
Sent: Thursday, January 12, 2012 11:42 AM
To: U2 Users List
Subject: Re: [U2] DesignBais Website


It worked fine for me. 

George

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Oaks, Harold
Sent: Thursday, January 12, 2012 2:39 PM
To: U2 Users List
Subject: [U2] DesignBais Website

I am interested in showing my boss DesignBais and would like to download the
trial copy.  Unfortunately, when trying to open the website
www.designbais.com I see nothing at all, except the message Done, but with
errors on the page in a bottom bar.  I don't even have a phone# to call
because the webpage is blank.  Can anyone help me out?  At least to inform
DesignBais that their web page has a problem.

Thanks-
Harold Oaks
Clark County, WA, USA

This e-mail and related attachments and any response may be subject to
public disclosure under state law.
___
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
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-12 Thread Bobby Worley
supp...@designbais.com 

Rick Weiser
Vice President of Client Services
DesignBais International

Toll Free:  +1 877-889-9777
Local:  +1 856-424-2133
Fax:+1 509-355-7539

http://www.youtube.com/user/designbais





-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Oaks, Harold
Sent: Thursday, January 12, 2012 1:39 PM
To: U2 Users List
Subject: [U2] DesignBais Website

I am interested in showing my boss DesignBais and would like to download
the trial copy.  Unfortunately, when trying to open the website
www.designbais.com I see nothing at all, except the message Done, but
with errors on the page in a bottom bar.  I don't even have a phone# to
call because the webpage is blank.  Can anyone help me out?  At least to
inform DesignBais that their web page has a problem.

Thanks-
Harold Oaks
Clark County, WA, USA

This e-mail and related attachments and any response may be subject to
public disclosure under state law.
___
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] DesignBais Website

2012-01-12 Thread Wjhonson
Try it using IE 8 and make sure your are allowing javascript and frames



-Original Message-
From: George Gallen ggal...@wyanokegroup.com
To: U2 Users List u2-users@listserver.u2ug.org
Sent: Thu, Jan 12, 2012 11:41 am
Subject: Re: [U2] DesignBais Website


It worked fine for me. 
George
-Original Message-
rom: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] 
n Behalf Of Oaks, Harold
ent: Thursday, January 12, 2012 2:39 PM
o: U2 Users List
ubject: [U2] DesignBais Website
I am interested in showing my boss DesignBais and would like to download
he trial copy.  Unfortunately, when trying to open the website
ww.designbais.com I see nothing at all, except the message Done, but
ith errors on the page in a bottom bar.  I don't even have a phone# to
all because the webpage is blank.  Can anyone help me out?  At least to
nform DesignBais that their web page has a problem.
Thanks-
arold Oaks
lark County, WA, USA
This e-mail and related attachments and any response may be subject to public 
isclosure under state law.
__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users
__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://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] DesignBais Website

2012-01-12 Thread Charlie Noah

Hi Harold,

I just tried it with Firefox and was able to get the site up - perhaps 
they just had a momentary glitch. I couldn't find a phone number 
anywhere, though, just a support contact form.


Regards,
Charlie Noah

On 01-12-2012 1:38 PM, Oaks, Harold wrote:

I am interested in showing my boss DesignBais and would like to download
the trial copy.  Unfortunately, when trying to open the website
www.designbais.com I see nothing at all, except the message Done, but
with errors on the page in a bottom bar.  I don't even have a phone# to
call because the webpage is blank.  Can anyone help me out?  At least to
inform DesignBais that their web page has a problem.

Thanks-
Harold Oaks
Clark County, WA, USA

This e-mail and related attachments and any response may be subject to public 
disclosure under state law.
___
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] DesignBais Website

2012-01-12 Thread Oaks, Harold
Thanks to all.  I am pretty much restricted to IE here.  A co-worker was
able to see it fine, so it's something with my particular PC - sorry to
bother everyone.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charlie Noah
Sent: Thursday, January 12, 2012 11:47 AM
To: U2 Users List
Subject: Re: [U2] DesignBais Website

Hi Harold,

I just tried it with Firefox and was able to get the site up - perhaps 
they just had a momentary glitch. I couldn't find a phone number 
anywhere, though, just a support contact form.

Regards,
Charlie Noah

On 01-12-2012 1:38 PM, Oaks, Harold wrote:
 I am interested in showing my boss DesignBais and would like to
download
 the trial copy.  Unfortunately, when trying to open the website
 www.designbais.com I see nothing at all, except the message Done, but
 with errors on the page in a bottom bar.  I don't even have a phone#
to
 call because the webpage is blank.  Can anyone help me out?  At least
to
 inform DesignBais that their web page has a problem.

 Thanks-
 Harold Oaks
 Clark County, WA, USA

 This e-mail and related attachments and any response may be subject to
public disclosure under state law.
 ___
 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

This e-mail and related attachments and any response may be subject to public 
disclosure under state law.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-12 Thread Woodward, Bob
I found an email address if you're looking to get hired and live in
Sydney Australia.  i...@designbais.com  You can try going to the link
http://www.designbais.com/downloads/DesignBaisWebinars2011a.pdf to see
if you can get to their Webinar Schedule.  It just gives the same email
address for a contact.  Guess they really don't want to talk to anyone
in person.  shoulder shrug

Good luck.
BobW

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charlie Noah
Sent: Thursday, January 12, 2012 11:47 AM
To: U2 Users List
Subject: Re: [U2] DesignBais Website

Hi Harold,

I just tried it with Firefox and was able to get the site up - perhaps 
they just had a momentary glitch. I couldn't find a phone number 
anywhere, though, just a support contact form.

Regards,
Charlie Noah

On 01-12-2012 1:38 PM, Oaks, Harold wrote:
 I am interested in showing my boss DesignBais and would like to
download
 the trial copy.  Unfortunately, when trying to open the website
 www.designbais.com I see nothing at all, except the message Done, but
 with errors on the page in a bottom bar.  I don't even have a phone#
to
 call because the webpage is blank.  Can anyone help me out?  At least
to
 inform DesignBais that their web page has a problem.

 Thanks-
 Harold Oaks
 Clark County, WA, USA

 This e-mail and related attachments and any response may be subject to
public disclosure under state law.
 ___
 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
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-12 Thread Tony Gravagno
I was just there last night to check out the v6 enhancements.
The site is all run using DesignBais itself - very clean and
lightning fast even overseas.  If you're going to do a demo,
don't bother installing unless you want to demo the designer.
Just run the samples off the live site.

BTW, if you click that Done, but with errors on the page
message it should show the errors which DBI might want to see,
and which might tip you off as to why the page didn't display for
you.

T

 From:Oaks, Harold
 I am interested in showing my boss DesignBais and 
 would like to download the trial copy.  Unfortunately, 
 when trying to open the website www.designbais.com I 
 see nothing at all, except the message Done, but with 
 errors on the page in a bottom bar.  I don't even 
 have a phone# to call because the webpage is blank.  
 Can anyone help me out? At least to inform DesignBais 
 that their web page has a problem.

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


Re: [U2] DesignBais Website

2012-01-12 Thread Oaks, Harold
Thanks Tony!

I downloaded Chrome and had no problems.  Something to do with IE on my
PC...

Harold

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Thursday, January 12, 2012 3:06 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] DesignBais Website

I was just there last night to check out the v6 enhancements.
The site is all run using DesignBais itself - very clean and
lightning fast even overseas.  If you're going to do a demo,
don't bother installing unless you want to demo the designer.
Just run the samples off the live site.

BTW, if you click that Done, but with errors on the page
message it should show the errors which DBI might want to see,
and which might tip you off as to why the page didn't display for
you.

T

 From:Oaks, Harold
 I am interested in showing my boss DesignBais and 
 would like to download the trial copy.  Unfortunately, 
 when trying to open the website www.designbais.com I 
 see nothing at all, except the message Done, but with 
 errors on the page in a bottom bar.  I don't even 
 have a phone# to call because the webpage is blank.  
 Can anyone help me out? At least to inform DesignBais 
 that their web page has a problem.

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

This e-mail and related attachments and any response may be subject to public 
disclosure under state law.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users