|
Home > Archive > WebSphere Portal Server > April 2004 > This portlet is unavailable but works fine in test environment
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
This portlet is unavailable but works fine in test environment
|
|
|
| I have developed a portlet that display a view from a domino database view using WebSphere Studio.
I have a test environment in WSAD and when i Run On Server the portlet they work fine, later i export the war file and install on my portal but when i deploy them on the page it displays
"This portlet is unavailable. If the problem persists, please contact the portal administrator. "
What could be the cause. Please help me.
Thanks
Preeti
| |
|
| How do you access Domino database when running from WebSphere Studio? And
how is your WebSphere and Domino configured? Local or remote?
LTH.
<preeti.hongal@sobis.com> wrote in message
news:1543133710.1082358668159.JavaMail.wasadmin@swg3ws006...
> I have developed a portlet that display a view from a domino database
view using WebSphere Studio.
> I have a test environment in WSAD and when i Run On Server the portlet
they work fine, later i export the war file and install on my portal but
when i deploy them on the page it displays
> "This portlet is unavailable. If the problem persists, please contact the
portal administrator. "
>
> What could be the cause. Please help me.
> Thanks
> Preeti
| |
| Dexthor 2004-04-19, 10:34 pm |
| After you install a portlet, you may want to make sure that the Portlet is
Activated and is placed on a page. You also have to set Security for the
portlet so that the portal-user can access it.
HTH
Dexthor -aka- Gopala 
<preeti.hongal@sobis.com> wrote in message
news:1543133710.1082358668159.JavaMail.wasadmin@swg3ws006...
> I have developed a portlet that display a view from a domino database
view using WebSphere Studio.
> I have a test environment in WSAD and when i Run On Server the portlet
they work fine, later i export the war file and install on my portal but
when i deploy them on the page it displays
> "This portlet is unavailable. If the problem persists, please contact the
portal administrator. "
>
> What could be the cause. Please help me.
> Thanks
> Preeti
| |
|
| Well i have my domino running on a different system, but in the same network area.
i use the tags to connect to domino.
firstly import the tld files (domtags, domutil and give the prefix domino and util resp)
and use this peice of code to connect to database
<domino:view viewname="Customers/By Customer Name" dbserver="CN=sobis52.sobis.com/O=sobis" dbname="apps/customer.nsf" user="wpsadmin" password="password" host="sobis52" >
and use a viewloop to get the data, the code is as follows
<domino:viewloop id="myviewloop">
<tr>
<td><font color="black" face="Helvetica">
<domino:viewitem col="1"/>
</font></td>
<td><font color="black" face="Helvetica"><domino:viewitem col="2"/></font></td>
<td><font color="black" face="Helvetica"><domino:viewitem col="3"/></font></td>
</tr>
</domino:viewloop>
it works fine in WSAD but when i deploy it it does not work
|
|
|
|
|