Re: [Solved by hack] UTF-8 encoding and FrontBase and Wonder

2006-06-17 Thread Mike Schrag
For what it's worth (if it helps in the future :) ), I went the route of just grepping the ERExtensions source for "encoding," then I just had to spend a little bit to figure out how ERXMessageEncoding worked.msOn Jun 17, 2006, at 6:29 PM, Thomas wrote:Mike,thanks for the help. That was spot on.But

Re: [Solved by hack] UTF-8 encoding and FrontBase and Wonder

2006-06-17 Thread Thomas
Mike,thanks for the help. That was spot on.But... RRRGGGHHH! I spent many hours Googling and trawling through what little documentation I could find (without coming across this gem) and then more hours debugging and writing debug code and throwing more and more code at it until I found somethin

Help will be grandly appreciated

2006-06-17 Thread Gilles MATHURIN
for the upload problem in database with WOFileupload, and i thanks again evryone who respond yet. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Updat

DTJC - Permission denied on launch

2006-06-17 Thread King Chung Huang
Hi, I'm encountering a "java.io.IOException: Permission denied" when launching a newly created Direct to Java Client project. The full stack trace follows. java.lang.Error: java.io.IOException: Permission denied at com.sun.javaws.SplashGenerator.splashError(SplashScreen.java:430)

Re: Problems with building WebService

2006-06-17 Thread jerry porter
After poking around with the jar files I found out which ones where causing my problems and now I can get to my wsdl --- Marc Respass <[EMAIL PROTECTED]> wrote: > Jar files are a real travesty but one thing you can exploit is that > the name of a jar doesn't matter. What I do is install WebOb

Newbie : How can you store an image in a database

2006-06-17 Thread Gilles MATHURIN
I'm newbie in wo. I use OpenBase and i have a database with those entities : Artist (firstname, name and photoID) Album (Title, Date of realease) Title (songTitle, Lenght) How can i upload and image in the attribute photoID of my Artist Table. this attribute is defined

Re: Problem with webobject attributes in WOBuilder

2006-06-17 Thread Paul Lynch
On 16 Jun 2006, at 16:45, Jean-François Veillette wrote: Le 06-06-15, à 17:27, Paul Lynch a écrit : View objects are the dynamic elements used within your components. Model objects are the EOs, the implementors of EOEnterpriseObject. Controllers are your subclasses of WOApplication, WO

Re: Problem to record an image file in a OpenBase Database with a WebObject application

2006-06-17 Thread Chuck Hill
Are the file upload and submit buttons in a WOForm? On Jun 16, 2006, at 9:26 PM, Gilles MATHURIN wrote: Hello everyone, i don't manage to record an image file in my Openbase database with a webobject application. This webapp use a WOFileUpload and a Submit Button which is bind to this act

[ OT ] Report on other WO like tools.

2006-06-17 Thread Kuon - Nicolas Goy (Goyman.com SA) - 時期精霊
Hello everybody, first I did double post this for reference, please use the apple wo list to continue the discussion. So, what is the point of this mail? It is intended to be a comparison of WO like tools. Perhaps I'm not 100% objective, because I'm a C dev and I came to object programmi

Re: [Solved by hack] UTF-8 encoding and FrontBase and Wonder

2006-06-17 Thread Mike Schrag
Wonder abstracts a lot of the encoding management through ERXMessageEncoding.  It looks at the language that is being passed back from the browser and it maps it a default encoding.  For English and German, that is ISO8859_1 and it does that on every request.  You can try calling ERXMessageEncoding

[Solved by hack] UTF-8 encoding and FrontBase and Wonder

2006-06-17 Thread Thomas
It turns out that despite all my code, the form value encoding was always ISO8859_1 and so was some of the page encoding. This is even after I called WOMessage.setDefaultEncoding("UTF8") in the application constructor, and despite the fact that I had code that set the content encoding and f