RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-05 Thread Michael Marrotte


1. No validity check on year  in Withholding Date in Modify cases page.

I admit the UI is a bit confusing, i.e. there should be another tab labeled
Case Management.  I think that's the UI you refer since there's no
Withholding Date on the Modify Cases page.

However, the year is validated.  Here, we allow any valid date to pass --
even past dates.  Until the client has a better idea of how far back in the
past or in the future they'll accept, we decided to be lenient.

2. The Menu option should be highlighted when you select it.

Do you mean the tab option?  If so, I totally agree and have even suggested
this to the UI designer.  I hope it happens!

3. Help Using Service dispatches to Login Page.

Yeah...  Help is still under development.

Do you use struts-tiles and struts-menu?

No.  Is this something I should look in to?  We have an HTML/analysis guy
who puts together HTML screen mock-ups and then we design the web app inside
and around that.  Then he'll take back the new JSP to make any UI changes.
Would tiles be something the HTML guy will have to deal with?

Is it based on struts 1.1?

It's based on one of the nightly builds from a few weeks ago.

Hope it helps
Hertzel

Thanks for the input,

--Michael Marrotte

- Original Message -
From: Michael Marrotte [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Wednesday, June 05, 2002 3:53 AM
Subject: RE: Child Support Payment system for the state of FLorida, Powered
by Struts...


 username: myflc (MYFLC for clarity, but not really uppercase)
 password: myflc (MYFLC for clarity, but not really uppercase)

 The credentials are correct.  I just tested it and have already received
 comments from other users who logged in.  But, please let me know if you
 have more problems with and what you think the problem may have been.


 Thanks,


 --Michael Marrotte

 -Original Message-
 From: Thinh Doan [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 04, 2002 6:32 PM
 To: Struts Users Mailing List
 Subject: RE: Child Support Payment system for the state of FLorida,
 Powered by Struts...


 id/pwd given is bad.

 Thinh

 -Original Message-
 From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 04, 2002 1:32 PM
 To: [EMAIL PROTECTED]
 Subject: Child Support Payment system for the state of FLorida, Powered
 by Struts...


 My boss gave me the OK to give the Struts User Group access to the
 Struts-based application I'm working on.

 I recently finished a beta release of a Child Support Payment (CSE-PAY)
 system for the state of Florida.  The system is a Struts-based webapp
where
 I use several Struts features -- as much Struts as I could figure for my
 first Struts project.

 You can access the system at:

 http://test.myfloridacounty.com/cse-pay/

 Login to the web server with:

 User:  myflc
 Pass:  myflc

 Once logged in you're welcome to experiment with the system as much as you
 like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
 add casses, make payments, etc...

 I have not got the OK to release all the source as a bundle, yet.  But, I
 can release snippets on a case-by-case basis -- that is, I can send the
code
 that implements some behavior you're interested in.  Hopefully I can
release
 the complete source, soon.

 The system connects to two private and distinct (Oracle, Informix) DBMS.
To
 release all the source I might create mock copies of the databases
 (usernames, passwords).

 My intention in releasing this to the Struts User Group is two-fold.
First
 I would like to give back for all the help I received from the group
putting
 this project together.  Second I hope that users might help do beta
testing
 as a side-effect.

 Don't be afraid to make payments with a fake credit card number (e.g. Visa
 4111).  None of the orders are attached to a real merchant
 account.  But, They will get processed by our payment engine where I can
do
 some analysis.

 Here's some test data for data entry into the system:

 UNIFORM CASE NUMBERS
 COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

 1222-023-CA  121922DR23CAXXCR
 1222-024-CA  121922DR24CAXXCR
 1223-065-CA  121923DR65CAXXCR
 1223-076-CA  121923DR76CAXXCR
 1223-096-CA  121923DR96CAXXCR
 1225-059-CA  121925DR59CAXXCR
 1226-036-CA  121926DR36CAXXCR
 1254-044-CA  121954DR44CAXXCR
 1273-000-CA  121973DR00CAXXCR
 1273-015-CA  121973DR15CAXXCR

 12 is Flagler county...

 LEGACY CASE NUMBERS
 County 01 (Alachua)

 00-000-DR
 00-009-DR
 00-017-DR
 00-023-CA
 00-029-DR
 00-030-DR
 00-035-DR
 00-039-DR
 00-040-DR
 00-041-DR
 00-044-DR
 00-051-DR
 00-060-DR
 00-067-DR


 County 02 (Baker)

 00-002-DR
 00-012-DR
 00-015-DR
 00-020-DR
 

RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-05 Thread Michael Marrotte

Havent got past the rego screen yet.
(What on earth is a cardholder number and what format of number will this
field accept?)

Cardholder should really just say Card Number, i.e. the 16 digit number on
the users credit card.  I'll fix that along with Cardholder Name -- replace
that with Card Name.

The Card Number field is validated using:

  classname=org.apache.struts.util.StrutsValidator
  method=validateCreditCard

I think David Winterfeldt built this class; Ted Husted translated wrote
validateCreditCard in Java based on Perl script written by Sean M. Burke.

I noticed your validation display could be improved.
Having entered a bad cardholder number it sent me back to the screen with
the actionerror displayed next to cardholder# field nicely. I tried a
different number and this time got sent back as I had forgotten to re-enter
passwords. So I entered those, and now got sent back because I still hadnt
guessed a correct cardholder number.

It should show all the problems at once. - Let me guess: You validate that
passwords were entered in the actionForm, but the cardholder number is
checked for validity in the action?

Actually, I use the Struts ValidatorForm and it seems that there's a level
of precedence with the validation dependencies.  The dependency required
seems to intercept dependencies listed second, e.g. creditCard.  Using the
ValidatorForm it's not yet clear to me how to get around this idiosyncrasy.

Thanks for your comments,

--Michael Marrotte

-Original Message-
From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 05, 2002 07:17
To: 'Struts Users Mailing List'
Subject: RE: Child Support Payment system for the state of FLorida,
Powered by Struts...


No it's not.

-Original Message-
From: Thinh Doan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 6:32 PM
To: Struts Users Mailing List
Subject: RE: Child Support Payment system for the state of FLorida,
Powered by Struts...


id/pwd given is bad.

Thinh

-Original Message-
From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 1:32 PM
To: [EMAIL PROTECTED]
Subject: Child Support Payment system for the state of FLorida, Powered
by Struts...


My boss gave me the OK to give the Struts User Group access to the
Struts-based application I'm working on.

I recently finished a beta release of a Child Support Payment (CSE-PAY)
system for the state of Florida.  The system is a Struts-based webapp where
I use several Struts features -- as much Struts as I could figure for my
first Struts project.

You can access the system at:

http://test.myfloridacounty.com/cse-pay/

Login to the web server with:

User:  myflc
Pass:  myflc

Once logged in you're welcome to experiment with the system as much as you
like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
add casses, make payments, etc...

I have not got the OK to release all the source as a bundle, yet.  But, I
can release snippets on a case-by-case basis -- that is, I can send the code
that implements some behavior you're interested in.  Hopefully I can release
the complete source, soon.

The system connects to two private and distinct (Oracle, Informix) DBMS.  To
release all the source I might create mock copies of the databases
(usernames, passwords).

My intention in releasing this to the Struts User Group is two-fold.  First
I would like to give back for all the help I received from the group putting
this project together.  Second I hope that users might help do beta testing
as a side-effect.

Don't be afraid to make payments with a fake credit card number (e.g. Visa
4111).  None of the orders are attached to a real merchant
account.  But, They will get processed by our payment engine where I can do
some analysis.

