<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: jsp bean problem in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104959#M918673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Since you have created one portal component you'll need to create a single iview only. Try this and see if it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Apr 2007 03:42:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-12T03:42:11Z</dc:date>
    <item>
      <title>jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaq-p/2104954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a problem with two jsp pages.&lt;/P&gt;&lt;P&gt;Each jsp page is made using "Create new portal application object."&lt;/P&gt;&lt;P&gt;They use bean to communicate.&lt;/P&gt;&lt;P&gt;In the first one is selected something from a listbox, and the second one have to show what has been selected.&lt;/P&gt;&lt;P&gt;This doesn't work. I mean, i select something, but it is not shown in the other jsp page.&lt;/P&gt;&lt;P&gt;There are located in a Portal page.&lt;/P&gt;&lt;P&gt;If someone can help me with advice? why this doesn't work.&lt;/P&gt;&lt;P&gt;I will give more information if necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much in advance.&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 10:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaq-p/2104954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T10:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104955#M918669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Can you paste your code? Mayb its a prob with the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 11:35:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104955#M918669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T11:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104956#M918670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;here is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;listboxbean.java&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;package Exercise4;
import java.io.Serializable;
import com.sapportals.htmlb.DefaultListModel;
public class listboxbean implements Serializable {

	public DefaultListModel model;
	public String selected;
	
	public DefaultListModel getModel() {
		return model;
	}
	public void setModel(DefaultListModel model) {
		this.model = model;
	}
//	   constructor
	public listboxbean() {
		this.model = new DefaultListModel();
		model.addItem("SAP R/3", "SAP R/3");
		model.addItem("SAP Portal", "SAP Portal");
		model.addItem("SAP BW", "SAP BW");
		this.model.setSingleSelection(true);
	}
}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;listdisplay.java&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
package Exercise4;

import Exercise4.listboxbean;
import com.sapportals.htmlb.*;
import com.sapportals.htmlb.enum.*;
import com.sapportals.htmlb.event.*;
import com.sapportals.htmlb.page.*;
import com.sapportals.portal.htmlb.page.*;
import com.sapportals.portal.prt.component.*;

public class listdisplay extends PageProcessorComponent {

  public DynPage getPage(){
    return new listdisplayDynPage();
  }

  public static class listdisplayDynPage extends JSPDynPage{
  
    public listboxbean myBeanName = null;
	private final static String BEAN_KEY = "myBeanName";
	private final static int INITIAL_STATE = 0;
	private final static int DISPLAY_SELECT = 1;
	private int state = INITIAL_STATE;
  
    public void doInitialization(){
		state = INITIAL_STATE;
	  	IPortalComponentContext ctxt = ((IPortalComponentRequest)getRequest()).getComponentContext();
	  Object o = ctxt.getValue(BEAN_KEY);
	  if(o==null || !(o instanceof listboxbean)){
	  myBeanName = new listboxbean();
	  ctxt.putValue(BEAN_KEY,myBeanName);
	  } else {
	  myBeanName = (listboxbean) o;
	  }
    }

    public void doProcessAfterInput() throws PageException {
		IPortalComponentContext ctxt =
		((IPortalComponentRequest)getRequest()).getComponentContext();
		myBeanName = (listboxbean) ctxt.getValue(BEAN_KEY);
		/* get the listbox by name. */
		ListBox lb = (ListBox) this.getComponentByName("SAP_Products");
		/* retrieve the selected item*/
		myBeanName.selected = lb.getSingleSelection();

    }

    public void doProcessBeforeOutput() throws PageException {
		switch (state) {
		  case INITIAL_STATE:
		     this.setJspName("listdisplay.jsp");
		     break;
		  case DISPLAY_SELECT:
		     this.setJspName("displayselect.jsp");
		     break;
		}
    }
    
	public void Select (Event event) throws PageException {
	/* Handles event from the listbox */
	state = DISPLAY_SELECT;
	}
  }
}

&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;listdisplay.jsp&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;
&amp;lt;%@ taglib uri= "tagLib" prefix="hbj" %&amp;gt;
&amp;lt;jsp:useBean id="myBeanName" scope="application" class="Exercise4.listboxbean" /&amp;gt;
&amp;lt;hbj:content id="myContext" &amp;gt;
&amp;lt;hbj:page title="PageTitle"&amp;gt;
&amp;lt;hbj:form id="myFormId" &amp;gt;
	&amp;lt;hbj:textView
		id="Products"
		text="SAP's software product"
		design="EMPHASIZED"
		/&amp;gt;
	&amp;lt;br&amp;gt;
	&amp;lt;hbj:listBox
		id="SAP_Products"
		tooltip="Select any SAP Products"
		size="3"
		width="100"
		model="myBeanName.model"
		onSelect="Select" &amp;gt;
	&amp;lt;/hbj:listBox&amp;gt;
