Re: Wo and Saml2

2017-01-25 Thread Jon Nolan
Hi Jeremy, I have a pretty complete implementation I'm happy to share. Please contact me directly if you are interested. Jon On Jan 25, 2017, 2:45 AM -0700, Jérémy DE ROYER , wrote: > Hello, > > Does someone already manage to implement saml v2 (sso) with WebObjects ? > > I’ve found some tracks

Re: Use case for a "case insensitive equals" qualifier

2016-02-25 Thread Jon Nolan
We store all email addresses in their own table. There are many reasons why this works for us and many why it might not make sense for others. Anyway, what this gives us is the ability to store related email address information in context and, specifically, that’s where our solution comes in u

Re: Deployment with Tomcat 8 (and beyond)

2015-11-09 Thread Jon Nolan
It does sound familiar.  I don’t remember exactly how we fixed it but it’s one of these we have at the bottom of the ssdd target.  If I remember correctly it’s the second one.  Let me know if anything here is helpful. --- jon nolan - sitequest

Re: Deployment with Tomcat 8 (and beyond)

2015-11-09 Thread Jon Nolan
Hi Kevin, We successfully deploy on AWS with 64bit Amazon Linux 2015.03 v1.4.1 running Tomcat 8 Java 8.  What difficulties are you encountering? Jon --- jon nolan - sitequest technologies On Mon, Nov 9, 2015 at 9:20 AM, Kevin Hinkson wrote: > Hi, > Is there anyone currently

SAML 2.0

2015-08-29 Thread Jon Nolan
Hi, just wondering if anyone out there has shoehorned SAML 2.0 into a WebObjects stack (specifically the SP side of things although IDP would be great for testing).  Any feedback is appreciated. Thanks, Jon --- jon nolan - sitequest technologies

Re: DateFormat: Format for Time > 24 Hours

2013-02-16 Thread Jon Nolan
Thomas, You're not really dealing with a date/time scope on this problem.  The context is more of an interval/duration context.  See org.apache.commons.lang.time.DurationFormatUtils.  I think you'll find a solution there. Jon Theodore Petrosky February 16, 2013 8:42 AM

Re: Website Hijacked

2012-04-12 Thread Jon Nolan
I didn't see if you answered the apache logs question but I wonder if you might have registrar issues. This sounds very much like a squatter has your domain and the random nature of the problem is due to DNS caching. If that's the case, you'll probably be experiencing it at a 100% clip this t

Re: preventing direct component access

2012-04-10 Thread Jon Nolan
All of my wrapper components have a conditional i.e. "$rootPage.isAuthorized" around the WOComponentContent. Solves this issue and is handy in dozens of other ways. On 4/10/12 7:14 AM, Patrick Robinson wrote: I'm pretty sure this "feature" is the only mechanism by which a user can request a s

Re: Path for wosid cookie

2012-02-08 Thread Jon Nolan
Perfect. Thanks Chuck. On 2/8/12 6:38 PM, Chuck Hill wrote: Hi Jon, Just override domainForIDCookies() in your Session class. Yes, it says "domain" in the method name, but it is really the path. Chuck On 2012-02-08, at 4:35 PM, Jon Nolan wrote: Is there a Wonder-ish way of

Path for wosid cookie

2012-02-08 Thread Jon Nolan
Is there a Wonder-ish way of having the session id cookie path set with "/" rather than "/cgi-bin/WebObjects/App.woa"? If not, does anyone see a danger in making it so myself? There ABSOLUTELY will not be any other WebObjects apps deployed on the host. Thanks, Jon

Re: Editing Context Sporadically not Reverting?

2011-07-31 Thread Jon Nolan
I've never been able to depend on ec.updatedObjects() although eo.isUpdatedObject() seems bulletproof. I don't have an answer for you but it might be worth checking the latter when the exception is thrown. Perhaps it'll give you another clue. On 7/31/11 1:36 PM, Andrew Lindesay wrote: Hi th

Re: Limiting apache virtual host to only one WO application

2011-06-01 Thread Jon Nolan
Atli, This might have an error or two but it should get you started. You'll need conditions like the first one for static resource directories, etc. RewriteEngine On RewriteCond $1 !^/Apps/WebObjects/Awesome.woa RewriteCond %{SCRIPT_FILENAM

Re: Replacing no instance / app not found with custom 404 or similar

