[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-09 Thread gilboay
hi again -

This is not a markup problem. I've modified the code to generate valid HTML 
(enclosing all attributes with double quotes). The problem is with the actual 
value of the action attribute. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3936070#3936070

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3936070


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-06 Thread gilboay
hi,


I'd rather not used JSP at this point.

I'm trying this with a sample code from the book Building Portals with the 
Java Portlet API (Apress), by Jeff Linwood  Dave Minter.

Here is the full listing of the portlet class:




  | package com.portalbook.portlets;
  | 
  | import java.io.IOException;
  | import java.io.Writer;
  | 
  | import javax.portlet.ActionRequest;
  | import javax.portlet.ActionResponse;
  | import javax.portlet.GenericPortlet;
  | import javax.portlet.PortletException;
  | import javax.portlet.RenderRequest;
  | import javax.portlet.RenderResponse;
  | 
  | public class AdvancedPortlet extends GenericPortlet
  | {
  | 
  | protected void doEdit(
  | RenderRequest renderRequest,
  | RenderResponse renderResponse)
  | throws PortletException, IOException
  | {
  | renderResponse.setContentType(text/html);
  | 
  | Writer writer = renderResponse.getWriter();
  | 
  | //get the existing parameters to use as defaults.
  | String title = renderRequest.getParameter(title);
  | String contents = renderRequest.getParameter(contents);
  | 
  | if (title == null)
  | {
  | title = ;
  | }
  | 
  | if (contents == null)
  | {
  | contents = ;
  | }
  | 
  | writer.write(H1Portlet Settings/H1);
  | writer.write(FORM ACTION=);
  | writer.write(renderResponse.createActionURL().toString());
  | writer.write();
  | 
  | writer.write(
  | Title: INPUT TYPE=text NAME=title VALUE=' + title + ' 
SIZE=25);
  | writer.write(
  | Contents: INPUT TYPE=text NAME=contents VALUE= '
  | + contents
  | + ' SIZE=25);
  | writer.write(P);
  | writer.write(INPUT TYPE=submit);
  | writer.write(/FORM);
  | 
  | }
  | 
  | protected void doHelp(
  | RenderRequest renderRequest,
  | RenderResponse renderResponse)
  | throws PortletException, IOException
  | {
  | //return a helpful message
  | renderResponse.setContentType(text/html);
  | 
  | Writer writer = renderResponse.getWriter();
  | writer.write(
  | This portlet allows you to change its content and title.);
  | }
  | 
  | protected void doView(
  | RenderRequest renderRequest,
  | RenderResponse renderResponse)
  | throws PortletException, IOException
  | {
  | renderResponse.setContentType(text/html);
  | Writer writer = renderResponse.getWriter();
  | String contents = renderRequest.getParameter(contents);
  | if (contents != null)
  | {
  | writer.write(contents);
  | }
  | else
  | {
  | //return the default contents
  | writer.write(This is the default portlet contents.  To change 
);
  | writer.write(this message, edit the portlet's settings.);
  | }
  | 
  | writer.write(p);
  | writer.write(
  | IMG SRC=
  | + renderResponse.encodeURL(
  | renderRequest.getContextPath() + /images/picture.jpg)
  | + );
  | 
  | writer.write(p);
  | writer.write(
  | IMG SRC=http://www.greenninja.com/images/teton1-small.jpg);
  | }
  | 
  | protected String getTitle(RenderRequest renderRequest)
  | {
  | String title = renderRequest.getParameter(title);
  | if (title != null)
  | {
  | return title;
  | }
  | //else return a default title, if we don't have one set yet.
  | return Advanced Portlet;
  | }
  | 
  | public void processAction(
  | ActionRequest actionRequest,
  | ActionResponse actionResponse)
  | throws PortletException, IOException
  | {
  | //check for parameters
  | String title = actionRequest.getParameter(title);
  | if (title != null)
  | {
  | actionResponse.setRenderParameter(title, title);
  | }
  | 
  | String contents = actionRequest.getParameter(contents);
  | if (contents != null)
  | {
  | actionResponse.setRenderParameter(contents, contents);
  | }
  | }
  | 
  | }
  | 

The doEdit() section works only if I apply the work-around described in the 1st 
event. 

thanx :)




View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3935453#3935453

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3935453


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding 

[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-06 Thread mholzner
I'm not sure if this is a forum problem, or if you forgot the quotes around all 
the attribute values that you write. 

instead of: 

  | writer.write(FORM ACTION=);
  | writer.write(renderResponse.createActionURL().toString());
  | writer.write();
  | 


try 

  | writer.write(FORM ACTION=\);
  | writer.write(renderResponse.createActionURL().toString());
  | writer.write(\);
  | 

...apply the same change for the other attributes. 


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3935589#3935589

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3935589


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-05 Thread gilboay
Generated URL means the actual url returned by the 
RenderResponse.createActionURL() method.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3935063#3935063

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3935063


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-05 Thread [EMAIL PROTECTED]
Why not using the portlet tag portlet:actionURL/ ?

And at least please show us exactly the code you write, since it seems that 
there is a problem with it.

Help us help you

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3935065#3935065

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3935065


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-04 Thread gilboay
hi - 

i've tried both GET and POST - the same behaviour happens for both of them.

Any ideas?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3934656#3934656

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3934656


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-04 Thread [EMAIL PROTECTED]
What is Generated URL ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3934768#3934768

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3934768


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: RenderResponse.createActionUrl() does not work

2006-04-03 Thread mholzner
is your form using POST or GET ? 

try form method='POST' action='



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3934464#3934464

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3934464


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user