Bruno Korcinski

Greenhorn
+ Follow
since Jun 03, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Bruno Korcinski

Hi guys,

I have set kookie.setMaxAge(3600)in servlet SetCookie;

I read back kookies in other servlet ShowCookie...kookie was there but I have expected some int value in seconds kookie.getMaxAge()but I got -1.
Is this value reset to -1 so I canot check how much time for kookie was sets before?

Thanks
Igor

****************************************************
ShowCookie
myCookie Name myCookie Value MaxAge
Persistent-Cookie-0 Cookie-Value-P0 null null -1
Persistent-Cookie-1 Cookie-Value-P1 null null -1
Persistent-Cookie-2 Cookie-Value-P2 null null -1



P.s
I took out special char...from html and ..ookie =Kookie for posting on this page

Kookie[] cookies = request.getKookies();
Kookie kookie;
for(int i=0; i<kookies.length; i++) {
kookie = kookies[i];
out.println("TR\n" +
" TD" + kookie.getName() + "\n" +
" <D" + kookie.getValue()+ "\n" +
" TD" + kookie.getDomain() + "\n" +
" <D" + kookie.getPath() + "\n" +
" <D" + kookie.getMaxAge());
}
out.println("TABLE/BODY/HTML");
20 years ago
Hi
I dont know if struts has some system to do it/i'm beginner/
just only came om my mind ..put to the session scope attribute let say
flow="" and in page "a" you will put "a" in page b you will put "ab"..and so onin page b you can check flow=="a" ??? if not forward to page "a"...
hmmm
I dont know if it's good solotion or not...
Igor
20 years ago
Hi guys,
I was just going mad with struts ....
I wanted to solve problem number 1 and I got number 2...3...4...and so on.
Anyway just only to inform you to be aware about problem what you can get
when you are trying to test applications like beginner .It's common separate the problem from app AAA and create new web application BBB and use the same "thesameForm" name and "thesameAction" in AAA and BBB(just only copy and adjust code in BBB let say from getFirstName(AAA) to getSecondName(BBB).
Then your container will deploy AAA and BBB .
if you will call from JSP in BBB getSecondName you will get exception
Struts: No getter method for property name of bean org.apache.struts.taglib.html.BEAN
because your container is using "thesameForm" from application AAA where is only getFirstName(AAA) !!!
so get rid of the problem is change the name of from in BBB !!!
some usfull link
https://coderanch.com/t/45795/Struts/Struts-No-getter-method-property
3 hours ....cost me /I forgot that application AAA was deployed as well some days ago....


Igor
20 years ago
I would be very happy if somebody have working simple(or whatever) example code in war??? which I can directly deploy in my jboss container?
I have done application but I'm getting error ...container seems doesnt no
about definitions and still trying find physical files/as.jsp.../
so I would like compare xml configuration files and solve it...
right now only definitions in jsp is working
here is my e-mail address
[email protected]
Thank you.
Igor
20 years ago
Hi,
I have just finished/2weeks reading/ Struts in Action and I was really disappointed...for sure is not book for beginner with struts...and I found title
misleading...it should be something like The best practises.of struts..code without context and working examples is not for people who just beginning.
I justy yesterday bought this one /like e-book/for 10USD!!!
it looks better after reading sample chapter....
http://www.objectsource.com/contact.html
try to check Mastering Struts...