Here's some test data for data entry into the system:

UNIFORM CASE NUMBERS
COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

1222-023-CA  121922DR23CAXXCR
1222-024-CA  121922DR24CAXXCR
1223-065-CA  121923DR65CAXXCR
1223-076-CA  121923DR76CAXXCR
1223-096-CA  121923DR96CAXXCR
1225-059-CA  121925DR59CAXXCR
1226-036-CA  121926DR36CAXXCR
1254-044-CA  121954DR44CAXXCR
1273-000-CA  121973DR00CAXXCR
1273-015-CA  121973DR15CAXXCR

12 is Flagler county...

LEGACY CASE NUMBERS
County 01 (Alachua)

00-000-DR
00-009-DR
00-017-DR
00-023-CA
00-029-DR
00-030-DR
00-035-DR
00-039-DR
00-040-DR
00-041-DR
00-044-DR
00-051-DR
00-060-DR
00-067-DR


County 02 (Baker)

00-002-DR
00-012-DR
00-015-DR
00-020-DR
00-022-DR
00-023-DR
00-024-DR
00-025-DR
00-026-DR
00-027-DR
00-028-DR
00-041-DR
00-042-DR
00-043-DR


County 03 (Bay)

00-000-CA
00-034-CA
00-035-CA
00-036-CA

Re: Child Support Payment system for the state of FLorida,Powered by Struts...

