Re: Core services design patern

2010-01-28 Thread Cheong Hee (Gmail)
Coincidentally, I have completed a small framework on this same request from customer. It is a pure java framework since it is aimed to be portable to any application e.g. Broadvision, WO. Quite similar that it creates new user password, authenticates user/password and returned error messages.

D2WS Viable?

2010-01-28 Thread Mat Johnson
Anjo or anyone else who knows; do you know if D2WS works fine as long as the user.d2wmodel is manually edited? On a related note, when I run it, no matter if I set... WOAllowRapidTurnaround = true it won't start with Rapid Turnaround or if WSAssistantEnabled = false the assistant still lanun

Re: Core services design patern

2010-01-28 Thread mschrag
I have a person entity that I use as a base class in all our apps. We auth against Kerberos (gssapi) and sync user info at login from ldap (open dir) into the person eo. Sent from my iPhone On Jan 28, 2010, at 5:43 PM, "Chuck Hill" wrote: On Jan 28, 2010, at 2:25 PM, Xavier Destombes w

Re: [Wonder-disc] How to escape from an Ajax Request without use of Direct Actions

2010-01-28 Thread Anjo Krank
What *I* do, btw, is overriding createSession()/checkoutSession() and return the same session for all the robots. Cheers, Anjo Am 28.01.2010 um 23:50 schrieb Amedeo Mantica: > Ok Chuck > > I was thinking you got confused by the string > "document.location.href='myDirectAction';" in my origi

Re: Session being created continuously...

2010-01-28 Thread Anjo Krank
A session isn't all that much. It mostly contains an EC, some pointers and the (limited) stack of pages. It's only when you have a bunch of EOs in the session EC that they get heavy. Try it: make an empty app, override Session() to include a counter, use "ab" with ab -c 5 -n 500 and check w

Re: [Wonder-disc] How to escape from an Ajax Request without use of Direct Actions

2010-01-28 Thread Amedeo Mantica
Ok Chuck I was thinking you got confused by the string "document.location.href='myDirectAction';" in my original post I'll do the checks you succested me! Thanks Amedeo On 28/gen/2010, at 22.05, Chuck Hill wrote: > > On Jan 28, 2010, at 12:32 PM, Amedeo Mantica wrote: > >> ? >> >> I have no

Re: Session being created continuously...

2010-01-28 Thread Amedeo Mantica
I agree with you, but is not easy to avoid Amedeo On 28/gen/2010, at 23.23, Miguel Arroz wrote: > Hi! > > BTW, just an advice: it may be a good idea to not create a session every > time someone opens your app front page. This can be a hole to a very simple > DoS. > > Yours > > Miguel Arroz

Re: Core services design patern

2010-01-28 Thread Chuck Hill
On Jan 28, 2010, at 2:25 PM, Xavier Destombes wrote: Hi list, This isn't a bug:) It's really sharing my point of view to see if I'm going in the right direction. I've got multiple web applications that share some common users. I was thinking about creating a core user application to provid

Core services design patern

2010-01-28 Thread Xavier Destombes
Hi list, This isn't a bug:) It's really sharing my point of view to see if I'm going in the right direction. I've got multiple web applications that share some common users. I was thinking about creating a core user application to provide the authentication service. Basically I'd like my "c

Re: Session being created continuously...

2010-01-28 Thread Miguel Arroz
Hi! BTW, just an advice: it may be a good idea to not create a session every time someone opens your app front page. This can be a hole to a very simple DoS. Yours Miguel Arroz On 2010/01/28, at 20:37, Amedeo Mantica wrote: > btw, thank you all for the support > > On 28/gen/2010, at 21.3

D2W - How do I get my edit relationship page the object?

2010-01-28 Thread James Cicenia
Hello - I will not give up on this D2W. Anyway.. I have a toMany property assigned: ERD2WEditToManyFaultList Then I have the edit button mapped to my component which subclasses ERDCustomComponent However, nothing is getting pushed into "object". I even put in object in my class directly. Ru

Re: Session being created continuously...

2010-01-28 Thread Amedeo Mantica
btw, thank you all for the support On 28/gen/2010, at 21.30, Amedeo Mantica wrote: > Comparing these timestamps with apache logs seems that ip addresses are of > google bots > > now i don't know why my woapp see the self server ip address. > > Amedeo > > > Jan 28 21:07:31 confindustria[2013]

Re: Session being created continuously...

2010-01-28 Thread Amedeo Mantica
Comparing these timestamps with apache logs seems that ip addresses are of google bots now i don't know why my woapp see the self server ip address. Amedeo Jan 28 21:07:31 confindustria[2013] DEBUG er.extensions.appserver.ERXSession - Remote IP Address = xx.xx.xx.xx Jan 28 21:07:43 confindus

Re: Session being created continuously...