Igor
20 years ago
Hi,
try check web.xml servlet mapping ....should be sopmething like
(check some example)
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*/*.do</url-pattern>
</servlet-mapping>
Igor
20 years ago
Hi guys,
for some reason I'm getting error when I tried to run tiles from tiles-defs.xml config file....
java.lang.IllegalArgumentException: Path .testcentreLayout does not start with a "/" character
I checked and correct everything and I cant move on with the tiles...
It seems that .testcentreLAyout definition wants the servlet solve as regular file...I have check web.xml for init definitions,servlet-config for plugin tiles...tiles-defs for correcrt syntax...and I'm lost....
the error is created when action is forwarded to .testcentreLayout
thanks for ideas...
Igor
********************tiles-defs***************************************
<tiles-definitions>
<definition name=".testcentreLayout" path="/pages_jsp/common/layouts/test_centre_layout.jsp">
<put name="header" value="/pages_jsp/common/header.jsp" />
<put name="footer" value="/pages_jsp/common/footer.jsp" />
</definition>
</tiles-definitions>
***********************error from console***********************************
19:29:01,985 INFO [Engine] action: Processing a GET for /Welcome
19:29:02,045 INFO [Engine] action: Setting locale 'en_CA'
19:29:02,045 INFO [Engine] action: Looking for ActionForm bean under attribute 'app.pokusForm'
19:29:02,045 INFO [Engine] action: Looking for Action instance for class app.pokus
19:29:02,055 INFO [Engine] action: Double checking for Action instance already there
19:29:02,055 INFO [Engine] action: Creating new Action instance
19:29:02,055 INFO [STDOUT] from pokus classsssssssssss
19:29:02,055 ERROR [Engine] StandardWrapperValve[action]: Servlet.service() for servlet action threw exception
java.lang.IllegalArgumentException: Path .testcentreLayout does not start with a "/" character
at org.apache.catalina.core.ApplicationContext.getRequestDispatcher(ApplicationContext.java:1179)
at org.apache.catalina.core.ApplicationContextFacade.getRequestDispatcher(ApplicationContextFacade.java
***************************web.xml*************************************
<!-- Standard Struts configuration -->
<servlet>
<servlet-name>action</servlet-name>
<!-- servlet-class>org.apache.struts.tiles.ActionComponentServlet</servlet-class -->
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>null</param-name>
<param-value>false</param-value>
</init-param>
<!-- makes request scope the default -->
<init-param>
<param-name>mapping</param-name>
<param-value>org.apache.struts.action.RequestActionMapping</param-value>
</init-param>
<!-- Tiles parameters -->
<init-param>
<param-name>definitions-config</param-name>
<param-value>/WEB-INF/tiles-defs.xml</param-value>
</init-param>
<init-param>
<param-name>definitions-debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>definitions-parser-details</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>definitions-parser-validate</param-name>
<param-value>true</param-value>
</init-param>
<!-- Startup priority -->
<load-on-startup>2</load-on-startup>
</servlet>

***********************struts-config.xml******************************
<action-mappings>
<action
path="/Welcome"
name="app.pokusForm"
type="app.pokus" >
<forward name="success" path=".testcentreLayout" />
</action>
......
<plug-in className="org.apache.struts.tiles.TilesPlugin">
<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
<set-property property="definitions-debug" value="1" />
<set-property property="definitions-parser-details" value="0" />
<set-property property="definitions-parser-validate" value="true" />
</plug-in>
20 years ago
Hi guys,
I'm running example from Orion app.server ,everything works fine /compiling,running,binding,authentication,/but I stoped on the line
home.create() where I got error
Exception in thread "main" java.lang. NoClassDefFoundError
org/omg /PortableServer/ POAOperations

. I spent two days with investigations(setuping classpath..and looking on net for similar errors..etc.
I set-up debug for Orion but there is not enough info for me to correct problem.can somebody help me? I put some prints to log so you can see
classpaths and running CartClient program print out....
----------------------------------------------------------
D:\orion2.0.2\orion\demo\ejb\cart>set classpath
CLASSPATH=E:\j2sdkee1.3\lib\j2ee.jar;D:\orion2.0.2\orion\orion.jar;
D:\orion2.0.2\orion\ejb.jar;D:\orion2.0.2\orion\jndi.jar;D:\orion2.0.2\orion\demo\ejb\cart;
D:\orion2.0.2\orion\demo\ejb\cart>cmd.exe /k java CartClient
************list of bind objects*************************************
java:comp, javax.naming.Context
MyProduct, ProductHome
MyCart, CartHome
com.evermind.ejb.EJBUser, com.evermind.ejb.EJBUserHome
************list of commands to get reference of MyCart object***********
1.Object homeObject = context.lookup(MyCart)...done.
2.CartHome home= (CartHome)PortableRemoteObject.narrow(homeObject, CartHome.class)...done.
Exception in thread "main" java.lang.NoClassDefFoundError: org/omg/PortableServer/POAOperations
at com.evermind._bp.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(.:1497)
at com.evermind._bp.invokeMethod(.:1420)
at com.evermind._oi.invoke(.:53)
at com.evermind._yp.invoke(.:22)
at __Proxy1.create(Unknown Source)
at CartClient.main(CartClient.java:61)
**********************************************************
code for CartClient
import java.rmi.RemoteException;
import javax.ejb.*;
import javax.naming.*;
import javax.rmi.PortableRemoteObject;
import java.util.*;
/**
* A simple client for accessing a Cart.
*/
public class CartClient
{
public static void main(String[] args)
{
try
{
Context context;

Hashtable env = new Hashtable();
env.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.ApplicationClientInitialContextFactory");
env.put(javax.naming.Context.PROVIDER_URL , "ormi://localhost/ejbsamples");
env.put(javax.naming.Context.SECURITY_PRINCIPAL , "admin");

context = new javax.naming.InitialContext(env);

System.out.println("\n************list of bind objects**********");

NamingEnumeration items = context.list("");
while(items.hasMoreElements()) {
NameClassPair item = (NameClassPair)items.next();
System.out.println(" " + item.getName() + ", " +item.getClassName());
}

System.out.println("\n**list of commands to get reference of MyCart object\n");
Object homeObject = context.lookup("MyCart");
System.out.println("1.Object homeObject = context.lookup(MyCart)...done");
CartHome home =(CartHome)PortableRemoteObject.narrow(homeObject, CartHome.class);
System.out.println("2.Object CartHome home= (CartHome)PortableRemoteObject.narrow(homeObject, CartHome.class)...done");
Cart cart = (Cart)PortableRemoteObject.narrow(home.create(), Cart.class);
System.out.println("3.Cart = home.create();...done");

// Add some items to the Cart.
cart.add("Milk");
cart.add("Apples");
cart.add("Pizza");

// Remove an item.
cart.remove("Apples");

// Remove an unexistant item from the Cart, will generate a NotInCartException.
cart.remove("Oranges");
}
catch(RemoteException e)
{
System.err.println("System/communication error: " + e.getMessage());
}
catch(NamingException e)
{
System.err.println("Communication error: " + e.getMessage());
}
catch(CreateException e)
{
System.err.println("Error creating cart: " + e.getMessage());
}
catch(NotInCartException e)
{
System.err.println("Item not found in cart: " + e.getMessage());
}
}
}
******************ejb-jar***************************************
<?xml version="1.0"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.2//EN" "http://java.sun.com/j2ee/dtds/ejb-jar_1_2.dtd">
<ejb-jar>
<display-name>A simple cart jar</display-name>
<description>A demo cart bean package.</description>
<enterprise-beans>
<session>
<display-name>Shopping Cart</display-name>
<description>A simple shopping cart.</description>
<ejb-name>MyCart</ejb-name>
<home>CartHome</home>
<remote>Cart</remote>
<ejb-class>CartEJB</ejb-class>
<session-type>Stateful</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
<assembly-descriptor>
</assembly-descriptor>
</ejb-jar>
thanks TOM
I was just thinking to download new version of tomcat...:-)
because I have seen that something is wrong with Jasper log..if it canot recognise rigth tags warnings...
Anyway thanks a lot....
Igor
21 years ago
JSP
Hi guys.
I'm using Tomcat Version 1.1,I have copied example from JAVA professional
server programming hello tag example I have set all things and it doesnt work...
i'm getting error 500 ...
see below Error 500 and Error log from Jasper.log
Do have somobody idea what can be wrong?
Thank you
Igor
doc base in server.xml
******************************************************************
<Context path="/hello" docBase="E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello"
defaultSessionTimeOut="30" isWARExpanded="true"
isWARValidated="false" isInvokerEnabled="true" isWorkDirPersistent="false" debug="0" reloadable="true" >
*******************************************************************
Directory of E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF
10/26/2003 03:04p <DIR> .
10/26/2003 03:04p <DIR> ..
10/27/2003 11:18a <DIR> classes
10/26/2003 04:09p <DIR> lib
10/26/2003 01:29p <DIR> src
10/27/2003 11:21a <DIR> tlds
09/23/2001 01:53p 542 web.xml
1 File(s) 542 bytes
6 Dir(s) 11,468,185,600 bytes free
********************************************************************
Directory of E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF\classes\tagext
10/26/2003 01:33p <DIR> .
10/26/2003 01:33p <DIR> ..
10/26/2003 01:33p 1,152 HelloTag.class
1 File(s) 1,152 bytes
2 Dir(s) 11,468,181,504 bytes free
*************************************************************************
tlds ....in hello.tld
<tag>
<name>hello</name>
<tag-class>tagext.HelloTag</tag-class>
<body-content>JSP</body-content>
<description>
Simple hello world example.
Takes no attributes, and simply generates HTML
</description>
</tag>
******************************************************************
web.xml
<!-- Tag Library Descriptor -->
<taglib>
<taglib-uri>/hello</taglib-uri>
<taglib-location>/WEB-INF/tlds/hello.tld</taglib-location>
</taglib>
************************************************************************