2002-06-05 Thread Hertzel Karbasi - OPTinity eBusiness Solutions

Hi Michael

Here are my comments:

1. No validity check on year  in Withholding Date in Modify cases page.
2. The Menu option should be highlighted when you select it.
3. Help Using Service dispatches to Login Page.

Do you use struts-tiles and struts-menu?
Is it based on struts 1.1?

Hope it helps
Hertzel
- Original Message -
From: Michael Marrotte [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Wednesday, June 05, 2002 3:53 AM
Subject: RE: Child Support Payment system for the state of FLorida, Powered
by Struts...


 username: myflc (MYFLC for clarity, but not really uppercase)
 password: myflc (MYFLC for clarity, but not really uppercase)

 The credentials are correct.  I just tested it and have already received
 comments from other users who logged in.  But, please let me know if you
 have more problems with and what you think the problem may have been.


 Thanks,


 --Michael Marrotte

 -Original Message-
 From: Thinh Doan [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 04, 2002 6:32 PM
 To: Struts Users Mailing List
 Subject: RE: Child Support Payment system for the state of FLorida,
 Powered by Struts...


 id/pwd given is bad.

 Thinh

 -Original Message-
 From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 04, 2002 1:32 PM
 To: [EMAIL PROTECTED]
 Subject: Child Support Payment system for the state of FLorida, Powered
 by Struts...


 My boss gave me the OK to give the Struts User Group access to the
 Struts-based application I'm working on.

 I recently finished a beta release of a Child Support Payment (CSE-PAY)
 system for the state of Florida.  The system is a Struts-based webapp
where
 I use several Struts features -- as much Struts as I could figure for my
 first Struts project.

 You can access the system at:

 http://test.myfloridacounty.com/cse-pay/

 Login to the web server with:

 User:  myflc
 Pass:  myflc

 Once logged in you're welcome to experiment with the system as much as you
 like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
 add casses, make payments, etc...

 I have not got the OK to release all the source as a bundle, yet.  But, I
 can release snippets on a case-by-case basis -- that is, I can send the
code
 that implements some behavior you're interested in.  Hopefully I can
release
 the complete source, soon.

 The system connects to two private and distinct (Oracle, Informix) DBMS.
To
 release all the source I might create mock copies of the databases
 (usernames, passwords).

 My intention in releasing this to the Struts User Group is two-fold.
First
 I would like to give back for all the help I received from the group
putting
 this project together.  Second I hope that users might help do beta
testing
 as a side-effect.

 Don't be afraid to make payments with a fake credit card number (e.g. Visa
 4111).  None of the orders are attached to a real merchant
 account.  But, They will get processed by our payment engine where I can
do
 some analysis.

 Here's some test data for data entry into the system:

 UNIFORM CASE NUMBERS
 COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

 1222-023-CA  121922DR23CAXXCR
 1222-024-CA  121922DR24CAXXCR
 1223-065-CA  121923DR65CAXXCR
 1223-076-CA  121923DR76CAXXCR
 1223-096-CA  121923DR96CAXXCR
 1225-059-CA  121925DR59CAXXCR
 1226-036-CA  121926DR36CAXXCR
 1254-044-CA  121954DR44CAXXCR
 1273-000-CA  121973DR00CAXXCR
 1273-015-CA  121973DR15CAXXCR

 12 is Flagler county...

 LEGACY CASE NUMBERS
 County 01 (Alachua)

 00-000-DR
 00-009-DR
 00-017-DR
 00-023-CA
 00-029-DR
 00-030-DR
 00-035-DR
 00-039-DR
 00-040-DR
 00-041-DR
 00-044-DR
 00-051-DR
 00-060-DR
 00-067-DR


 County 02 (Baker)

 00-002-DR
 00-012-DR
 00-015-DR
 00-020-DR
 00-022-DR
 00-023-DR
 00-024-DR
 00-025-DR
 00-026-DR
 00-027-DR
 00-028-DR
 00-041-DR
 00-042-DR
 00-043-DR


 County 03 (Bay)

 00-000-CA
 00-034-CA
 00-035-CA
 00-036-CA
 00-041-CA
 00-042-CA
 00-043-CA
 00-056-CA
 00-071-CA
 00-075-CA
 00-078-CA
 00-080-CA
 00-082-CA

 Please let me know what you think.

 --Michael Marrotte


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]


 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]


 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-04 Thread Thinh Doan

id/pwd given is bad.

Thinh

