How do I put in front of the DWR servlet? :D Do I just set it on the web.xml file.
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: Thursday, October 05, 2006 10:23 PM To: [email protected] Subject: Re: DWR and ADF Faces AdfFacesContext (or RequestContext in trinidad) .getCurr...() will also return null, unless you put the filter in front of the DWR servlet, I guess... On 10/5/06, Anthony Yulo <[EMAIL PROTECTED]> wrote: > Well I know the launchDialog function gets called so I know that the DWR is > working and that I can all java code from the javascript. However, the > popup window is not showing and that the browser is issuing an alertbox with > message: "null". And, Simon said that as long as you don't use the > FacesContext's instance, it will be fine. But here I am using the > FacesContext. > > > Here is the actual code: > > public void launchDialog() { > > System.out.println("Launch Dialog called."); > FacesContext context = FacesContext.getCurrentInstance(); > > ViewHandler viewHandler = context.getApplication().getViewHandler(); > > UIViewRoot dialog = viewHandler.createView(context, > "/pages/iv/dialogPage.jsp"); > > > HashMap properties = new HashMap(); > properties.put("width", new Integer(250)); > properties.put("height", new Integer(150)); > > > > AdfFacesContext.getCurrentInstance().launchDialog(dialog,properties,null,tru > e,properties); > System.out.println("after launch" + componentId); > > > } > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > Matthias Wessendorf > Sent: Thursday, October 05, 2006 10:08 PM > To: [email protected] > Subject: Re: DWR and ADF Faces > > what was the result of that? > > or haven't you tried? > > > > On 10/5/06, Anthony Yulo <[EMAIL PROTECTED]> wrote: > > Actually what I want is to launch a dialog when the onfocus() event fires. > > > > I am getting the FacesContext Instance on the method that is called by the > > javascript so that will pose a problem? > > > > > > <af:inputText ... onfocus=FocusFunction() /> > > ... > > ... > > ... > > > > // > > function FocusFunction() { > > > > BackingBean.launchDialog(); > > } > > > > ... > > ... > > ... > > public void launchDialog() { > > FacesContext context = FacesContext.getCurrentInstance(); > > ... > > ... > > ... > > > > } > > > > -----Original Message----- > > From: Simon Lessard [mailto:[EMAIL PROTECTED] > > Sent: Thursday, October 05, 2006 9:41 PM > > To: [email protected] > > Subject: Re: DWR and ADF Faces > > > > I did not try it, but I don't see any reason why it would not work though, > > as long as you don't need a FacesContext instance in your DWR method. If > you > > do, it might get hellish. > > > > > > Regards, > > > > ~ Simon > > > > On 10/5/06, Anthony Yulo <[EMAIL PROTECTED]> wrote: > > > > > > Has anyone tried to integrate DWR with ADF Faces? > > > > > > *************The information transmitted is intended only for the person > > > or > > > entity to which it is addressed and may contain confidential and/or > > > privileged material. Any review,retransmission,dissemination or other > use > > > of, or taking of any action in reliance upon, this information by > persons > > > or > > > entities other than the intended recipient is prohibited. If you > received > > > this in error, please contact the sender and delete the material from > any > > > computer.********************* > > > > > > > > *************The information transmitted is intended only for the person > or > > entity to which it is addressed and may contain confidential and/or > > privileged material. Any review,retransmission,dissemination or other use > > of, or taking of any action in reliance upon, this information by persons > or > > entities other than the intended recipient is prohibited. If you received > > this in error, please contact the sender and delete the material from any > > computer.********************* > > > > > -- > Matthias Wessendorf > http://tinyurl.com/fmywh > > further stuff: > blog: http://jroller.com/page/mwessendorf > mail: mwessendorf-at-gmail-dot-com > *************The information transmitted is intended only for the person or > entity to which it is addressed and may contain confidential and/or > privileged material. Any review,retransmission,dissemination or other use > of, or taking of any action in reliance upon, this information by persons or > entities other than the intended recipient is prohibited. If you received > this in error, please contact the sender and delete the material from any > computer.********************* > -- Matthias Wessendorf http://tinyurl.com/fmywh further stuff: blog: http://jroller.com/page/mwessendorf mail: mwessendorf-at-gmail-dot-com *************The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review,retransmission,dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer.*********************
