Connecting to a 4D server with EOModeler

2005-10-13 Thread Peter Mitchell
I'm looking for information on how to setup EOModeler and 4D so I can connect to a 4D server and build a data model. I have downloaded the 4D JDBC .jar file and I've gone through the little documentation I have found for the 4D JDBC and for EOModeler. But I have not been able to get it to w

Re: ANN: MonitorPatch

2005-10-13 Thread Christian Pekeler
On Oct 13, 2005, at 18:59, Greg Hulands wrote: I had the same idea, but to patch it by adding a command line tool that talked to the patched version via rmi or sockets, so that you could add an ant task to restart the application automatically. You can invoke the direct actions of the patche

Re: ANN: MonitorPatch

2005-10-13 Thread Greg Hulands
Excellent work Christian. I had the same idea, but to patch it by adding a command line tool that talked to the patched version via rmi or sockets, so that you could add an ant task to restart the application automatically. I wrote out what I wanted to achieve with it and have attached it

ANN: MonitorPatch

2005-10-13 Thread Christian Pekeler
MonitorPatch adds some features to JavaMonitor. The most important one is a set of direct actions to allow for scripted control over your deployed WOApps. In my environment, the development team deploys their latest build fairly often (sometimes twice a day) to the QA server for testing.

Re: all-in-one .war, preferably with ant?

2005-10-13 Thread Christian Pekeler
What I want is to make my deployment as easy as possible, [...] rather than clicking around Monitor all the time. Not exactly what you're asking for, but this patch should allow you to automate your deployments with Monitor: http://pekeler.org/software/MonitorPatch Christian smime.p7s

mysterious LDAP problem and "why doesn't EOAdaptorDebugEnabled log LDAP too?"

2005-10-13 Thread Benjamin J Doherty
Friends: I am using WebObjects to connect to OpenLDAP and there's a mysterious error that I cannot understand. This is what appears in the LDAP server's debug.log file: Oct 13 14:05:37 server slapd[97299]: conn=109589 op=3 SRCH base="uid=bjd,ou=People,dc=dot,dc=org" scope=2 deref=3 filte

Re: Searchable Index of Practical WebObjects with Full Page Results

2005-10-13 Thread LD
On 13/10/2005, at 4:06 AM, Chuck Hill wrote: The publisher has just put up an index of all (most?) of their books, including our Practical WebObjects. Search results return the _entire_ page where the term is found. OK, it is not formatted as nicely as in the book, but if you don't have i

Re: EOEditingContext.MessageHandler - SOLVED

2005-10-13 Thread Marcos Trejo Munguia
Thanks Chuck and Zak. I follow the recommendation of Chuck and now it works, but the method editingContextPresentErrorMessage was never get called, so I implement editingContextShouldContinueFetching like this: public boolean editingContextShouldContinueFetching(EOEditingContext context, int

Re: EOEditingContext.MessageHandler

2005-10-13 Thread Zak Burke
Marcos Trejo Munguia wrote on 10/13/05 2:05 PM: > Hi list! > > Someone has successfully implement this class in a WebObjects Application? In my EC subclass constructor I have: ... setMessageHandler(new I3pkbMessageHandler()); ... My message handler is the followi

Re: EOEditingContext.MessageHandler

2005-10-13 Thread Chuck Hill
It looks like it does not like the anonymous inner class. I'd try it like this: public TransactionsHistory(WOContext context) { super(context); ec.setMessageHandler(this); } public void editingContextPresentErrorMessage(EOEditingContext context, String message)

EOEditingContext.MessageHandler

2005-10-13 Thread Marcos Trejo Munguia
Hi list! Someone has successfully implement this class in a WebObjects Application? I have the next code: private EOEditingContext ec = new EOEditingContext(); public NSArray transactions; public TransactionsHistory(WOContext context) { super(context); ec.setMessageHandler(new Object() {

all-in-one .war, preferably with ant?

2005-10-13 Thread Jim Zajkowski
Hi there, Does anyone have a working build.xml file that generates an all-in-one .war that includes WebObjects and the app? I've tried a number of different ideas but all generate some traceback in different places. Googling around revealed other people had similar problems but no solutions. Wh

Re: Adding Objects to an ArrayList (Checkboxes)

2005-10-13 Thread Janice Cheung
LD, Ken, and especially David, Thank you very much for all of your help! I finally realized what was causing the issue... I had the binding for the nextPage, "EmailServerContacts", as a WOHyperlink wrapped around a WOActiveImage rather than a WOSubmit button (although it was sti

WO and WSS (Web Services Security)

2005-10-13 Thread Hugi Thordarson
Hi all! Has anyone here tried to use WSS to offer secure web services from a WO application? There is a short article on the WSS standard in WO's web services documentation ( http://developer.apple.com/documentation/WebObjects/ Web_Services/Security/chapter_3_section_2.html ) but there's no

Re: Web Services and Axis

2005-10-13 Thread Mark Wardle
I've successfully used Axis 1.1 with 5.2.3 - BUT (and this is a big BUT), didn't use the WO classes that wraparound Axis, but just used Axis directly. Mark On 13 Oct 2005, at 08:57, Art Isbell wrote: On Oct 12, 2005, at 7:17 PM, Corin Lawson wrote: I've been successfully developing web s

Re: Web Services and Axis

2005-10-13 Thread Art Isbell
On Oct 12, 2005, at 7:17 PM, Corin Lawson wrote: I've been successfully developing web services with WO 5.2.3 and have Axis 1.0 installed using Eclipse. I decided to upgrade Axis. But now my app breaks at other places. WebObjects 5.2.3 requires Axis 1.0 and includes it in $NEXT_ROOT/

WOWorx(4) Display Groups - Part 1 posted...

2005-10-13 Thread Nathan Walker
This is the first part of a two part series on Display Groups. Also learn how to create a custom project template for XCode for code reuse and to make your future projects a breeze. Covers To-Many Relationships, Editing Context issues, API docs, learn to use Jakarta's Commons Lang Utilities