[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
[Home]
AW: GnuJSP, useBean and SSL
Your call to <jsp:getProperty >
is internally converted to a call to Method.invoke() on
the method getView_result(). (If the bean has no special
BeanInfo that defines another get method for this
property)
invoke() throws java.lang.reflect.InvocationTargetException
if the called method itself throws an Exception.
This looks to me as if this error happens outside of gnujsp.
If you have access to the bean try to modify the get method
in a way that you can see the original exception.
> -----Ursprüngliche Nachricht-----
> Von: vchartrain@amadeus.net [mailto:vchartrain@amadeus.net]
> Gesendet: Mittwoch, 30. Mai 2001 09:21
> An: gnujsp@gjt.org
> Betreff: GnuJSP, useBean and SSL
>
>
> Hi,
>
> Can we use the GNU JSP over an secure server (SSL) with an
> HTTPS protocol.
>
> To work with SSL I use SSLava and It works fine.
>
> I use JSP useBean
> <jsp:useBean id="OperaEngine" class="Bean.BeanProcess" />
> <jsp:setProperty name="OperaEngine" property="view_url" value=
> "/OperaCPs\Homepagev1.nsf/Special\Headlines?OpenView" />
> <jsp:setProperty name="OperaEngine" property="xsl_url" value=
> "/OperaCPs\Homepagev1.nsf/XSL+Templates/Headlines?OpenDocument" />
>
> The bean opens a secure session with the http Domino task,
> treats the data. but
> when I want to get back the result in the JSP page :
>
> <jsp:getProperty name="OperaEngine" property="view_result" />
>
> I have this kind of error :
> 28/05/2001 03:09:33 PM Addin: Agent printing: Error
> processing JSP page /index
> 28/05/2001 03:09:33 PM Addin: Agent printing: You might want
> to consider
> creating an error page.
> 28/05/2001 03:09:33 PM Addin: Agent printing: Exception:
> java.lang.reflect.InvocationTargetException
> 28/05/2001 03:09:33 PM Addin: Agent printing:
> java.lang.reflect.InvocationTargetException
> at
> org.gjt.jsp.HttpJspPageUtil.getProperty(HttpJspPageUtil.java:54)
> at
> jsp__opera__index_2ejsp._jspService(jsp__opera__index_2ejsp.java:94)
> at org.gjt.jsp.HttpJspPageImpl.service(Htt
>
> Do you have any Idea ?
>
> Thanks a lot
>
> Vianney
>
>
>