2010-01-28 Thread David Avendasora
Spotlight? On Jan 28, 2010, at 2:42 PM, Amedeo Mantica wrote: > I think too, but xx.xx.xx.xx is my server ip address !! > > On 28/gen/2010, at 20.37, Chuck Hill wrote: > >>> Jan 28 19:47:12 confindustria[2013] INFO >>> er.extensions.appserver.ERXSession - Browser = robot >> >> I'd guess tha

Re: Session being created continuously...

2010-01-28 Thread Miguel Arroz
Hi! Check the apache log files to see exactly what URL is being accessed, and by what IP. The wonder debug info may be reporting a bogus IP for some reason. Yours Miguel Arroz On 2010/01/28, at 19:42, Amedeo Mantica wrote: > I think too, but xx.xx.xx.xx is my server ip address !! > > On

Re: Session being created continuously...

2010-01-28 Thread Pascal Robert
Check your Apache logs to see if the requests are made inside WO or by the Web server. I think too, but xx.xx.xx.xx is my server ip address !! On 28/gen/2010, at 20.37, Chuck Hill wrote: Jan 28 19:47:12 confindustria[2013] INFO er.extensions.appserver.ERXSession - Browser = robot I'd g

Re: Just in case question, Apple Push Notification Server

2010-01-28 Thread Amedeo Mantica
using that googled jar why not create a thing like this ( mine is just a fast implementation ) import javapns.back.PushNotificationManager; import javapns.back.SSLConnectionHelper; import javapns.data.Device; import javapns.data.PayLoad; public class ERXAPNSSender { public

Re: Session being created continuously...

2010-01-28 Thread Chuck Hill
It might be spoofing it. Log out all of the the request headers. What is the user agent? What does the Apache log say? Google robots.txt. There is one in ERExtensions/Resources Chuck On Jan 28, 2010, at 11:42 AM, Amedeo Mantica wrote: I think too, but xx.xx.xx.xx is my server ip addres

Re: Just in case question, Apple Push Notification Server

2010-01-28 Thread Mike Schrag
read: "yes" On Jan 28, 2010, at 2:40 PM, Anjo Krank wrote: > Hey cool, I needed that! > > Cheers, Anjo > > > > Am 28.01.2010 um 18:20 schrieb Amedeo Mantica: > >> Have we a Framework in wonder for using APNS ?? >> >> I found this Java library on google code >> >> http://code.google.com/p/j

Re: Session being created continuously...

2010-01-28 Thread Amedeo Mantica
I think too, but xx.xx.xx.xx is my server ip address !! On 28/gen/2010, at 20.37, Chuck Hill wrote: >> Jan 28 19:47:12 confindustria[2013] INFO er.extensions.appserver.ERXSession >> - Browser = robot > > I'd guess that something is indexing your site. > > Chuck > > > On Jan 28, 2010, at 11

Re: Session being created continuously...

2010-01-28 Thread Amedeo Mantica
note: this happens only in deployment ! On 28/gen/2010, at 20.35, Amedeo Mantica wrote: > Jan 28 19:47:03 confindustria[2013] INFO er.extensions.appserver.ERXSession > - Remote IP Address = xx.xx.xx.xx > Jan 28 19:47:12 confindustria[2013] INFO er.extensions.appserver.ERXSession > - New Ses

Re: Just in case question, Apple Push Notification Server

2010-01-28 Thread Anjo Krank
Hey cool, I needed that! Cheers, Anjo Am 28.01.2010 um 18:20 schrieb Amedeo Mantica: > Have we a Framework in wonder for using APNS ?? > > I found this Java library on google code > > http://code.google.com/p/javapns/ > > Can be use useful to add this in wonder ? > > Regards > Amedeo > ___

Re: Session being created continuously...

2010-01-28 Thread Chuck Hill
Jan 28 19:47:12 confindustria[2013] INFO er.extensions.appserver.ERXSession - Browser = robot I'd guess that something is indexing your site. Chuck On Jan 28, 2010, at 11:35 AM, Amedeo Mantica wrote: Jan 28 19:47:03 confindustria[2013] INFO er.extensions.appserver.ERXSession - Remote

Session being created continuously...

2010-01-28 Thread Amedeo Mantica
Jan 28 19:47:03 confindustria[2013] INFO er.extensions.appserver.ERXSession - Remote IP Address = xx.xx.xx.xx Jan 28 19:47:12 confindustria[2013] INFO er.extensions.appserver.ERXSession - New Session Jan 28 19:47:12 confindustria[2013] INFO er.extensions.appserver.ERXSession - Browser = ro

Just in case question, Apple Push Notification Server

2010-01-28 Thread Amedeo Mantica
Have we a Framework in wonder for using APNS ?? I found this Java library on google code http://code.google.com/p/javapns/ Can be use useful to add this in wonder ? Regards Amedeo ___ Do not post admin requests to the list. They will be ignored. Webo