-Original Message-
From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 1:32 PM
To: [EMAIL PROTECTED]
Subject: Child Support Payment system for the state of FLorida, Powered
by Struts...


My boss gave me the OK to give the Struts User Group access to the
Struts-based application I'm working on.

I recently finished a beta release of a Child Support Payment (CSE-PAY)
system for the state of Florida.  The system is a Struts-based webapp where
I use several Struts features -- as much Struts as I could figure for my
first Struts project.

You can access the system at:

http://test.myfloridacounty.com/cse-pay/

Login to the web server with:

User:  myflc
Pass:  myflc

Once logged in you're welcome to experiment with the system as much as you
like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
add casses, make payments, etc...

I have not got the OK to release all the source as a bundle, yet.  But, I
can release snippets on a case-by-case basis -- that is, I can send the code
that implements some behavior you're interested in.  Hopefully I can release
the complete source, soon.

The system connects to two private and distinct (Oracle, Informix) DBMS.  To
release all the source I might create mock copies of the databases
(usernames, passwords).

My intention in releasing this to the Struts User Group is two-fold.  First
I would like to give back for all the help I received from the group putting
this project together.  Second I hope that users might help do beta testing
as a side-effect.

Don't be afraid to make payments with a fake credit card number (e.g. Visa
4111).  None of the orders are attached to a real merchant
account.  But, They will get processed by our payment engine where I can do
some analysis.

Here's some test data for data entry into the system:

UNIFORM CASE NUMBERS
COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

1222-023-CA  121922DR23CAXXCR
1222-024-CA  121922DR24CAXXCR
1223-065-CA  121923DR65CAXXCR
1223-076-CA  121923DR76CAXXCR
1223-096-CA  121923DR96CAXXCR
1225-059-CA  121925DR59CAXXCR
1226-036-CA  121926DR36CAXXCR
1254-044-CA  121954DR44CAXXCR
1273-000-CA  121973DR00CAXXCR
1273-015-CA  121973DR15CAXXCR

12 is Flagler county...

LEGACY CASE NUMBERS
County 01 (Alachua)

00-000-DR
00-009-DR
00-017-DR
00-023-CA
00-029-DR
00-030-DR
00-035-DR
00-039-DR
00-040-DR
00-041-DR
00-044-DR
00-051-DR
00-060-DR
00-067-DR


County 02 (Baker)

00-002-DR
00-012-DR
00-015-DR
00-020-DR
00-022-DR
00-023-DR
00-024-DR
00-025-DR
00-026-DR
00-027-DR
00-028-DR
00-041-DR
00-042-DR
00-043-DR


County 03 (Bay)

00-000-CA
00-034-CA
00-035-CA
00-036-CA
00-041-CA
00-042-CA
00-043-CA
00-056-CA
00-071-CA
00-075-CA
00-078-CA
00-080-CA
00-082-CA

Please let me know what you think.

--Michael Marrotte


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-04 Thread Galbreath, Mark

No it's not.

-Original Message-
From: Thinh Doan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 6:32 PM
To: Struts Users Mailing List
Subject: RE: Child Support Payment system for the state of FLorida,
Powered by Struts...


id/pwd given is bad.

Thinh

-Original Message-
From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 1:32 PM
To: [EMAIL PROTECTED]
Subject: Child Support Payment system for the state of FLorida, Powered
by Struts...


My boss gave me the OK to give the Struts User Group access to the
Struts-based application I'm working on.

I recently finished a beta release of a Child Support Payment (CSE-PAY)
system for the state of Florida.  The system is a Struts-based webapp where
I use several Struts features -- as much Struts as I could figure for my
first Struts project.

You can access the system at:

http://test.myfloridacounty.com/cse-pay/

Login to the web server with:

User:  myflc
Pass:  myflc

Once logged in you're welcome to experiment with the system as much as you
like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
add casses, make payments, etc...

I have not got the OK to release all the source as a bundle, yet.  But, I
can release snippets on a case-by-case basis -- that is, I can send the code
that implements some behavior you're interested in.  Hopefully I can release
the complete source, soon.

The system connects to two private and distinct (Oracle, Informix) DBMS.  To
release all the source I might create mock copies of the databases
(usernames, passwords).

My intention in releasing this to the Struts User Group is two-fold.  First
I would like to give back for all the help I received from the group putting
this project together.  Second I hope that users might help do beta testing
as a side-effect.

Don't be afraid to make payments with a fake credit card number (e.g. Visa
4111).  None of the orders are attached to a real merchant
account.  But, They will get processed by our payment engine where I can do
some analysis.