Error: 500
Location: /hello/hello.jsp
Internal Servlet Error:
org.apache.jasper.JasperException: Unable to load class null
at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:121)
at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:718)
at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:132)
at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:869)
at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:194)
at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java:822)
**************************************************************************
JAsper log
<JASPER_LOG> Mon Oct 27 11:23:12 EST 2003 Scratch dir for the JSP engine is: D:\jakarta-tomcat\work\localhost_8080%2Fadmin</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:23:12 EST 2003 IMPORTANT: Do not modify the generated servlets</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 JspEngine --> /hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 ServletPath: /hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 PathInfo: null</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 RealPath: E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 RequestURI: /hello/hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 QueryString: null</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 Request Params: </JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 Classpath according to the Servlet Engine is: E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF\classes</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element tlib-version in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element jsp-version in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element short-name in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element description in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element listener in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element tag-class in tag</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element body-content in tag</JASPER_LOG>



--------------------------------------------------------------------------------
Posts: 6 | Registered: Jun 2003 | IP: Logged
Hi guys.
I'm using Tomcat Version 1.1,I have copied example from JAVA professional
server programming hello tag example I have set all things and it doesnt work...
i'm getting error 500 ...
see below Error 500 and Error log from Jasper.log
Do have somobody idea what can be wrong?
Thank you
Igor
doc base in server.xml
******************************************************************
<Context path="/hello" docBase="E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello"
defaultSessionTimeOut="30" isWARExpanded="true"
isWARValidated="false" isInvokerEnabled="true" isWorkDirPersistent="false" debug="0" reloadable="true" >
*******************************************************************
Directory of E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF
10/26/2003 03:04p <DIR> .
10/26/2003 03:04p <DIR> ..
10/27/2003 11:18a <DIR> classes
10/26/2003 04:09p <DIR> lib
10/26/2003 01:29p <DIR> src
10/27/2003 11:21a <DIR> tlds
09/23/2001 01:53p 542 web.xml
1 File(s) 542 bytes
6 Dir(s) 11,468,185,600 bytes free
********************************************************************
Directory of E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF\classes\tagext
10/26/2003 01:33p <DIR> .
10/26/2003 01:33p <DIR> ..
10/26/2003 01:33p 1,152 HelloTag.class
1 File(s) 1,152 bytes
2 Dir(s) 11,468,181,504 bytes free
*************************************************************************
tlds ....in hello.tld
<tag>
<name>hello</name>
<tag-class>tagext.HelloTag</tag-class>
<body-content>JSP</body-content>
<description>
Simple hello world example.
Takes no attributes, and simply generates HTML
</description>
</tag>
******************************************************************
web.xml
<!-- Tag Library Descriptor -->
<taglib>
<taglib-uri>/hello</taglib-uri>
<taglib-location>/WEB-INF/tlds/hello.tld</taglib-location>
</taglib>
************************************************************************

