| time |
nick |
message |
06:03 |
<Bevin> |
hi |
08:22 |
<Ferry> |
Bevin: know of any way to validate multiple pages of webapplication |
08:22 |
<Bevin> |
Ferry: continuations ;-) |
08:22 |
<Ferry> |
I was the technical lead for the new web architecture of the department of justice |
08:23 |
<Ferry> |
gonna go live soon need todo a last sanity check |
08:23 |
<Bevin> |
woow, congrats! |
08:23 |
<Ferry> |
no :) I need to check the xhtml strict |
08:24 |
<Ferry> |
Yeah my career is skyrocketing. First project for the department of justice that was delivered on time and within budget in the last 5 years :) |
08:25 |
<Bevin> |
wonderful! |
08:28 |
<Bevin> |
now, get them to use RIFE and they'll be even more on time and on budget ;-) |
08:49 |
<Ferry> |
Gonna be hard |
08:49 |
<Ferry> |
:) |
08:49 |
<Ferry> |
Because i work for a microsoft competence center |
08:50 |
<Bevin> |
easier than 2 years ago ;-) |
08:50 |
<Ferry> |
sure is |
08:51 |
<Ferry> |
But first vacation |
08:51 |
<Ferry> |
Leaving for st tropez tomorrow |
08:51 |
<Bevin> |
niiice |
08:51 |
<Bevin> |
we're thinking about going on a cruise with the kids |
08:52 |
<Ferry> |
hmmm |
08:53 |
<Ferry> |
could be nice |
08:53 |
<Ferry> |
been on a cruise once |
08:53 |
<Ferry> |
If they have program where you can dump the kid so that they will be entertained :) |
08:54 |
<Bevin> |
yeah they do |
08:54 |
<Bevin> |
it's quite a lot of money though |
08:54 |
<Ferry> |
I went on a cruise ship too sweden once |
08:54 |
<Ferry> |
had this major storm |
08:55 |
<Bevin> |
we'd be going to the Caribbean |
08:55 |
<Ferry> |
nice |
08:55 |
<Ferry> |
i will be going to cuba and aruba next year |
08:56 |
<Ferry> |
But first i will go to kenia in november |
08:56 |
<Bevin> |
6000 euro is a lot for a holiday though |
08:56 |
<Ferry> |
If its allin it aint that bad |
08:57 |
<Bevin> |
it is, except for drinks outside dinner |
08:57 |
<Bevin> |
dinner = food times |
08:57 |
<Stephmw> |
Ferry, why not use that new fangled CIL runtime for the JVM? Load that up with IKVM (.class for .net) and you're set |
08:57 |
<Bevin> |
hey Stephmw |
08:58 |
<Stephmw> |
yo |
09:00 |
<Ferry> |
Stephmw: that will work with easy stuff. But this systeem is pretty huge. Its an architecture that will host about 100 sites all justice departments, prisons etc. So its pretty huge. Clustered frontend. Biztalk as a message orchestration hub for all the legacy backend systems. Enterprise Content Management and document management. |
09:00 |
<Ferry> |
Verity for enterprise search |
09:00 |
<Stephmw> |
Ferry, I was kidding :) I doubt very much the CIL 4 JVM is anything but a PoC |
09:00 |
<Ferry> |
:) |
09:01 |
<Stephmw> |
IKVM is actually done by someone much like Bevin here |
09:01 |
<Stephmw> |
http://www.ikvm.net/ |
09:03 |
<Ferry> |
cool |
09:05 |
<Ferry> |
Im mostly involved in management now a days. Making sure the software development project runs well. Quality insurance, development methods, project management, business consultancy and sales. |
09:11 |
<Stephmw> |
I'm still in embedded dev, doing S40 api development atm |
09:19 |
<Ferry> |
still a big market for that? |
09:19 |
<Ferry> |
Must feel some heat from blackberry and windows mobile devices |
10:07 |
<Stephmw> |
300mil devices worldwide for S40 ;) |
11:29 |
<hynek> |
hey |
11:30 |
<Ferry> |
hi |
11:31 |
<Stephmw> |
hey hynek |
11:31 |
<Stephmw> |
Ferry, actually, S40 isn't in the same market as blackberry or wince devices |
11:31 |
<Stephmw> |
Ferry, S40 is more mass-market |
11:31 |
<Ferry> |
Stephmw: im not really that inot mobile development |
11:31 |
<Ferry> |
did some windows mobile work |
11:32 |
<Ferry> |
What kind of software do you build? |
11:32 |
<Stephmw> |
I work on the lcdui implementation, so the actual core APIs that MIDlet devs use |
11:32 |
<Stephmw> |
the J2SE equivalent would be AWT |
11:32 |
<Ferry> |
ok cool |
11:49 |
<Bevin> |
hi hynek |
11:50 |
<Ferry> |
damn the company i used to work for lost 38% in the last two days on the exchange |
11:50 |
<Ferry> |
that is pretty rough |
21:11 |
<frequency31> |
hi all... where is the proper place to put a validation that an entry into a web form is numeric? ConstrainedProperty doesn't do it. |
21:14 |
<frequency31> |
i'm trying to avoid the numberformatexception when someone types a non-numeric string into a field that populates a "double" field |
21:14 |
<Bevin> |
frequency31: can you explain a bit more in detail what you want to do? |
21:15 |
<Bevin> |
frequency31: it should automatically add a nonnmueric validation error |
21:16 |
<Bevin> |
frequency31: just by detecting on the target type, which is numeric in this case |
21:17 |
<frequency31> |
Really? Do I need to do anything? Right now, if I type 'y' into the web form where it is expecting a double, i get this: |
21:17 |
<frequency31> |
com.uwyn.rife.tools.exceptions.BeanUtilsException: The 'y' property of the bean with class 'com.internalmachine.e60vision.Well' couldn't be populated due to numeric conversion problems. |
21:17 |
<frequency31> |
java.lang.NumberFormatException |
21:17 |
<frequency31> |
For input string: "f" |
21:17 |
<Bevin> |
frequency31: it the bean extending MetaData or using meta data merging? |
21:17 |
<Bevin> |
it should at least support cnstraints |
21:18 |
<Bevin> |
well, correction, at least implement Validated, either directly or through meta data merging |
21:18 |
<frequency31> |
it is extending Validation |
21:18 |
<Bevin> |
can you paste the entire stack trace in the pastebin you see in the topic? |
21:38 |
<frequency31> |
Bevin -- it is workin g now -- sorry to waste your time. Thanks for the help |
21:48 |
<Bevin> |
frequency31: no problem, take care |
21:48 |
<Bevin> |
frequency31: I'm actually at the moment adding support for converting any string to a number using Format |
22:07 |
<Bevin_> |
frequency31: http://rifers.org/blogs/gbevin/2006/8/4/favorite_rife_quote :-) |
22:07 |
<Bevin_> |
idealized it a bit :-p |
22:09 |
<Bevin> |
frequency31: hope you don't mind |
22:29 |
<Bevin> |
'night |