2011-05-16 Thread Jon Nolan
Standard WebObjects deployment under Apache (keep in mind you'll return the same file for http://www.host.com/missing-image.jpg, etc.) ErrorDocument 404 http://www.host.com/path/rc404.html Servlet deployment under Apache: ErrorDocument 503 http://www.host.com/path/rc503.html In my opini

Re: WO WebServices AxisFault

2011-05-07 Thread Jon Nolan
Are you sure you entered a good URL for the WSDL? Nine times out of ten when I see this error someone is getting it wrong. They either go with /wsdl or use the direct action request handler key, etc. https://host.com/cgi-bin/WebObjects/SomeApp.woa/ws/SomeService?wsdl On 07/05/2011, at 2:59

Re: Session id generation - how is it done?

2011-04-21 Thread Jon Nolan
Thanks Chuck. Exactly what I need. On 4/21/11 8:48 AM, Chuck Hill wrote: It is a securely hashed GUID. It contains no session or user information. It is a hash code to look up the session on the server. Chuck On Apr 21, 2011, at 6:09 AM, Jon Nolan wrote: I don't have the source

Session id generation - how is it done?

2011-04-21 Thread Jon Nolan
I don't have the source handy at the moment and I need some basic info on how a session id is created for a security analysis (you know the drill, is it unique, is it resistant to reverse engineering, etc.) If you're in the know and wouldn't mind, please reply with a quick sentence or two. Th

Re: Migrations not executed at startup problem (SOLVED)

2011-04-06 Thread Jon Nolan
This is a bit of an aside probably not relevant to most but be warned that ApplicationDidFinishLaunchingNotification does not fire under servlet deployment. On 4/6/11 3:37 PM, Amedeo Mantica wrote: Hi Miguel, you are having the same trouble I had some time ago. i solved using an NSNotificatio

Re: EO inheritance + Oracle

2011-03-23 Thread Jon Nolan
ly true with 2 level hierarchies and batch faulting. EOF is just unable to resolve the super-entities correctly. When I tested changing it to a one level hierarchy, performance increased a thousand fold. In any case, best of luck! Ken On Mar 22, 2011, at 11:04 PM, Jon Nolan wrote: Hi Ken,

Re: EO inheritance + Oracle

2011-03-22 Thread Jon Nolan
Ken On Mar 22, 2011, at 7:31 PM, Jon Nolan wrote: I have a fairly involved EO inheritance tree that works beautifully in every way but one. Here's a quick example illustrating the structure I'm using: Human North American American Canadian Mexican

Re: EO inheritance + Oracle

2011-03-22 Thread Jon Nolan
racle optimizer will play nice. You could try an ERXInQualifier, but I think that EOF is still going to want the restricting qualifiers. Chuck On Mar 22, 2011, at 4:31 PM, Jon Nolan wrote: I have a fairly involved EO inheritance tree that works beautifully in every way but one. Here'

EO inheritance + Oracle

2011-03-22 Thread Jon Nolan
I have a fairly involved EO inheritance tree that works beautifully in every way but one. Here's a quick example illustrating the structure I'm using: Human North American American Canadian Mexican European German Italian Spaniard Asia

Re: Dr. Miguel 'Optimistic Locking' Arroz [was Re: WebObjects stress Testing tool?]

2011-02-28 Thread Jon Nolan
8:50 AM, Kieran Kelleher wrote: Hi Jon, On Feb 28, 2011, at 10:28 AM, Jon Nolan wrote: Hi Kieran, I have a multi-threaded app and I'm starting to run into deadlock issues on EC locking/unlocking (OSC really). After a weekend of digging and researching I think your solution is the answer.

Re: Dr. Miguel 'Optimistic Locking' Arroz [was Re: WebObjects stress Testing tool?]

2011-02-28 Thread Jon Nolan
Hi Kieran, I have a multi-threaded app and I'm starting to run into deadlock issues on EC locking/unlocking (OSC really). After a weekend of digging and researching I think your solution is the answer. Question #1: Is this the final, dust-settled version? Question #2: Do you always use a n

ERXResponseRewriter.Delegate not used by WOImage

2010-12-03 Thread Jon Nolan
If I create and set a ERXResponseRewriter.Delegate I have the opportunity to modify webserver resource URLs with responseRewriterWillAddResource(String framework, String fileName). However, it does not appear that WOImage instances with framework and filename make it that far. Anyone have a t

Re: [OT] Restoring a FrontBase DB

2010-09-28 Thread Jon Nolan
On 9/28/10 9:37 AM, David Avendasora wrote: On top of that, I can't believe that Kieran didn't rise to the "You're Irish" comment. He must be extraordinarily busy. Irish Risings are dubious affairs. The overall record is 1-gazzilion and even the single win was only 26/32 successful. I'm sur

Re: [OT] Restoring a FrontBase DB

2010-09-28 Thread Jon Nolan
Dave, Have you requested and installed a license from http://www.frontbase.com/cgi-bin/WebObjects/FrontBase --> Buy --> Licenses --> E-Enterprise with LookSee? It's free but you still gotta do it. Jon On 9/28/10 5:33 AM, David Avendasora wrote: Hi all, I've been trying to signup for the F

Re: Cloud Computing and PCI Compliance

2010-08-23 Thread Jon Nolan
Kieran, You can save yourself at least half the headaches by staying out of the storage business completely. Authorize.net's CIM works very well for us. Obviously there are still PCI compliance concerns but they are drastically reduced. http://developer.authorize.net/api/cim/ Jon On 8/23

Re: Dates (1-day resolution) redux

2010-08-10 Thread Jon Nolan
On Aug 10, 2010, at 4:12 AM, Paul Hoadley wrote: Anyway, obviously my story is somewhat light on detail, and I'm not expecting anyone to jump in and solve my specific problem. But I couldn't be the only person to ever hit this problem—what are others doing with their "birthday" attributes in

Re: Oracle for WO 5.2.3

2010-07-16 Thread Jon Nolan
On 7/16/10 10:46 AM, Chuck Hill wrote: On Jul 16, 2010, at 9:12 AM, Jon Nolan wrote: On 7/16/10 9:27 AM, Pascal Robert wrote: Le 10-07-16 à 10:45, Jon Nolan a écrit : Thanks Mike. No Wonder on this project unfortunately. The presence of EROraclePlugIn inside Wonder is what had me off

Re: Oracle for WO 5.2.3

2010-07-16 Thread Jon Nolan
On 7/16/10 9:27 AM, Pascal Robert wrote: Le 10-07-16 à 10:45, Jon Nolan a écrit : Thanks Mike. No Wonder on this project unfortunately. The presence of EROraclePlugIn inside Wonder is what had me off searching for OraclePlugIn. You should be able to use EROraclePlugIn without the need to

Re: Oracle for WO 5.2.3

2010-07-16 Thread Jon Nolan
into WebObjects ... There's also an EROraclePlugIn inside Wonder. ms On Jul 16, 2010, at 10:15 AM, Jon Nolan wrote: I need to migrate an old 5.2.3 app from Frontbase to Oracle. I don't have an Oracle plugin handy and in an hour of searching I can't find it online. Any direction is

Oracle for WO 5.2.3

2010-07-16 Thread Jon Nolan
I need to migrate an old 5.2.3 app from Frontbase to Oracle. I don't have an Oracle plugin handy and in an hour of searching I can't find it online. Any direction is appreciated. Thanks, Jon ___ Do not post admin requests to the list. They will be i

Re: Migrations in Production?

2010-07-13 Thread Jon Nolan
My admins won't give the app user create/alter/drop/etc. permissions so I can't use migrations in prod. However, I do something like Mike suggests. I'm using the 0_Oracle_Upgrade.migration approach since I could never get Java to handle CLOBs correctly not to mention the 32 character limit on

Re: Single Table Inheritance and Multiple Queries

2010-07-13 Thread Jon Nolan
And all attributes across all entities match and use the exact same column names. On 7/13/10 9:54 AM, Chuck Hill wrote: Check that ALL of the entities in that hierarchy use the exact same table name. Chuck On Jul 13, 2010, at 7:51 AM, Jeffrey Simpson wrote: WebObjects version = 5.4.3 I too

Re: bizarre session time-outs

2010-06-03 Thread Jon Nolan
Is it a secured app? Easiest way to cause yourself session weirdness is mixing HTTPS and HTTP in the wrong places. Have you traced session creation to see if a second session is in play or is it just the original session timing out? Firebug/dev tools can be your friend here too. On 6/3/10

Re: Switch from 5.3.3 to 5.4.3 breaks tomcat deployment

2010-05-06 Thread Jon Nolan
o it's a mighty big issue for us. Yes, I *would* be very interested in your hack, even if it's just to understand the problem better. Thanks! Ken -----Original Message- From: "Jon Nolan" Sent: Thursday, May 6, 2010 9:49am To: webobjects-dev@lists.apple.com Subject:

Re: Switch from 5.3.3 to 5.4.3 breaks tomcat deployment

2010-05-06 Thread Jon Nolan
I think he's saying ApplicationDidFinishInitializationNotification not being posted is a known bug. NSNotification(Center) stuff works, just not this one. Something to do with having to use JavaWOJSPServlet I believe although I'm not certain. My workaround is an embarrassing hack so I'd rath

Re: need help with datepicker.....

2010-04-27 Thread Jon Nolan
not having problems. I fixed some issues a while back, so make sure you are not using an older Wonder. On Apr 27, 2010, at 6:36 AM, Jon Nolan wrote: Theodore, We had trouble with the ADP styling when used from within an AMD. It became very wide. If I remember correctly it was either the wid

Re: need help with datepicker.....

2010-04-27 Thread Jon Nolan
Theodore, We had trouble with the ADP styling when used from within an AMD. It became very wide. If I remember correctly it was either the width of the block enclosing the AMD or it started in the correct top left position and stretched to the edge of that block to the right. When I get in

Re: Lazy optional relationship creation on EO accessor

2010-02-23 Thread Jon Nolan
David Avendasora wrote: On Feb 23, 2010, at 12:27 PM, Jon Nolan wrote: In this case I don't want to use awakeFromInsertion as the relationship is very, very optional (i.e. small % of entities have not-null relationship.) I'm I missing something here? What does being optional (or

Re: Lazy optional relationship creation on EO accessor

2010-02-23 Thread Jon Nolan
David LeBer wrote: Seriously smacks of EOF commandment violations to me: See: #6, #8. I'd use awakeFromInsertion or create a cover accessor (lazyProperties(), setLazyProperties()), and in a purely naming c

Lazy optional relationship creation on EO accessor

2010-02-23 Thread Jon Nolan
Is this sane and safe? public Properties properties() { Properties properties = super.properties(); if (properties == null) { properties = Properties.createProperties(editingContext()); setPropertiesRelationship(properties); } return properties

Re: Q about locked ec

2010-02-17 Thread Jon Nolan
Ricardo J. Parada wrote: Hmm... I'm using background threads in my apps to do some processing. The thread creates is editing context for its own use. Something like this: EOObjectStoreCoordinator parentObjectStore = new EOObjectStoreCoordinator(); editingContext = E

Re: Are these jars needed...

2010-02-05 Thread Jon Nolan
java and am done with it? Cheers, Anjo Am 05.02.2010 um 18:20 schrieb Jon Nolan: Good point. I don't know but I imagine it might be difficult bordering on impossible. The services I've implemented outside of WOWebServices are all clients. Writing service providers within WO is mu

Re: Are these jars needed...

2010-02-05 Thread Jon Nolan
sion-based services with that? Cheers, Anjo Am 05.02.2010 um 17:26 schrieb Jon Nolan: ...and roll my own services. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple

Re: Are these jars needed...

2010-02-05 Thread Jon Nolan
Lots of webservices support in there. Since WO webservices are such a royal PITA to figure out when you get beyond simple types and "calculator" demo level RPC I choose to go my own route and embed... webservices-api.jar webservices-extra-api.jar webservices-extra.jar webservices-rt.jar webser

Re: ServerName outside RR loop?

2010-02-02 Thread Jon Nolan
Mike Schrag wrote: As an aside, this need is related to generating direct action URLs without a context or request (i.e. within a background thread.) Is it worthwhile to anyone beside me to have a directActionURLForActionNamed(...) method that doesn't depend on (ERX)WOContext? I keep running

Re: ServerName outside RR loop?

2010-02-02 Thread Jon Nolan
2010, at 5:16 PM, Jon Nolan wrote: Is it possible to get at the server name without a request/context? It doesn't seem likely but I thought it worth asking. Right now I'm storing it at the application level when the first request is made. Alternatively, it can be handled by a prope

ServerName outside RR loop?

2010-02-01 Thread Jon Nolan
Is it possible to get at the server name without a request/context? It doesn't seem likely but I thought it worth asking. Right now I'm storing it at the application level when the first request is made. Alternatively, it can be handled by a property. Both of those seem extremely inelegant

WOWebServiceClient throwing confusing error on constructor

2010-01-07 Thread Jon Nolan
Looks something like this... Unable to find a SOAP style for service and port. Skipping. {http://xyz.com/ServiceName}ServiceName BasicHttpBinding_ServiceNameService This is a weird one. Gotta hate it when Google bats 0.000 on your errors. Does anyone have experience with this error or per

Re: Best way to run period task?

2010-01-06 Thread Jon Nolan
Mark Woollard wrote: What's the recommended way to run a periodic task from within a WO application? In this case its infrequently (hourly) and independent of any web requests. For me... public class SomeTask extends ERXTimerTask { public void _run() { // do something } } l

Re: [SOLVED] Re: Stripping Microsoft Word bad characters ( some dashes and quotes )

2009-12-30 Thread Jon Nolan
Amedeo Mantica wrote: here the map... On 30/dic/2009, at 21.10, Amedeo Mantica wrote: Hello, I remember that there is a class that strips those orrible Microsoft Word bad characters ( some dashes and quotes ) Amedeo, Here's a slightly more elaborate and perhaps more complete solution. Tes

Re: Big Decimal as optimistic lock attribute?

2009-12-09 Thread Jon Nolan
se I feel more comfortable/trusting of it for the particular situation I have. Regards and thank, Kieran On Dec 9, 2009, at 12:01 PM, Jon Nolan wrote: Kieran Kelleher wrote: Am I dreaming in thinking that I saw a discussion at some time in the past that there is some flaw with using BigDecima

Re: Big Decimal as optimistic lock attribute?

2009-12-09 Thread Jon Nolan
Kieran Kelleher wrote: Am I dreaming in thinking that I saw a discussion at some time in the past that there is some flaw with using BigDecimals as reliable* optimistic locking attributes? . or was that just NSTimestamps and float/double type values? . Kieran, I seem to remember some

Re: Display group design question

2009-12-04 Thread Jon Nolan
pient); recipientsDisplayGroup().displayBatchContainingSelectedObject(); Note I insert new ones in furst position of first page just so user gets visual feedback. You can insert wherever. Slán, Kieran On Dec 4, 2009, at 9:54 AM, Jon Nolan wrote: I have had a problem with variations on this

Display group design question

2009-12-04 Thread Jon Nolan
I have had a problem with variations on this since my early days with WO and I've never solved it to my satisfaction. Time to ask for help. * Page has a display group (ERXBatchingDisplayGroup) using EC1 in the fetch spec. For the sake of example the EOs in the list are colors - 25 total with

Re: EROraclePlugIn, migrations and reserved words

2009-11-29 Thread Jon Nolan
Chuck Hill wrote: I am pretty sure that you can do it, if you are willing to make and use a sub-class of the Oracle plugin. I don't think so Chuck. :-D It was worth the ask. One never knows, there might have been a flag. ___ Do not post admin reque

Re: EROraclePlugIn, migrations and reserved words

2009-11-29 Thread Jon Nolan
Thanks Don. Looks like I'll have to although, for example, the FrontBase plug-in always quotes table/attribute names making it a non-issue for EOF. Not the end of the world to change the table name. Don Lindsay wrote: I would discourage you from using reserved keywords for table names, it

EROraclePlugIn, migrations and reserved words

2009-11-28 Thread Jon Nolan
Is there a way to get the Oracle reserved words as table and attribute names double-quoted in the generated SQL? I have a USER table I'd rather not rename unless absolutely necessary. The following is generated and fails: CREATE TABLE USER(USER_ID NUMBER); The following is legal: CREATE

Re: Intercepting (ERX/WO)DirectActionRequestHandler

2009-10-22 Thread Jon Nolan
Chuck Hill wrote: On Oct 22, 2009, at 4:17 PM, Jon Nolan wrote: Hi, Is there a preferred way to intercept request handling so as to avoid messages such as the one below: Oct 22 17:00:59 MyApp[54589] (ERXApplication.java:1516) ERROR er.extensions.appserver.ERXApplication - Exception

Intercepting (ERX/WO)DirectActionRequestHandler

2009-10-22 Thread Jon Nolan
Hi, Is there a preferred way to intercept request handling so as to avoid messages such as the one below: Oct 22 17:00:59 MyApp[54589] (ERXApplication.java:1516) ERROR er.extensions.appserver.ERXApplication - Exception caught: Couldn't locate action class named 'images'. I know why the

Re: Single-table inheritance error [SOLVED]

2009-09-30 Thread Jon Nolan
Also, in case it matters, resourceType is a javaEnum. Bingo. Changed it to a varchar50/String(RTRIM) and it works exactly as expected. Not too sure if this qualifies as a bug or as a worst practice. Either way, thanks for the brain tweaks as they led me to solving in minutes something whi

Re: Single-table inheritance error [SOLVED]

2009-09-30 Thread Jon Nolan
public void awakeFromInsertion(EOEditingContext ec) { super.awakeFromInsertion(ec); setResourceType(ResourceType.Resource2); } Also, in case it matters, resourceType is a javaEnum. Bingo. Changed it to a varchar50/String(RTRIM) and it works exactly as expected. Not too s

Re: Single-table inheritance error

2009-09-30 Thread Jon Nolan
Mike Schrag wrote: java.lang.IllegalStateException: Unable to determine subentity of 'AbstractResource' for row: { ...bunch of attributes... }. Check that the attribute 'resourceType' is marked as a class property in the EOModel and that the value satisfies some subentity's restricting quali

Single-table inheritance error

2009-09-30 Thread Jon Nolan
I have something like this modeled in single-table inheritance: AbstractResource Resource1 Resource2 ... ResourceN AbstractResource is marked as abstract and a class attribute named "resourceType" handles the restricting qualifier. If I execute this: NSArray resources = Abstr

Re: EOF inheritance

2009-09-08 Thread Jon Nolan
r classes. Of course you can have multiple behaviour classes (and types) too if you want more granularity, for example a Leopard and SnowLeopard may share the same speak() and eat() behaviour. Anyway, that's my 2 cents!! :-) Learn more about Strategy Design Pattern from Head First Java chapt

Re: EOF inheritance

2009-09-06 Thread Jon Nolan
Lots of people use horizontal inheritance too. (I do use vertical inheritance and it is very possible to make it work - I've had it in production for a couple of years - but requires a hack or two). On Sep 6, 2009, at 7:45 PM, Jon Nolan wrote: Travis Britt wrote: On Sep 6, 2009, at 7:18

Re: EOF inheritance

2009-09-06 Thread Jon Nolan
Travis Britt wrote: On Sep 6, 2009, at 7:18 PM, Jon Nolan wrote: I now have a project which begs for it. What say you? Do you use inheritance or is my gut feeling correct in telling me to keep on staying away? Which type? I use single table inheritance all the time and it works perfectly

EOF inheritance

2009-09-06 Thread Jon Nolan
I haven't used inheritance in years. My experience was that the hassles you faced far outweighed the benefits of elegance of design. I now have a project which begs for it. What say you? Do you use inheritance or is my gut feeling correct in telling me to keep on staying away? Thanks, Jon _

Re: And the beat goes on...

2009-07-08 Thread Jon Nolan
Kieran Kelleher wrote: The fact that it took apple this long to unshackle webobjects from OSX / XCode is ridiculous. Please forgive me if this is a stupid question but the answer seems to be hush-hush - a bit like how we don't speak of why Uncle Tommy spent three years in jail and is not

Re: Migrations encoding

2009-06-12 Thread Jon Nolan
Tusker wrote: I changed the file to be UTF-16 but I get an error now. I use the same sql file and manually run it in frontbase, it works. Example of the statement: update Country set name = 'Belgium/België/Belgique' where country_id = 2; "name" is a reserved word in Frontbase although FBMan

SOLVED: WebServerResources under servlet deploy - WOAppMode=Deployment

2009-05-21 Thread Jon Nolan
Jon Nolan wrote: >>> The ERXStyleSheet is assuming that the file is in the location it would be if you were having the Web Server serve the static files. >>> >>> This path maps to: /Library/WebServer/Documents/WebObjects/Frameworks/WDExtensions.framework/Web

Re: WebServerResources under servlet deploy - WOAppMode=Deployment

2009-05-20 Thread Jon Nolan
>>> The ERXStyleSheet is assuming that the file is in the location it would be if you were having the Web Server serve the static files. >>> >>> This path maps to: /Library/WebServer/Documents/WebObjects/Frameworks/WDExtensions.framework/WebServerResources/css/default-styles.css >>> >>> But bec

WebServerResources under servlet deploy - WOAppMode=Deployment

2009-05-19 Thread Jon Nolan
I am really struggling to figure out how to access static resources under a servlet deployment. I want to serve them via tomcat for a variety of reasons. I set WOAppMode=Deployment and I get ERXStyleSheet and ERXJavaScript URLs which are giving me fits. For the sake of context, application U

Re: [ANN] AjaxDatePicker and AjaxDefaultSubmitButton

2009-04-01 Thread Jon Nolan
Chuck Hill wrote: er, who uses "/"? :-P As of about 30 minutes ago, not me. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription

Re: [ANN] AjaxDatePicker and AjaxDefaultSubmitButton

2009-04-01 Thread Jon Nolan
Chuck Hill wrote: I feel fairly certain that either your format pattern is wrong or is not translated properly by my code or the calendar. I have only seen this when the NSTimestampFormatter and the calendar did not agree on the format. What are you using for a format? I've tried binding bo

Re: [ANN] AjaxDatePicker and AjaxDefaultSubmitButton

2009-04-01 Thread Jon Nolan
Chuck Hill wrote: In the interests of keeping folks up to date with what is getting added to Wonder... AjaxDatePicker Chuck, First of all, thanks for this. Very nice bit of machinery. Are you aware that focusing the input a second time results in the date picker displaying with the day a

Re: Sometime WebObjects drives me a little crazy!

2009-01-26 Thread Jon Nolan
Mike Schrag wrote: I think I dodged "description" for a really long time until someone said "you don't have to" a year or so ago ... probably was Chuck. Pre-Wonder, I happily created entity() relationships in three projects/EOs. Post-Wonder, not so happily renamed them to entitee() which o

Re: ERChangeNotificationJMS

2009-01-06 Thread Jon Nolan
Andrew Lindesay wrote: If you are going to use a messaging server, I would suggest that you use ActiveMQ; http://activemq.apache.org/ ...instead of OpenJMS. Andrew, ActiveMQ is what I have at my disposal. What are the initial steps in using same? All I've done so far is simply add th

ERChangeNotificationJMS

2009-01-06 Thread Jon Nolan
I'm trying to integrate this and I'm running into... com.webobjects.foundation.NSForwardException [java.lang.NoClassDefFoundError] org/exolab/core/util/URI$MalformedURIException:java.lang.NoClassDefFoundError: org/exolab/core/util/URI$MalformedURIException Some very old posts indicate what t

Re: er.extensions.migration.ERXMigrationFailedException: Using Migrations and FrontBase

2008-10-17 Thread Jon Nolan
Gus, You have to reinstall the Wonder frameworks with a version no older than 2008-10-16. The fix Mike made Wednesday night solves this exact exception among others. Jon WebObjects wrote: Well changing to Frontbase, while running the app for first time, I got the following [2008-10-17

Re: upload via drag and drop

2008-10-09 Thread Jon Nolan
We've been using Rad Upload for years. It's a little wonky to set up but it's rock solid. http://www.radinks.com/upload/demo.php Jon Nolan Web Dynamics - A Division of iCentris 747 E. South Temple Suite 200 Salt Lake City, Utah 84102 ph: 801.419.2796 David LeBer wrote

Re: WOWebServiceRegistrar.setSecurityDelegate failure

2008-04-23 Thread Jon Nolan
Thank you gentlemen. Your help is appreciated. I'll report back once I'm able to work on your suggestions. Jon Mr. Pierre Frisch wrote: Without going into too much details when WebServices for WebObjects were created with Axis 1.0 type information in WDSL document was optional, WebOjects d

Re: WOWebServiceRegistrar.setSecurityDelegate failure

2008-04-22 Thread Jon Nolan
e on a somewhat guaranteed stable/working WebObjects/WOLips/Java/Axis environment for non-trivial webservices is very, very appreciated. Thanks, Jon Nolan Mr. Pierre Frisch wrote: Actually 5.3.x has most of the same issues as 5.4.1. Grab 5.4.2 from the iPhone SDK beta if you can. WebObjects 5.3.

WOWebServiceRegistrar.setSecurityDelegate failure

2008-04-22 Thread Jon Nolan
works are installed. Yes, the error is the same running within Eclipse or at the command line. Any help is very appreciated. -- Jon Nolan ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-