Here's some test data for data entry into the system:

UNIFORM CASE NUMBERS
COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

1222-023-CA  121922DR23CAXXCR
1222-024-CA  121922DR24CAXXCR
1223-065-CA  121923DR65CAXXCR
1223-076-CA  121923DR76CAXXCR
1223-096-CA  121923DR96CAXXCR
1225-059-CA  121925DR59CAXXCR
1226-036-CA  121926DR36CAXXCR
1254-044-CA  121954DR44CAXXCR
1273-000-CA  121973DR00CAXXCR
1273-015-CA  121973DR15CAXXCR

12 is Flagler county...

LEGACY CASE NUMBERS
County 01 (Alachua)

00-000-DR
00-009-DR
00-017-DR
00-023-CA
00-029-DR
00-030-DR
00-035-DR
00-039-DR
00-040-DR
00-041-DR
00-044-DR
00-051-DR
00-060-DR
00-067-DR


County 02 (Baker)

00-002-DR
00-012-DR
00-015-DR
00-020-DR
00-022-DR
00-023-DR
00-024-DR
00-025-DR
00-026-DR
00-027-DR
00-028-DR
00-041-DR
00-042-DR
00-043-DR


County 03 (Bay)

00-000-CA
00-034-CA
00-035-CA
00-036-CA
00-041-CA
00-042-CA
00-043-CA
00-056-CA
00-071-CA
00-075-CA
00-078-CA
00-080-CA
00-082-CA

Please let me know what you think.

--Michael Marrotte


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-04 Thread Andrew Hill

Havent got past the rego screen yet.
(What on earth is a cardholder number and what format of number will this
field accept?)
I noticed your validation display could be improved.
Having entered a bad cardholder number it sent me back to the screen with
the actionerror displayed next to cardholder# field nicely. I tried a
different number and this time got sent back as I had forgotten to re-enter
passwords. So I entered those, and now got sent back because I still hadnt
guessed a correct cardholder number.
It should show all the problems at once. - Let me guess: You validate that
passwords were entered in the actionForm, but the cardholder number is
checked for validity in the action?

-Original Message-
From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 05, 2002 07:17
To: 'Struts Users Mailing List'
Subject: RE: Child Support Payment system for the state of FLorida,
Powered by Struts...


No it's not.

-Original Message-
From: Thinh Doan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 6:32 PM
To: Struts Users Mailing List
Subject: RE: Child Support Payment system for the state of FLorida,
Powered by Struts...


id/pwd given is bad.

Thinh

-Original Message-
From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 1:32 PM
To: [EMAIL PROTECTED]
Subject: Child Support Payment system for the state of FLorida, Powered
by Struts...


My boss gave me the OK to give the Struts User Group access to the
Struts-based application I'm working on.

I recently finished a beta release of a Child Support Payment (CSE-PAY)
system for the state of Florida.  The system is a Struts-based webapp where
I use several Struts features -- as much Struts as I could figure for my
first Struts project.

You can access the system at:

http://test.myfloridacounty.com/cse-pay/

Login to the web server with:

User:  myflc
Pass:  myflc

Once logged in you're welcome to experiment with the system as much as you
like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
add casses, make payments, etc...

I have not got the OK to release all the source as a bundle, yet.  But, I
can release snippets on a case-by-case basis -- that is, I can send the code
that implements some behavior you're interested in.  Hopefully I can release
the complete source, soon.

The system connects to two private and distinct (Oracle, Informix) DBMS.  To
release all the source I might create mock copies of the databases
(usernames, passwords).

My intention in releasing this to the Struts User Group is two-fold.  First
I would like to give back for all the help I received from the group putting
this project together.  Second I hope that users might help do beta testing
as a side-effect.

Don't be afraid to make payments with a fake credit card number (e.g. Visa
4111).  None of the orders are attached to a real merchant
account.  But, They will get processed by our payment engine where I can do
some analysis.

Here's some test data for data entry into the system:

UNIFORM CASE NUMBERS
COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

1222-023-CA  121922DR23CAXXCR
1222-024-CA  121922DR24CAXXCR
1223-065-CA  121923DR65CAXXCR
1223-076-CA  121923DR76CAXXCR
1223-096-CA  121923DR96CAXXCR
1225-059-CA  121925DR59CAXXCR
1226-036-CA  121926DR36CAXXCR
1254-044-CA  121954DR44CAXXCR
1273-000-CA  121973DR00CAXXCR
1273-015-CA  121973DR15CAXXCR

12 is Flagler county...

