Which Docs to read first?

2011-11-21 Thread Kevin Spake
Thanks to everyone for all the help dealing with the folder bug. I'm now working my way through the screencasts, which are very helpful. However, I need to study the documentation so I can do more than 'monkey see, monkey do'. I've got the http://webobjects.mdimension.com/hudson/job/Wonder/java

Re: Problem loading Ajax frameworks

2011-11-21 Thread Stavros Panidis
Dear Jeremy, Many thanks, this problem solved. Actually in this server static pages are in /Library/Server/Web/Data/Sites/Mysite so I copied WebServerResources in WebObjects inside Mysite folder. Now it works. Best regards Stavros On 21 Νοε 2011, at 8:28 μ.μ., Jérémy DE ROYER [INGENCYS] wrot

Re: Delete rules on flattened relationships

2011-11-21 Thread Chuck Hill
On 2011-11-17, at 8:09 PM, David Avendasora wrote: > On Nov 18, 2011, at 2:10 AM, Chuck Hill wrote: > On 2011-11-16, at 8:24 PM, David Avendasora wrote: >>> On Nov 17, 2011, at 7:48 AM, Paul Hoadley wrote: >>> On 17/11/2011, at 10:08 AM, David Avendasora wrote: > On Nov 10, 2011, at 5:34 AM, Pa

Re: Using NTLM Authentication in WO apps

2011-11-21 Thread Pascal Robert
They could improve their dev documentation a bit… I'm trying to move the wiki and Jira users to crowd, that works, but I'm trying to integrate the wocommunity.org login with it and neither their REST or SOAP interfaces works for me (for SOAP, I'm getting "invalid credentials"). YMMY. > if you d

Re: Using NTLM Authentication in WO apps

2011-11-21 Thread Simon
if you don't mind commercial solutions you could try crow from atlassian - that seems capable of authenticating against world+dog simon On 21 November 2011 08:34, Karl wrote: > Hi, > > We have a client who wants to use NTLM authentication for our WOApp to > provide single sign on for their Wind

Re: Using NTLM Authentication in WO apps

2011-11-21 Thread Chuck Hill
On 2011-11-21, at 3:43 AM, Henrique Gomes wrote: > > On Nov 21, 2011, at 8:34 AM, Karl wrote: > >> Hi, >> >> We have a client who wants to use NTLM authentication for our WOApp to >> provide single sign on for their Windows users. Has anyone actually done >> this before? >> >> We are hosti

Re: ERSync?

2011-11-21 Thread Dan Beatty
Greetings Dave, Exactly. In the case of a Core Data document based app, that is where I was scratching my head. Then it hit me. There would need to be an intermediate Shoe-Box app. It would actually provide the ERSync connection and a sublcass of NSAtomicStore. The document based app is a se

Re: Problem loading Ajax frameworks

2011-11-21 Thread Jérémy DE ROYER [INGENCYS]
Hello, Did you copy the folders "WebServerResources" of yours app/frameworks in the folder WebObjects of your WebServer (located in /Library/WebServer/Documents on Mac OS X Server) ? Jérémy Le 21 nov. 2011 à 19:24, Stavros Panidis a écrit : > Hi, > > I have the following error in a deployed

Problem loading Ajax frameworks

2011-11-21 Thread Stavros Panidis
Hi, I have the following error in a deployed application (Lion server) GET http://www.mysite.com/WebObjects/myapp.woa/Frameworks/Ajax.framework/WebServerResources/prototype.js 404 (Not Found) GET http://www.mysite.com/WebObjects/myapp.woa/Frameworks/Ajax.framework/WebServerResources/won

Re: ERSync?

2011-11-21 Thread David Aspinall
Hi Daniel, I think depending on your shoe box this could work. Let me rephrase where I see this going. Option 1: if your shoebox document is a custom binary store, XML document or anything of that nature, then this will NOT work. Sync'ing something like that is really hard. You might find s

Re: Using NTLM Authentication in WO apps

2011-11-21 Thread Karl
Hi, That is a possibility. How about this - adding a request header with the remote user?: http://127.0.0.1:2/SOGo> ## adjust the following to your configuration RequestHeader set "x-webobjects-server-port" "443" RequestHeader set "x-webobjects-server-name" "myserver" RequestHea

Re: Using NTLM Authentication in WO apps

2011-11-21 Thread Henrique Gomes
On Nov 21, 2011, at 8:34 AM, Karl wrote: > Hi, > > We have a client who wants to use NTLM authentication for our WOApp to > provide single sign on for their Windows users. Has anyone actually done > this before? > > We are hosting the app on Mac OS X 10.7 using Java 6 and Apache 2.x. > > An

Re: AjaxFileUpload # 2

2011-11-21 Thread Jérémy DE ROYER [INGENCYS]
Yes it is, in your .wod FileUpload: WOFileUpload { filePath = nomFichier; streamToFilePath = cheminFichier; overwrite = true; uploadLabel = "Importer"; } In your .java public String getNomFichier() { return _nomFichier; }

AjaxFileUpload # 2

2011-11-21 Thread Gino Pacitti
Hi Again... Hope I am not being too demanding today... Is there a way to specify the filename of the uploaded file so that I can provide a custom name to the saved file? Gino ___ Do not post admin requests to the list. They will be ignored. Webob

AjaxFileUpload

2011-11-21 Thread Gino Pacitti
Hi All Is there a way to limit the mime-type of the uploaded file - limit it to say text format? Gino ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe

Using NTLM Authentication in WO apps

2011-11-21 Thread Karl
Hi, We have a client who wants to use NTLM authentication for our WOApp to provide single sign on for their Windows users. Has anyone actually done this before? We are hosting the app on Mac OS X 10.7 using Java 6 and Apache 2.x. Any information would be appreciated. Karl __