Error: 500
Location: /hello/hello.jsp
Internal Servlet Error:
org.apache.jasper.JasperException: Unable to load class null
at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:121)
at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:718)
at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:132)
at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:869)
at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:194)
at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java:822)
**************************************************************************
JAsper log
<JASPER_LOG> Mon Oct 27 11:23:12 EST 2003 Scratch dir for the JSP engine is: D:\jakarta-tomcat\work\localhost_8080%2Fadmin</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:23:12 EST 2003 IMPORTANT: Do not modify the generated servlets</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 JspEngine --> /hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 ServletPath: /hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 PathInfo: null</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 RealPath: E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 RequestURI: /hello/hello.jsp</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 QueryString: null</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 Request Params: </JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:46 EST 2003 Classpath according to the Servlet Engine is: E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF\classes</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element tlib-version in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element jsp-version in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element short-name in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element description in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element listener in TLD</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element tag-class in tag</JASPER_LOG>
<JASPER_LOG> Mon Oct 27 11:25:48 EST 2003 Warning: Unknown element body-content in tag</JASPER_LOG>

21 years ago
JSP
Hi Guys,
I'm getting Error 500 Unable to load class null
I have checked all directories and it looks OK,and tag libraries...!...
Can sombody help me?
Thanks Igor.
Error: 500
Location: /tagext/hello.jsp
Internal Servlet Error:
org.apache.jasper.JasperException: Unable to load class null
at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:121)

