Arghh: WOString with 'valueWhenEmpty' bound to a null String

2010-06-16 Thread Mark Gowdy
Hello, I just wasted a few hours of my life over the most insanely unexpected behaviour from my old friend 'WOString'. If you put this into your page (you can guess what 'returnsNullString' returns): "$returnsNullString"/> it displays the string: null I was expecting it to display

Re: FetchSpec setFetchLimit??

2010-07-12 Thread Mark Gowdy
On 2 Mar 2009, at 23:43, Chuck Hill wrote: On Mar 2, 2009, at 1:42 PM, Kieran Kelleher wrote: I always thought that EOFetchSpecification.setFetchLimit( int n) would generate SQL with LIMIT n tacked onto the end of the SQL statement, but it appears not to. This is the default behavior as

Re: error please help me out

2010-08-06 Thread Mark Gowdy
Hi, I think the clue is this: java.lang.ClassNotFoundException: Cannot find class or component named PermissionWrapper in runtime or in a loadable bundle Is PermissionWrapper in another framework? If so, you need to add that framework to your project. Right-click on your 'Ptm' project in E

Re: error please help me out

2010-08-12 Thread Mark Gowdy
t coming under framewrok when i tried to add it . Regards Vaibhav On Thu, Aug 12, 2010 at 2:53 PM, Mark Gowdy wrote: This is what one of mine looks like: You may have to add in the frameworks that your application uses in here (by clicking 'Add Library', and selecting the relevant fr

Java Development Kit 7 for Mac OS X

2011-01-12 Thread Mark Gowdy
Noticed this, and thought of you lot. "The OpenJDK project has released the first code for the Apple-backed open source version of Java Development Kit 7 for Mac OS X." http://www.theregister.co.uk/2011/01/12/ open_source_java_for_mac_code_released/ Mark __

ERXEOControlUtilities.clearSnapshotForRelationshipNamed(..) weirdness !

2009-11-05 Thread Mark Gowdy
Hi, I am having an strange problem with Wonder's clearSnapshotForRelationshipNamed method. (My Wonder version is a few days old) We have EOs which are related to each other: RoutingMediaItem <<---> RoutingMediaStatus When I try to get an up-to-date status object and check the results

Re: Application not working with update 10.6.3

2010-04-02 Thread Mark Gowdy
I had hit this issue from a clean install, I would have been stuffed. http://wiki.objectstyle.org/confluence/display/WO/ Programming__WebObjects-Web+Applications-Deployment-Mac+OS+X+Server Regards, Mark On 1 Apr 2010, at 17:26, Mark Ritchie wrote: On 1/Apr/2010, at 1:55 AM, Mark Gow

Re: You don't have permission to access /cgi-bin/WebObjects/TheApp.woa/-5579 on this server.

2010-04-15 Thread Mark Gowdy
Do a quick search for the message on 2nd April 2010: Re: Application not working with update 10.6.3 This is probably the same problem: The update added a few lines to /etc/apache2/httpd.conf To the end of the " configuration of mailman: ", it added: ScriptAl

Re: [OT] Parsing legacy fixed width flat files

2009-03-25 Thread Mark Gowdy
You could investigate 'Regular Expressions'. They are very powerful. Although you rarely hear RegEx and 'Easing the pain' in the same sentence. Mark Sent from my iPhone On 25 Mar 2009, at 04:01, Q wrote: This is a bit off topic, but the Java foo is strong here so I thought it a good plac

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Mark Gowdy
Hi, I recently starting using the Wonder Ajax stuff, and this is my (limited understanding) solution to your problem. I think you need an AjaxSubmitButton in the form somewhere: updateContainerID = "GroupSelection" action = "$someActionInJava"/> I am probably wrong (there is probably some

Adaptor URL issue (probably) in Windows deployment

2009-05-31 Thread Mark Gowdy
Hello, We recently upgraded our apps to the latest WO version and also start using Project Wonder (which rocks by the way). I deployed our app on one of our customer's Windows servers, and have hit a little snag. The IIS ISAPI adaptor is called WebObjects.dll, but something is removing

Re: Adaptor URL issue (probably) in Windows deployment

2009-05-31 Thread Mark Gowdy
rk On 31 May 2009, at 16:10, Mark Gowdy wrote: Hello, We recently upgraded our apps to the latest WO version and also start using Project Wonder (which rocks by the way). I deployed our app on one of our customer's Windows servers, and have hit a little snag. The IIS ISAPI ad

Inserting a new sub-component (programmatically) in appendToResponse()

2009-06-08 Thread Mark Gowdy
Hello, I need to insert a new sub-component into a page during the request- response cycle (probably within appendToResponse() ) I thought I had achieved this, but all the links on the page are now broken (and other general weirdness unfolds) This is the essence what I need to achieve (I r

Odd cookie expiration behaviour (Safari related?)

2009-06-12 Thread Mark Gowdy
Hello, We use cookies to do various tracking talks. When we added a new cookie (with a shorter expiration time than we would normally use), we noticed something odd: In Firefox, it was working as expected. In Safari it was not appearing at all. On closer inspection, we noticed that he cookie

[Solved] Odd cookie expiration behaviour (Safari related?)

2009-06-13 Thread Mark Gowdy
than seconds) Everyone beware! Thanks, Mark On 12 Jun 2009, at 18:41, Mike Schrag wrote: try using the NSTimestamp constructor and see if that works On Jun 12, 2009, at 1:26 PM, Mark Gowdy wrote: Hello, We use cookies to do various tracking talks. When we added a new cookie (with a short

Detecting Javascript enabled (browser side)

2009-08-10 Thread Mark Gowdy
Hello, We recently started using the Wonder Ajax framework (which is amazing btw, well done guys), but we want to be able to detect if javaScript is enabled on the client's browser. I suspect this is a problem solved by many before, but I cannot seem to find a reliable solution. I have

Re: Session... when are they created?

2009-08-10 Thread Mark Gowdy
2) Let's say an anonymous user has a session... then he logs in. And... I don't want the session change!! This is the code (it's a direct action, called from a submit button in a form) In the case where the user has a session, can you show us: 1) The component html (in eclipse) for this

Re: Session... when are they created?

2009-08-11 Thread Mark Gowdy
On 11 Aug 2009, at 11:47, Francesco Romano wrote: I noticed that the submit button has no wosid associated, but the other links yes... Therein lies the problem I think. It should have a wosid. You need to figure out why that link is not getting the wosid appended correctly. What happens

ERXEC and locking

2009-08-13 Thread Mark Gowdy
Hi there, I have been watching Chuck's podcast - "WebObjects Quite Good Practices", and I would like to make absolutely sure that I understand this correctly. Q: Is it true to say: - If I use ERXEC to create all my editingContexts, using: EOEditingContext ec = ERXEC.newEditingContex

Re: ERXEC and locking

2009-08-13 Thread Mark Gowdy
On 13 Aug 2009, at 13:39, Mike Schrag wrote: I have been watching Chuck's podcast - "WebObjects Quite Good Practices", and I would like to make absolutely sure that I understand this correctly. Q: Is it true to say: - If I use ERXEC to create all my editingContexts, using: EOEditin

Re: Firefox adding "Pr" to a hidden field?!

2009-09-11 Thread Mark Gowdy
Miguel, I have also noticed this in our error logs, but it happens so infrequently that I just ignored it (presumed it was a bot, or something probing for a common security hole or something) If you discover otherwise, please let us know. Thanks, Mark On 11 Sep 2009, at 15:48, Miguel Arro

Oracle Reconnection / Timeout Problem

2006-06-16 Thread Mark Gowdy
Hello, I am having a problem when my application looses it's connection with oracle.  It simply stalls for a while.It will eventually reconnect, but it take 9 minutes on my dev machine, and about 14 minutes (I think) on our deployment machine.My EOF connection stuff on my dev machine is:    connect

Duplicate entry '4183884' for key 'PRIMARY'

2013-05-17 Thread Mark Gowdy
Hi, We have started getting more of these errors recently, now that the system is under more load. EvaluateExpression failed: primaryKeyForNewRowWithEntity(EOEntity entity){ return null; } Any advise would be appreciated, Thanks, Mark

Re: Duplicate entry '4183884' for key 'PRIMARY'

2013-05-17 Thread Mark Gowdy
2013, at 21:18, Paul Yu wrote: > Well you certainly should not use MyIsam system. Innodb is the right answer. > See Kieran's post on this subject. > > But I'm not sure that will be the end of your issues. > > Sent from my iPad > > On May 17, 2013, at 4:03 PM, Ma

Re: Duplicate entry '4183884' for key 'PRIMARY'

2013-05-18 Thread Mark Gowdy
s in memory and must > always get rows from disk. There is no benefit to staying on MyISAM format. > > > On May 17, 2013, at 4:36 PM, Mark Gowdy wrote: > >> Thanks Paul, it looks like you are correct. >> >> Two 'Kieran Kelleher' email stated: >>

ERCAuditTrail - Relationship updates.

2013-12-17 Thread Mark Gowdy
Posted this to the Wonder list (sourceforge), but it didn't appear to come through. Also, noticed that the activity on that account was quite low too. Is there a problem with it, or is there somewhere new/cool to hangout? Hi, The ERCoreBusinessLogic stuff works great when simple values a

Re: MySqlPlugin

2014-03-07 Thread Mark Gowdy
This might be unrelated, but we experience an issue where our apps would periodically freeze. From memory, LIMIT might have been a factor. It was solved by upgrading the mysql-connector-java jar from 3.1.8 to 5.1.16 > By examining the state of the hung instance, we saw that the mysql connector

HELP : Apache2.4.6 on Windows 2003 Server (R2) SP2

2014-03-07 Thread Mark Gowdy
Hi, I am installing our app on a Windows server for our client, I thought I had it working, but when I started to use it a little more heavily Apache keeps crashing. (btw, I really don't like windows, cygwin makes it almost bearable) The config is: Windows 2003 Server (R2) SP2 Apache2.4.6 (32

Eclipse "3.7.1" hangs a lot - Anyone else?

2012-01-21 Thread Mark Gowdy
Hi there. I just got a new MacBook Pro with quad i7 :-) I installed Eclipse (Indigo 3.7.1) + WO + WOLips + Wonder + subversive I imported my projects, and all initially seemed good. The problem is that Eclipse keeps freezing (sometimes while I am 'Refreshing' or 'Clean - build', or when I updat

Re: new system: all installed, but eogeneration is a no-op

2012-01-24 Thread Mark Gowdy
Joe, While your install is still fresh in your mind, may I ask you a quick question: I just installed a similar set-up, but periodically, my system simply hangs (usually just after I save a java file). I am trying to figure out what is responsible. I have installed: Eclipse 3.7.1 (64-bit) "

Re: **SOLVED** Eclipse "3.7.1" hangs a lot - Anyone else?

2012-01-26 Thread Mark Gowdy
ld be your problem. > > > On Tue, Jan 24, 2012 at 2:16 AM, Mark Gowdy wrote: >> Joe, >> >> While your install is still fresh in your mind, may I ask you a quick >> question: >> >> I just installed a similar set-up, but periodically, my system simp

Re: Weird Crash

2012-02-16 Thread Mark Gowdy
The cause might be your SVN plugin. http://lists.apple.com/archives/webobjects-dev/2012/Jan/msg00365.html Mark Sent from my iPhone On 16 Feb 2012, at 18:00, Jaime Magiera wrote: > Hello folks, > > I've got weird problem that arose after setting up Eclipse + WO on OSX > 10.7.2. I've imported

AjaxUpdateLink & Non-Ajax alternative link

2012-02-23 Thread Mark Gowdy
Hi, I am curious to know if there is a common and simple approach to serving both Ajax and non-Ajax (full page refresh) links together (preferably using Wonder's Ajax framework). Where the browser (or spider) uses the appropriate thing depending on Java-script availability. One of the main

Re: Multiple foreign keys pointing to the same table

2012-05-14 Thread Mark Gowdy
The other option is to use a many-to-many relationship between the two entities. Select the two entities in EOModeller (or whatever it is called nowadays) and join in a 'many-to-many'. It will create the join table (with a compound key created using the two primary keys), and wo will handle all

Re: Multiple foreign keys pointing to the same table

2012-05-14 Thread Mark Gowdy
Read the replies to this posting. It should help. http://markmail.org/message/ndp7jgdfjwfnouwa#query:webobject%20many%20to%20many%20tutorial+page:1+mid:ejbgzqebozximrda+state:results > EOModeler can do this automatically for you. 1)Click on the model so you can > see the model in list mode. 2)S

Or qualifier (including a many-to-many 'containsObject') give wrong results

2012-05-17 Thread Mark Gowdy
Hi, I have a 'Media' entity, and a 'Category' entity. I need to create a qualifier that queries on 2 'to-one' relationships, as well as on a single 'to-many'. These are some test qualifiers and the number of distinct results they got: EOQualifier q1 = Media.PRIMARY_CATEGORY.eq(cat).or(Media.

Re: Or qualifier (including a many-to-many 'containsObject') give wrong results

2012-05-18 Thread Mark Gowdy
MARY_CAT_FK = 2) OR (T2.CAT_PK = 2 AND t0.MEDIA_PK = T1.MEDIA_CK AND T1.CAT_CK = T2.CAT_PK) Any ideas how I can get WO to do the right thing? (it looks like an EO sql generation bug to me) Many thanks, Mark > > Chuck > > > On 2012-05-17, at 10:17 AM, Mark Gowdy wrote: > >

Re: Or qualifier (including a many-to-many 'containsObject') give wrong results

2012-05-18 Thread Mark Gowdy
tly in memory. > Using them on a db fetch failed to return the correct results. I never > delved into the sql at the time, I just went with in memory qualifying since > it worked. > > Ramsey > > On May 18, 2012, at 5:20 AM, Mark Gowdy wrote: > >> >>

Re: **SOLVED** Or qualifier (including a many-to-many 'containsObject') give wrong results

2012-05-19 Thread Mark Gowdy
t t1.ID from X where [your qualifier here]) with the 3 arg constructor --- My head just melted. Mark On 18 May 2012, at 22:09, Mark Gowdy wrote: > Nope, MySQL > > I believe the equivalent memory filter works correctly. > > Mark > > Sent from my iPho

Re: Tool-tip framework

2012-10-23 Thread Mark Gowdy
One word - "Twitter Bootstrap". (well, two words) Mark Sent from my iPhone On 23 Oct 2012, at 19:21, Chuck Hill wrote: > Mine was made for a specific purpose, but here it is: > > CSS: > > /* Tooltips inspired by > // http://www.jlhaslip.trap17.com/samples/tooltips/index.html*/ > > a.toolt

Apache 2.4 (.7) 'Segmentation fault'

2015-03-20 Thread Mark Gowdy
ar to work). "WOShmem_unlock()” might implicate the WebObjects adaptor. Has anyone seen this behaviour before, or know how to fix it? Thanks in advance, Mark Gowdy ___ Do not post admin requests to the list. They will be ignored. Webobjects-d

Aspect-Orientated Programming (AOP)

2015-06-15 Thread Mark Gowdy
Hi, I am keen to try and incorporate these techniques into my new projects. So I have a few questions (assume almost zero knowledge of AOP). 1) Is AOP an option within WebObjects / Wonder projects? Has anyone got this to work? 2) There appears to be a few ways of doing this (Aspect/J, Spring

ERQMAjaxUpdateContainer : lookup of unknown key: 'value'

2016-01-07 Thread Mark Gowdy
Hi, Short Story: The problem (in my app) appears to be that put a WOstring in an html comment (with an WOGNL $ binding), it throws [ lookup of unknown key: ‘value’. ] e.g. --- In the example (jQueryMobileExample), it works great and renders as:

Re: ERQMAjaxUpdateContainer : lookup of unknown key: 'value'

2016-01-07 Thread Mark Gowdy
tml —— elementID : WOString { value = javaScriptElementID; } Very odd indeed. Mark > > > From: <mailto:webobjects-dev-bounces+chill=gevityinc@lists.apple.com>> on > behalf of Mark Gowdy mailto:m...@gowdy.co.uk>> > Date: Thursday, January 7, 2

Re: ERQMAjaxUpdateContainer : lookup of unknown key: 'value'

2016-01-07 Thread Mark Gowdy
; That is indeed a very odd bug. > > From: Mark Gowdy mailto:m...@gowdy.co.uk>> > Date: Thursday, January 7, 2016 at 10:59 AM > To: Chuck Hill mailto:ch...@gevityinc.com>> > Cc: "webobjects-dev@lists.apple.com <mailto:webobjects-dev@lists.apple.com>" >

Re: ERQMAjaxUpdateContainer : lookup of unknown key: 'value'

2016-01-07 Thread Mark Gowdy
at 19:21, Mark Gowdy wrote: > > When I tried a new vanilla “Hello World” wonder project, it worked fine: > > (I probably should have tried the first). > > I will start adding in my usual additional, and see when it breaks. > Will post a solution when I find it. > > Th

Ajax jQuery

2016-01-07 Thread Mark Gowdy
, slightly more beer than normal). Thanks in advance, Mark Gowdy ___ 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: https

Apache Adaptor on debian:jessie

2016-01-11 Thread Mark Gowdy
Trying to install WO + Apache Adaptor onto the latest Debian release (‘jessie' - on a Raspberry Pi 2) Following: https://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environment+on+Debian+or+Ubuntu

Re: [Solved] - Apache Adaptor on debian:jessie

2016-01-11 Thread Mark Gowdy
ks, Mark > On 11 Jan 2016, at 12:59, Mark Gowdy wrote: > > Trying to install WO + Apache Adaptor onto the latest Debian release > (‘jessie' - on a Raspberry Pi 2) > > Following: > https://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environme

Re: Apache 2.4 WebObjects adaptor for CentOS 6 i86_64

2016-02-18 Thread Mark Gowdy
: > https://lists.apple.com/mailman/options/webobjects-dev/mark%40gowdy.co.uk > > This email sent to m...@gowdy.co.uk _ Mark Gowdy Gowdy Associates Ltd M: +44 7808 400 941 Skype: markgowdy ___ Do not post admin requests to the list.

Wonder 7 - Release Date?

2016-02-26 Thread Mark Gowdy
Hi, I just wanted to confirm that Wonder 7 is production ready? If not, is there a planned (approx) release date. It’s not entirely clear from: https://github.com/wocommunity/wonder/wiki Although, I noticed, that when I download the src from: git cl

Re: WebObjects and Apache 2.4 on El Capitan

2016-03-14 Thread Mark Gowdy
Do not post admin requests to the list. They will be ignored. > Webobjects-dev mailing list (Webobjects-dev@lists.apple.com > <mailto:Webobjects-dev@lists.apple.com>) > Help/Unsubscribe/Update your Subscription: > https://lists.apple.com/mailman/options/webobjects-dev/mark%40gowdy.c

Re: Issue with Legacy frameworks

2016-04-22 Thread Mark Gowdy
ries? For reference, one of mine looks like this: Regards, Mark > > Regards, > Butchi Reddy. _ Mark Gowdy Gowdy Associates Ltd M: +44 7808 400 941 Skype: markgowdy ___ Do not post admin

Re: Closure of WOCommunity Association

2016-05-12 Thread Mark Gowdy
> On 12 May 2016, at 00:06, Ramsey Gurley wrote: > http://store.wocommunity.org/products/membership > <http://store.wocommunity.org/products/membership> Is there a way to donate an arbitrary amount to the community? _____ Mark Gowdy Gowdy Associates Ltd S

Re: Closure of WOCommunity Association

2016-05-12 Thread Mark Gowdy
;> <https://lists.apple.com/mailman/options/webobjects-dev/mailinglists%40kataputt.com> >> >> This email sent to mailingli...@kataputt.com >> <mailto:mailingli...@kataputt.com> > > ___ > Do not post admin requests to

Tweaking the model on start-up

2016-06-02 Thread Mark Gowdy
suggestions? Mark _____ Mark Gowdy Gowdy Associates Ltd Skype: markgowdy ___ 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 S

Re: Tweaking the model on start-up

2016-06-03 Thread Mark Gowdy
rs.eo.User' --- I guess I need to re-initialise or register something, but I am not sure what exactly. Thanks, Mark > > Chuck > > > From: on behalf > of Mark Gowdy > Date: Thursday, June 2, 2016 at 1:14 PM > To: WebObjects-Dev > Subject: Tweaking th

Re: Tweaking the model on start-up

2016-06-03 Thread Mark Gowdy
> On 3 Jun 2016, at 11:49, Mark Gowdy wrote: > >> >> On 2 Jun 2016, at 21:18, Chuck Hill > <mailto:ch...@gevityinc.com>> wrote: >> >> finishInitialization() in your application. > > I have attempted to tweak my ‘User’ entity at > ‘Appl

Maven + WOnder 7

2017-01-04 Thread Mark Gowdy
Hi, Finally moving everything over to Maven and Wonder 7 Can anyone confirm the Wonder Version that I should specify in the dependencies? Is it always: 7.0.0-SNAPSHOT Or are there updated versions. If so, how do I find the latest version number? Thanks, Mark _ Mark Gowdy

Re: Maven + WOnder 7

2017-01-04 Thread Mark Gowdy
yet. This looks like sorcery to me ! > > G Brown > gsbr...@umich.edu <mailto:gsbr...@umich.edu> > > > > > On Jan 4, 2017, at 7:34 AM, Mark Gowdy <mailto:m...@gowdy.co.uk>> wrote: > >> Hi, >> >> Finally moving everything over to M

Re: Maven + WOnder 7

2017-01-05 Thread Mark Gowdy
ote: > > Hi Mark, > > On 5 Jan 2017, at 3:34 am, Mark Gowdy <mailto:m...@gowdy.co.uk>> wrote: > >> My issue now is trying to get Ajax (from the Wonder Frameworks) into the mix. >> >> I have tried various entries in the pom file (such as) &

Re: Maven + WOnder 7

2017-01-06 Thread Mark Gowdy
e: /home/pi/WebObjects.properties at path: /home/pi Jan 06 14:00:10 N/A[N/A] DEBUG NSLog - WOMaxIOBufferSize=8196 ..etc.. Any thoughts on what is causing it to go mental? Mark > On 5 Jan 2017, at 09:20, Mark Gowdy wrote: > > Paul, > > I was going to show you the error. >

Re: WOWODC17?? a little OT

2017-01-13 Thread Mark Gowdy
> Do not post admin requests to the list. They will be ignored. > Webobjects-dev mailing list (Webobjects-dev@lists.apple.com > <mailto:Webobjects-dev@lists.apple.com>) > Help/Unsubscribe/Update your Subscription: > https://lists.apple.com/mailman/options

AWS ELB "Application Load Balancer"?

2017-06-06 Thread Mark Gowdy
Hi, has anyone looked at AWS - ELB (Elastic Load Balancer) "Application Load Balancer" as an alternative to Apache and the adaptor (in a similar way that mod_proxy config works)? Mark ___ Do not post admin requests to the list. They will be ignore

cryptoString prototype

2017-06-11 Thread Mark Gowdy
_ Mark Gowdy Gowdy Associates Ltd M: +44 7808 400 941 Skype: markgowdy ___ 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: https

Re: cryptoString prototype

2017-06-11 Thread Mark Gowdy
> On 11 Jun 2017, at 12:51, Mark Gowdy wrote: > > Hi, > > Are there any examples on how to use the prototype ‘cryptoString’ > I was hoping it was going to be as simple as binding it my forms, and it > would take care of everything else. But that doesn’t seem to be t

Re: Migrating to google cloud

2017-07-23 Thread Mark Gowdy
On 22 Jul 2017, at 02:38, Paul Hoadley wrote: >> nginx as a front-end for future load-balancing > > ELB. https://aws.amazon.com/elasticloadbalancing/ > Has anyone considered using the more advanced ELB setup as an alternative to apache and the adaptor? Similar to how mod_proxy works. Stati

Re: Date - time picker

2017-10-13 Thread Mark Gowdy
ny suggestions? >> >> Stavros > > ___ > Do not post admin requests to the list. They will be ignored. > Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) > Help/Unsubscribe/Updat

DirectConnect and Security

2019-08-09 Thread Mark Gowdy via Webobjects-dev
Hi. Is anyone aware of any security issues (or other considerations) with Direct Connect mode for a live deployment? This will be using the Amazon’s Application Load Balancer. And it _might_ mean that I can ditch Apache once and for all :-) Thanks, Mark __

Re: DirectConnect and Security

2019-08-12 Thread Mark Gowdy via Webobjects-dev
> On 12 Aug 2019, at 10:03, Matthew Ness via Webobjects-dev > wrote: > > > > On Sat, Aug 10, 2019, at 5:54 AM, Mark Gowdy via Webobjects-dev wrote: >> Hi. >> >> Is anyone aware of any security issues (or other considerations) with >> Direct Conne

Re: DirectConnect and Security

2019-08-13 Thread Mark Gowdy via Webobjects-dev
I do using apache reverse proxy: > > RequestHeader set x-webobjects-adaptor-version “1" It doesn’t look like I can set RequestHeaders within AWS - Application Load Balancer. :-( > > Regards, > > Samuel > > >> Le 12 août 2019 à 06:52, Mark Gowdy via Webo

Re: WOLips bugfixes and new features planning

2021-04-26 Thread Mark Gowdy via Webobjects-dev
> On 26 Apr 2021, at 13:58, Jesse Tayler via Webobjects-dev > wrote: > > I sure look forward to a refresh, not sure why but my current install often > renders wrong, or basically you have to assume a file is what you expect and > double-smack and then it draws the fresh name but mostly it is