fromBlob is not called on ERXMutableDictionary with mutableDictionary prototype

2007-01-12 Thread Denis Frolov
Hi, I have the same problem as Timo had in this thread two years ago: http://www.wodeveloper.com/omniLists/webobjects-dev/2004/March/msg00340.html I'm also using try/catch to do a manual conversion in eo's accessor method. I've also noticed that the problem goes away if I change attribute's

Re: Connecting to Informix

2007-01-12 Thread Calven Eggert
Thanks Chuck! I'm now able to connect to the Informix database. For those interested your connection string from the client should look like this: jdbc:informix-sqli://ip:port/dbname:informixserver=servername;user=username; password=password The driver name currently is:

UK WebObjects Advanced Development course

2007-01-12 Thread Elizabeth Lynch
We have two places available on our next scheduled Advanced course: Advanced WebObjects Development. January 29 - February 2nd Courses are held at our training offices 30 minutes from Central London, 20 minutes from London Heathrow airport. Have a look at our website or get in touch

Re: Eclipse, WOLips and getting the Web Resources right

2007-01-12 Thread Henrique Prange
Hi Michael, Which build style are you using? Ant or incremental? I'm using a very similar directory structure as you are. When I use the ant build style, resources are copied with the full path: dist/Project.woa/Contents/WebServerResources/src/main/webserver-resources/example.gif So, my

Servlets and FrontBase

2007-01-12 Thread Fredrik Lindgren
I am trying to deploy a servlet using frontbase on macosx. When I add an eomodel and a component that uses the database it gives me _obtainOpenChannel error that I usually get when the database isn't running or the connection dictionary stops working. However this particular build works in

Re: fromBlob is not called on ERXMutableDictionary with mutableDictionary prototype

2007-01-12 Thread Timo Hoepfner
Am 12.01.2007 um 11:37 schrieb Denis Frolov: 1. Did anyone (Timo?) succeed in solving the problem? Hi Denis, I switched to OpenBase for that project where the problem doesn't occur. Didn't find a solution for MySQL back then. I have other projects running on MySQL, but these don't use

Re: Eclipse, WOLips and getting the Web Resources right

2007-01-12 Thread Michael Bøcker-Larsen
Hi Henrique I'm using Ant. I had experienced what you describe too, but I altered the ant build file to accommodate this. in the build.woa task you have to change the path from '.' to wherever your resources you use. I use ./src/main/webresources/ Thanks, Michael On Jan 12, 2007, at

Re: fromBlob is not called on ERXMutableDictionary with mutableDictionary prototype

2007-01-12 Thread Kieran Kelleher
I have a vague recollection of problems like this when I switched from 3.0 driver to 3.1 driver, so I have been using 3.0.X driver since. It won't hurt to try the 3.0.X driver if that solves the issue be sure to let us know. Regards, Kieran On Jan 12, 2007, at 5:37 AM, Denis Frolov

Re: fromBlob is not called on ERXMutableDictionary with mutableDictionary prototype

2007-01-12 Thread Denis Frolov
Sorry for answering to myself, but it looks like the solution with try/catch and forced conversion has it's problems: @Test public void deleteObjectWithMutableDictionary() { EOEditingContext ec = new EOEditingContext(); RootObject rootObject = (RootObject)

Re: fromBlob is not called on ERXMutableDictionary with mutableDictionary prototype

2007-01-12 Thread Denis Frolov
The problem is the same for the following versions: mysql-connector-java-5.0.4-bin.jar mysql-connector-java-3.1.14-bin.jar mysql-connector-java-3.1.8-bin.jar mysql-connector-java-3.0.15-ga-bin.jar I've checked with debugger - attribute's value is presented with NSData in __dictionary property of

Re: Servlets and FrontBase

2007-01-12 Thread Pierre Frisch
You should check you class path. This error occurs when the jdbc adaptor cannot locate the proper driver or plug-in for the database. Pierre On 12-Jan-07, at 4:49 AM, Fredrik Lindgren wrote: I am trying to deploy a servlet using frontbase on macosx. When I add an eomodel and a component

Eclipse, WOLips and Resources

2007-01-12 Thread Jonathan Miller
Hi, I'm running Eclipse 3.2, WOLips, WO 5.3 running on Tomcat 5.5 and I'm having an issue with the WOResourceManager not being able to find an XSL file. I have .xsl included in the resources.include.patternset file. I can see that it is added to the build but I still get a null pointer

Frameworks Question

2007-01-12 Thread Gino Pacitti
Hi All I know this probably sounds a stupid question but I have never covered using Frameworks as part of a project other than the default added during project creation. I am using WO5.2..3 and wanted to know how components as part of Frameworks can be used in a project. For example

Re: Frameworks Question

2007-01-12 Thread David Holt
Hi Gino, I am using XCode (still) and I use several third party frameworks. Once you have added the Framework, you can just use the components by inserting them by name. You'll need to use the insert custom component and you will likely find the available components in the drop down

Re: Frameworks Question

2007-01-12 Thread Chuck Hill
If the frameworks are installed and included so that you can use the classes, you should be able to just use the components too. It should just work. Chuck On Jan 12, 2007, at 11:57 AM, Gino Pacitti wrote: Hi All I know this probably sounds a stupid question but I have never covered