from LOG:
Sun Oct 26 14:56:17 EST 2003 Scratch dir for the JSP engine is: D:\jakarta-tomcat\work\localhost_8080%2Ftagext</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:17 EST 2003 IMPORTANT: Do not modify the generated servlets</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 JspEngine --> /hello.jsp</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 ServletPath: /hello.jsp</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 PathInfo: null</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 RealPath: E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\hello.jsp</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 RequestURI: /tagext/hello.jsp</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 QueryString: null</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 Request Params: </JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:32 EST 2003 Classpath according to the Servlet Engine is: E:\_Igor\JAVA_book_code\PJ2EE_edition\PSP_J2EE\hello\WEB-INF\classes</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:33 EST 2003 Warning: Unknown element tlib-version in TLD</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:33 EST 2003 Warning: Unknown element jsp-version in TLD</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:33 EST 2003 Warning: Unknown element short-name in TLD</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:33 EST 2003 Warning: Unknown element description in TLD</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:33 EST 2003 Warning: Unknown element listener in TLD</JASPER_LOG>
<JASPER_LOG> Sun Oct 26 14:56:33 EST 2003 Warning: Unknown element tag-class in tag</JASPER_LOG>
:roll:
21 years ago
JSP
anyway Thanks a lot to all guys here
who are spending time with greenhorns
like I 'm :roll: really nice forum...
Igor.
21 years ago
Did you read book from Mario Puzo:Fools Die?
"You can stop to believe...to everything/politics,goverment,wife,friends...but you always can trust to STATISTIC...
in other words if you are doing 90% of
Dan Chisholm mock exams you will get 95% on real exam:-)
http://www.danchisholm.net/apr18/guide/
88% for 1.2 SCPJ thanks to :
Dan Chisholm mock exams:
not only correct answers BUT PERFECT explanations
without time consuming "gravy"
Eddie McNally [email protected]
JEXAM test realy nice test simulator
with mesuring of time and nice statistic on the end, I have answered in 59sec one question/ 2days beforereal exam /from JEXAM...I knew that on the real test it's take more time /questions are not so clear,and text are longer,as well exhibits code are longer.BUt you can test your strategy...dont spend too much time
for 1quest.You will need review your answers
so 1.5min is enough and you will get 30min extra
Before you will make choice for the mock exam think twice...it should be harder as real exam if you will start with easy one you will get mendacious feeling that you are better as you are....and what is the worst you have to do the other one ...what basically means double work and time =money special if you are not student
and you have to cover your expances yourself
I went through 557 questions once,+200 JEXAM +200 from java ranch mock exam forum ,always marked what didnt know ,these q. I did again ...again marked and did it again...
I did around 1500 questions/I went three times/
every 1h break 10-15 min...(You can not concentrate more like 50min) every day 7-8hours
60-70quest.=1500/60=25-30 days + take a look for some diffferent test as well MArcus Green ,...
so you can do it in 30 days for sure in 45 if you wanna be sure 90% with good feeling on the exam...
actually I lost points mor eless on IO.. what was
not in Dan Chisholm exam:-)
good luck...
Igor
21 years ago
thanks for idea...what I shoud preffer...
I hate not clear Qs....:-)