&amp;lt;/hbj:form&amp;gt;
&amp;lt;/hbj:page&amp;gt;
&amp;lt;/hbj:content&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the page that display the slected from the previous page.&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;displayselect.jsp&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;%@ taglib uri= "tagLib" prefix="hbj" %&amp;gt;
&amp;lt;jsp:useBean id="myBeanName" scope="application" class="Exercise4.listboxbean" /&amp;gt;
&amp;lt;hbj:content id="myContext" &amp;gt;
&amp;lt;hbj:page title="PageTitle"&amp;gt;
&amp;lt;hbj:form id="myFormId" &amp;gt;
&amp;lt;hbj:textView
	id="Products"
	text="You have selected:"
	design="EMPHASIZED"
	/&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;hbj:textView
	id="Products"
	text="&amp;lt;%=myBeanName.selected%&amp;gt;"
	design="EMPHASIZED"
	/&amp;gt;
&amp;lt;br&amp;gt;
&amp;lt;/hbj:form&amp;gt;
&amp;lt;/hbj:page&amp;gt;
&amp;lt;/hbj:content&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And there is no code located for this jsp file in his java file&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 11:42:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104956#M918670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T11:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104957#M918671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I think its because you havent set state=DISPLAY_SELECT as the last line in your doProcessAfterInput() method. Try and see if it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 11:56:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104957#M918671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T11:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104958#M918672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, i tested it, but it doesn't work still.&lt;/P&gt;&lt;P&gt;The two jsp are in different iViews, is it possible this to be the reason?&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 12:06:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104958#M918672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T12:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104959#M918673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Since you have created one portal component you'll need to create a single iview only. Try this and see if it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 03:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104959#M918673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T03:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104960#M918674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a little correction of my explaination above:&lt;/P&gt;&lt;P&gt;there are 2 portal components in one par file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 06:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104960#M918674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T06:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104961#M918675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     If you are using 2 iviews then you need to use portal eventing to pass data from one iview to another. Refer this link for more info:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/enterprise%20portal%20client.pdf" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/enterprise%20portal%20client.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why are you using 2 components? The easier way is to include both your jsp pages in a single portal component and create one iview out of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 06:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104961#M918675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T06:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104962#M918676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to do just the second as u say: the two jsp files to be in one component, but for some reason, i couldn't do it?&lt;/P&gt;&lt;P&gt;I will ber gratefull if u can tell me, what the step are , so the two jsp files to be in one component?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 06:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104962#M918676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T06:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104963#M918677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Make the scope of the bean as "request" and change your object creation of the bean in the java component accordingly. scope "application" will not work between two different components.Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Beevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 06:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104963#M918677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T06:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104964#M918678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you want only one component, then create a JSPDynPage application. You have option to include bean. A JSP file will be created in pagelet folder. To include another JSP file right click on pagelet folder and select New-&amp;gt;Other-&amp;gt;J2EE-&amp;gt;Web-&amp;gt;JSP File. If this doesnt work you can create a .jsp file in your system and copy paste it to your pagelet folder in NDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104964#M918678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104965#M918679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, strange, i tested this yesterday, but it didn't work for me. &lt;/P&gt;&lt;P&gt;I will try again, to see if it will work this time. Maybe i haven't done something correct yesterday. That is why i thought that i am not doing it correct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will test the two variants and will write back here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much both of you for help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:10:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104965#M918679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104966#M918680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still no result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104966#M918680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104967#M918681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Is this not working with one portal component also?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 08:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104967#M918681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T08:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104968#M918682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not working with one portal component too. &lt;/P&gt;&lt;P&gt;I tried it.&lt;/P&gt;&lt;P&gt;hm, maybe i am missing something, but i executed the description very exact.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 08:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104968#M918682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T08:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: jsp bean problem</title>
      <link>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104969#M918683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am new on jsp , as u probably has realised &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I found one pdf file here in the forum where very nice is described everything,&lt;/P&gt;&lt;P&gt;so maybe it will help me. I saw that there are some minor things, that weren't decribed in the other book, which i read before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 10:25:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/jsp-bean-problem/qaa-p/2104969#M918683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T10:25:27Z</dc:date>
    </item>
  </channel>
</rss>