LEGACY CASE NUMBERS
County 01 (Alachua)

00-000-DR
00-009-DR
00-017-DR
00-023-CA
00-029-DR
00-030-DR
00-035-DR
00-039-DR
00-040-DR
00-041-DR
00-044-DR
00-051-DR
00-060-DR
00-067-DR


County 02 (Baker)

00-002-DR
00-012-DR
00-015-DR
00-020-DR
00-022-DR
00-023-DR
00-024-DR
00-025-DR
00-026-DR
00-027-DR
00-028-DR
00-041-DR
00-042-DR
00-043-DR


County 03 (Bay)

00-000-CA
00-034-CA
00-035-CA
00-036-CA
00-041-CA
00-042-CA
00-043-CA
00-056-CA
00-071-CA
00-075-CA
00-078-CA
00-080-CA
00-082-CA

Please let me know what you think.

--Michael Marrotte


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-04 Thread Michael Marrotte

username: myflc (MYFLC for clarity, but not really uppercase)
password: myflc (MYFLC for clarity, but not really uppercase)

The credentials are correct.  I just tested it and have already received
comments from other users who logged in.  But, please let me know if you
have more problems with and what you think the problem may have been.


Thanks,


--Michael Marrotte

-Original Message-
From: Thinh Doan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 6:32 PM
To: Struts Users Mailing List
Subject: RE: Child Support Payment system for the state of FLorida,
Powered by Struts...


id/pwd given is bad.

Thinh

-Original Message-
From: Michael Marrotte [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 1:32 PM
To: [EMAIL PROTECTED]
Subject: Child Support Payment system for the state of FLorida, Powered
by Struts...


My boss gave me the OK to give the Struts User Group access to the
Struts-based application I'm working on.

I recently finished a beta release of a Child Support Payment (CSE-PAY)
system for the state of Florida.  The system is a Struts-based webapp where
I use several Struts features -- as much Struts as I could figure for my
first Struts project.

You can access the system at:

http://test.myfloridacounty.com/cse-pay/

Login to the web server with:

User:  myflc
Pass:  myflc

Once logged in you're welcome to experiment with the system as much as you
like, i.e. sign up a phony user, credit card (e.g. Visa 4111),
add casses, make payments, etc...

I have not got the OK to release all the source as a bundle, yet.  But, I
can release snippets on a case-by-case basis -- that is, I can send the code
that implements some behavior you're interested in.  Hopefully I can release
the complete source, soon.

The system connects to two private and distinct (Oracle, Informix) DBMS.  To
release all the source I might create mock copies of the databases
(usernames, passwords).

My intention in releasing this to the Struts User Group is two-fold.  First
I would like to give back for all the help I received from the group putting
this project together.  Second I hope that users might help do beta testing
as a side-effect.

Don't be afraid to make payments with a fake credit card number (e.g. Visa
4111).  None of the orders are attached to a real merchant
account.  But, They will get processed by our payment engine where I can do
some analysis.

Here's some test data for data entry into the system:

UNIFORM CASE NUMBERS
COUNTY   LEGACY CASE NUMBERUNIFORM CASE NUMBER

1222-023-CA  121922DR23CAXXCR
1222-024-CA  121922DR24CAXXCR
1223-065-CA  121923DR65CAXXCR
1223-076-CA  121923DR76CAXXCR
1223-096-CA  121923DR96CAXXCR
1225-059-CA  121925DR59CAXXCR
1226-036-CA  121926DR36CAXXCR
1254-044-CA  121954DR44CAXXCR
1273-000-CA  121973DR00CAXXCR
1273-015-CA  121973DR15CAXXCR

12 is Flagler county...

LEGACY CASE NUMBERS
County 01 (Alachua)

00-000-DR
00-009-DR
00-017-DR
00-023-CA
00-029-DR
00-030-DR
00-035-DR
00-039-DR
00-040-DR
00-041-DR
00-044-DR
00-051-DR
00-060-DR
00-067-DR


County 02 (Baker)

00-002-DR
00-012-DR
00-015-DR
00-020-DR
00-022-DR
00-023-DR
00-024-DR
00-025-DR
00-026-DR
00-027-DR
00-028-DR
00-041-DR
00-042-DR
00-043-DR


County 03 (Bay)

00-000-CA
00-034-CA
00-035-CA
00-036-CA
00-041-CA
00-042-CA
00-043-CA
00-056-CA
00-071-CA
00-075-CA
00-078-CA
00-080-CA
00-082-CA

Please let me know what you think.

--Michael Marrotte


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]