RE: Connection failure

2004-03-23 Thread Butt, Dudley
u must set the content length of the servlet response when writing/streaming back to 
the browser
example code from my stuffwere generating a report, converting it to byte[] and 
streaming back to client..

public void doPost(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {

ServletOutputStream toClient = null;
RMDocument report = template.generateReport(mbIncTransList);
byte reportBytes[] =null;

res.setContentType("application/pdf"); // where response is the 
HttpServletResponse
reportBytes = report.pdfBytes();

Integer sizeOfReport = new Integer(reportBytes.length);
res.setHeader("Content-Length", sizeOfReport.toString());
res.setContentLength(reportBytes.length);

toClient = res.getOutputStream();
toClient.write(reportBytes);
toClient.flush();

-Original Message-
From: Viswanathan, Cheenuvasan (MED, TCS)
[mailto:[EMAIL PROTECTED]
Sent: 23 March 2004 03:31 PM
To: Struts Users Mailing List
Subject: Connection failure


Hi,
 
Can anyone give me the solution or leads? This problem happens sometimes not
regularly. 
 
Mar 23, 2004 6:58:13 PM GMT+05:30>

[OT] Good reporting engine/tools

2003-11-25 Thread Butt, Dudley
Hi all, 

Has anyone used any good reporting stuff recently? Please let me know. We're currently 
evaluating to get rid of our Crystal reports, just need to know
some other options...THANX 


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT JDO Implementations]

2003-11-07 Thread Butt, Dudley
Hi all, 

I'm just wanting to find out from anyone who may have started using any JDO 
implementations? We really want to go JDO, but so far, we found only 2
fairly ok implementations - JDO Genie from www.hemtech.co.za and Exadel Studio.
Of course, we must not forget Hibernate as a big player, which also looks great, but 
is not yet JDO compliant, but then again, doesn't need to be as
yet. 

I really just looking at getting some input from anyone whose used an implementation 
on a project and found it to be greatI'd really like to hear
from you.

Many thanx


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: jpetstore example from ibatis uses struts

2003-10-16 Thread Butt, Dudley
ok, its working now, for some reason the script below wasnt being accepted by Mysql, 
so i just left it out..
I just used the oracle insert statements now ITS WORKING!!!

-Original Message-
From: Butt, Dudley 
Sent: Thursday, October 16, 2003 9:02 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


I get this error 

Can't create table '.\jpetstore\#sql-5ec_3a.frm' (errno: 150)

when trying to run the mysql script

ALTER TABLE item ADD FOREIGN KEY (supplierid)
 REFERENCES supplier(suppid)
 ON DELETE RESTRICT
 ON UPDATE RESTRICT;


-Original Message-
From: Butt, Dudley 
Sent: Thursday, October 16, 2003 8:42 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


I did notice i got an error on trying to run one of the mysql scripts...maybe my 
database is screwy..I am using mysql Ver 8.40 Distrib 4.0.12, for
Win95/Win98 on i32

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 7:41 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


What container/version are you using?




--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017
AIM:jmitchtx




> -Original Message-
> From: Butt, Dudley [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, October 16, 2003 1:29 PM
> To: '[EMAIL PROTECTED]'
> Subject: jpetstore example from ibatis uses struts
> 
> 
> Hi all,
> 
> Anyone managed to successfully get the JPetstore app working? 
> I managed to build ok, but I'm getting the following error 
> when trying to do anything on
> the index page
> 
> type Exception report
> message Internal Server Error
> description The server encountered an internal error 
> (Internal Server Error) that prevented it from fulfilling 
> this request.
> exception 
> javax.servlet.ServletException: Cannot find bean category in 
> scope null
>   at 
> org.apache.jasper.runtime.PageContextImpl.handlePageException(
> PageContextImpl.java:471)
>   at 
> org.apache.jsp.Category$jsp._jspService(Category$jsp.java:934)
>   at 
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.jasper.servlet.JspServlet$JspServletWrapper.service
> (JspServlet.java:201)
>   at 
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
> .java:381)
>   at 
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
> ionDispatcher.java:683)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
> cationDispatcher.java:431)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.forward(Applica
> tionDispatcher.java:355)
>   at 
> org.apache.struts.action.ActionServlet.processActionForward(Ac
> tionServlet.java:1759)
>   at 
> org.apache.struts.action.ActionServlet.process(ActionServlet.j
> ava:1596)
>   at 
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
> er(ApplicationFilterChain.java:247)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
> cationFilterChain.java:193)
>   at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
> rapperValve.java:243)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardC
> ontextValve.java:190)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.CertificatesValve.invoke(Certificat
> esValve.java:246)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContext.

RE: jpetstore example from ibatis uses struts

2003-10-16 Thread Butt, Dudley
I get this error 

Can't create table '.\jpetstore\#sql-5ec_3a.frm' (errno: 150)

when trying to run the mysql script

ALTER TABLE item ADD FOREIGN KEY (supplierid)
 REFERENCES supplier(suppid)
 ON DELETE RESTRICT
 ON UPDATE RESTRICT;


-Original Message-----
From: Butt, Dudley 
Sent: Thursday, October 16, 2003 8:42 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


I did notice i got an error on trying to run one of the mysql scripts...maybe my 
database is screwy..I am using mysql Ver 8.40 Distrib 4.0.12, for
Win95/Win98 on i32

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 7:41 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


What container/version are you using?




--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017
AIM:jmitchtx




> -----Original Message-
> From: Butt, Dudley [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, October 16, 2003 1:29 PM
> To: '[EMAIL PROTECTED]'
> Subject: jpetstore example from ibatis uses struts
> 
> 
> Hi all,
> 
> Anyone managed to successfully get the JPetstore app working? 
> I managed to build ok, but I'm getting the following error 
> when trying to do anything on
> the index page
> 
> type Exception report
> message Internal Server Error
> description The server encountered an internal error 
> (Internal Server Error) that prevented it from fulfilling 
> this request.
> exception 
> javax.servlet.ServletException: Cannot find bean category in 
> scope null
>   at 
> org.apache.jasper.runtime.PageContextImpl.handlePageException(
> PageContextImpl.java:471)
>   at 
> org.apache.jsp.Category$jsp._jspService(Category$jsp.java:934)
>   at 
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.jasper.servlet.JspServlet$JspServletWrapper.service
> (JspServlet.java:201)
>   at 
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
> .java:381)
>   at 
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
> ionDispatcher.java:683)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
> cationDispatcher.java:431)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.forward(Applica
> tionDispatcher.java:355)
>   at 
> org.apache.struts.action.ActionServlet.processActionForward(Ac
> tionServlet.java:1759)
>   at 
> org.apache.struts.action.ActionServlet.process(ActionServlet.j
> ava:1596)
>   at 
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
> er(ApplicationFilterChain.java:247)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
> cationFilterChain.java:193)
>   at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
> rapperValve.java:243)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardC
> ontextValve.java:190)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.CertificatesValve.invoke(Certificat
> esValve.java:246)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContext.invoke(StandardContex
> t.java:2347)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHost
> Valve.java:180)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi
> spatcherValve.java:170)
>   at 
> org.apac

RE: jpetstore example from ibatis uses struts

2003-10-16 Thread Butt, Dudley
I did notice i got an error on trying to run one of the mysql scripts...maybe my 
database is screwy..I am using mysql Ver 8.40 Distrib 4.0.12, for
Win95/Win98 on i32

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 7:41 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


What container/version are you using?




--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017
AIM:jmitchtx




> -Original Message-
> From: Butt, Dudley [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, October 16, 2003 1:29 PM
> To: '[EMAIL PROTECTED]'
> Subject: jpetstore example from ibatis uses struts
> 
> 
> Hi all,
> 
> Anyone managed to successfully get the JPetstore app working? 
> I managed to build ok, but I'm getting the following error 
> when trying to do anything on
> the index page
> 
> type Exception report
> message Internal Server Error
> description The server encountered an internal error 
> (Internal Server Error) that prevented it from fulfilling 
> this request.
> exception 
> javax.servlet.ServletException: Cannot find bean category in 
> scope null
>   at 
> org.apache.jasper.runtime.PageContextImpl.handlePageException(
> PageContextImpl.java:471)
>   at 
> org.apache.jsp.Category$jsp._jspService(Category$jsp.java:934)
>   at 
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.jasper.servlet.JspServlet$JspServletWrapper.service
> (JspServlet.java:201)
>   at 
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
> .java:381)
>   at 
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
> ionDispatcher.java:683)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
> cationDispatcher.java:431)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.forward(Applica
> tionDispatcher.java:355)
>   at 
> org.apache.struts.action.ActionServlet.processActionForward(Ac
> tionServlet.java:1759)
>   at 
> org.apache.struts.action.ActionServlet.process(ActionServlet.j
> ava:1596)
>   at 
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
> er(ApplicationFilterChain.java:247)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
> cationFilterChain.java:193)
>   at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
> rapperValve.java:243)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardC
> ontextValve.java:190)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.CertificatesValve.invoke(Certificat
> esValve.java:246)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContext.invoke(StandardContex
> t.java:2347)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHost
> Valve.java:180)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi
> spatcherValve.java:170)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport
> Valve.java:170)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValv
> e.java:468)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(Sta

RE: jpetstore example from ibatis uses struts

2003-10-16 Thread Butt, Dudley
I figured out that it must be throwing a null pointer because there is no dataI 
put in some sample data and now I get this

Using SIMPLE configuration. (properties/simple/dao.xml)
2003/10/16 07:59:06 com.ibatis.db.sqlmap.MappedStatement runQueryForList
SEVERE: Error executing 'getProductListByCategory' in 
'com/ibatis/jpetstore/persistence/sql/Product.xml'. Check the Para
meter Map (or inline parameters).  Check the 'value' property. Cause: 
java.lang.NullPointerException
java.lang.NullPointerException
at com.ibatis.db.sqlmap.MappedStatement.runQueryForList(Unknown Source)
at com.ibatis.db.sqlmap.MappedStatement.executeQueryForList(Unknown Source)
at com.ibatis.db.sqlmap.PaginatedDataList.getList(Unknown Source)
at com.ibatis.db.sqlmap.PaginatedDataList.pageTo(Unknown Source)
at com.ibatis.db.sqlmap.PaginatedDataList.(Unknown Source)
at com.ibatis.db.sqlmap.MappedStatement.executeQueryForPaginatedList(Unknown 
Source)
at com.ibatis.db.sqlmap.SqlMap.executeQueryForPaginatedList(Unknown Source)
at 
com.ibatis.jpetstore.persistence.dao.sqlmapdao.BaseSqlMapDao.executeQueryForPaginatedList(BaseSqlMapDao.java:
82)
at 
com.ibatis.jpetstore.persistence.dao.sqlmapdao.ProductSqlMapDao.getProductListByCategory(ProductSqlMapDao.jav
a:19)
at 
com.ibatis.jpetstore.domain.logic.PetStoreLogic.getProductListByCategory(PetStoreLogic.java:192)
at 
com.ibatis.jpetstore.presentation.action.NewAccountAction.doPerform(NewAccountAction.java:30)
at 
com.ibatis.jpetstore.presentation.action.BaseAction.perform(BaseAction.java:20)
at 
org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1787)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1586)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)

-Original Message-
From: Jeff Kyser [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 7:34 PM
To: Struts Users Mailing List
Subject: Re: jpetstore example from ibatis uses struts


its been a little while, but it worked fine for me.

-jeff

On Thursday, October 16, 2003, at 12:29  PM, Butt, Dudley wrote:

> Hi all,
>
> Anyone managed to successfully get the JPetstore app working? I  
> managed to build ok, but I'm getting the following error when trying  
> to do anything on
> the index page
>
> type Exception report
> message Internal Server Error
> description The server encountered an internal error (Internal Server  
> Error) that prevented it from fulfilling this request.
> exception
> javax.servlet.ServletException: Cannot find bean category in scope null
>   at  
> org.apache.jasper.runtime.PageContextImpl.handlePageException(PageConte 
> xtImpl.java:471)
>   at org.apache.jsp.Category$jsp._jspService(Category$jsp.java:934)
>   at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at  
> org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServl 
> et.java:201)
>   at  
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381 
> )
>   at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at  
> org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispat 
> cher.java:683)
>   at  
> org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDis 
> patcher.java:431)
>   at  
> org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispa 
> tcher.java:355)
>   at  
> org.apache.struts.action.ActionServlet.processActionForward(ActionServl 
> et.java:1759)
>   at  
> org.apache.struts.action.ActionServlet.process(ActionServlet.java:1596)
>   at  
> org.apache.struts.action.ActionServlet.doGet(Ac

RE: jpetstore example from ibatis uses struts

2003-10-16 Thread Butt, Dudley
Hi..Using Tomcat 406

-Original Message-
From: James Mitchell [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 7:41 PM
To: 'Struts Users Mailing List'
Subject: RE: jpetstore example from ibatis uses struts


What container/version are you using?




--
James Mitchell
Software Engineer / Struts Evangelist
http://www.struts-atlanta.org
678.910.8017
AIM:jmitchtx




> -Original Message-
> From: Butt, Dudley [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, October 16, 2003 1:29 PM
> To: '[EMAIL PROTECTED]'
> Subject: jpetstore example from ibatis uses struts
> 
> 
> Hi all,
> 
> Anyone managed to successfully get the JPetstore app working? 
> I managed to build ok, but I'm getting the following error 
> when trying to do anything on
> the index page
> 
> type Exception report
> message Internal Server Error
> description The server encountered an internal error 
> (Internal Server Error) that prevented it from fulfilling 
> this request.
> exception 
> javax.servlet.ServletException: Cannot find bean category in 
> scope null
>   at 
> org.apache.jasper.runtime.PageContextImpl.handlePageException(
> PageContextImpl.java:471)
>   at 
> org.apache.jsp.Category$jsp._jspService(Category$jsp.java:934)
>   at 
> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.jasper.servlet.JspServlet$JspServletWrapper.service
> (JspServlet.java:201)
>   at 
> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet
> .java:381)
>   at 
> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.invoke(Applicat
> ionDispatcher.java:683)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.doForward(Appli
> cationDispatcher.java:431)
>   at 
> org.apache.catalina.core.ApplicationDispatcher.forward(Applica
> tionDispatcher.java:355)
>   at 
> org.apache.struts.action.ActionServlet.processActionForward(Ac
> tionServlet.java:1759)
>   at 
> org.apache.struts.action.ActionServlet.process(ActionServlet.j
> ava:1596)
>   at 
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilt
> er(ApplicationFilterChain.java:247)
>   at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli
> cationFilterChain.java:193)
>   at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardW
> rapperValve.java:243)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardC
> ontextValve.java:190)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.CertificatesValve.invoke(Certificat
> esValve.java:246)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.java:472)
>   at 
> org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
>   at 
> org.apache.catalina.core.StandardContext.invoke(StandardContex
> t.java:2347)
>   at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHost
> Valve.java:180)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:566)
>   at 
> org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi
> spatcherValve.java:170)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport
> Valve.java:170)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValv
> e.java:468)
>   at 
> org.apache.catalina.core.StandardPipeline.invokeNext(StandardP
> ipeline.java:564)
>   at 
> org.apache.catalina.core.StandardPipeline.invoke(StandardPipel
> ine.ja

jpetstore example from ibatis uses struts

2003-10-16 Thread Butt, Dudley
Hi all,

Anyone managed to successfully get the JPetstore app working? I managed to build ok, 
but I'm getting the following error when trying to do anything on
the index page

type Exception report
message Internal Server Error
description The server encountered an internal error (Internal Server Error) that 
prevented it from fulfilling this request.
exception 
javax.servlet.ServletException: Cannot find bean category in scope null
at 
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
at org.apache.jsp.Category$jsp._jspService(Category$jsp.java:934)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:683)
at 
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:431)
at 
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:355)
at 
org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.java:1759)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1596)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at 
org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at 
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at 
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at 
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
at 
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
at java.lang.Thread.run(Thread.java:536)
root cause 
javax.servlet.jsp.JspException: Cannot find bean category in scope null
at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:493)
at org.apache.struts.taglib.bean.WriteTag.doStartTag(WriteTag.java:179)
at org.apache.jsp.Category$jsp._jspService(Category$jsp.java:703)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.jasper.servlet.JspServlet$JspServlet

RE: Struts security

2003-10-13 Thread Butt, Dudley
why not just use openldap? Its great, and it can be used as the basis for a single 
signon, I generally try to avoid doing user access and security in
a SQL db, as it then ties your app to that security model and kind of makes it 
unusable tfor anyone else.
I then have a ldap utility that looks up the user and his roles when you can then 
apply a check like hasKey or isSuperUser.

What u guys think?

-Original Message-
From: Stefan Trcko [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 9:57 AM
To: [EMAIL PROTECTED]
Cc: Struts Users Mailing List
Subject: Re: Struts security


Where do you store user rights (which actions user can perform).
I think of storing user rights and actions which he can perform in
the database and then in every action class perform SQL with username (from
session)
and current performed action. If SQL return that user can perform this
action
then forward to success page else to error page.

What do you think? Is this good solution?

Regards
Stefan


- Original Message - 
From: "muzammil shahbaz" <[EMAIL PROTECTED]>
To: "zzStruts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Thursday, October 09, 2003 9:43 AM
Subject: RE: Struts security


> This can simple be done by authorizing user in each action class. We
> have request & session attributes which may be helpful for checking the
> current state of user.
>
> Before doing any processing, first of all, process user authentication
> and if finds any restriction then forward the action to appropriate
> error page.
>
> Regards,
> MMS
>
> --
> From:  Stefan Trcko [SMTP:[EMAIL PROTECTED]
> Sent:  Thursday, October 09, 2003 12:29 PM
> To:  Struts Users Mailing List
> Subject:  Struts security
>
> Hello
>
> I want to implement security in my struts web portal, so
> that I can restrict users which actions they can
> perform.
>
> Has anybody already worked on this kind of security in
> Struts?
>
> Thanks in advice
> Stefan
>
>
>
>
>
> -
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
>




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT]Keel

2003-10-10 Thread Butt, Dudley
http://www.keelframework.org

-Original Message-
From: Butt, Dudley 
Sent: Friday, October 10, 2003 4:32 PM
To: '[EMAIL PROTECTED]'
Subject: [OT]Keel


Hi anyone tried Keel  out yet?
Reason why I'm asking here is because this mailing list is so active...


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT]Keel

2003-10-10 Thread Butt, Dudley
Hi anyone tried Keel  out yet?
Reason why I'm asking here is because this mailing list is so active...


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT] deploying a war Problem on weblogic 6,1

2003-10-07 Thread Butt, Dudley
you need to set the permissions in the config.xml or weblogic.xml to enable the use of 
reflection...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 07, 2003 10:24 AM
Subject: [OT] deploying a war Problem on weblogic 6,1
Importance: High
Sensitivity: Confidential


Hi All,
While deploying a war file on weblogic 6.1, I am getting 
java.lang.reflect.UndeclaredThrowableException error can any one help me solving this
problem.
Regards
Tarun


DISCLAIMER:
This message contains privileged and confidential information and is intended only for 
the individual named.If you are not the intended recipient you
should not disseminate,distribute,store,print, copy or deliver this message.Please 
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.E-mail transmission cannot 
be guaranteed to be secure or error-free as information could be
intercepted,corrupted,lost,destroyed,arrive late or incomplete or contain viruses.The 
sender therefore does not accept liability for any errors or
omissions in the contents of this message which arise as a result of e-mail 
transmission. If verification is required please request a hard-copy
version.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT] RE: J2EE IDE

2003-08-28 Thread Butt, Dudley
hahahahaa

-Original Message-
From: Mark Galbreath [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 27, 2003 11:21 PM
To: 'Struts Users Mailing List'
Subject: [OT] RE: J2EE IDE


That's what I told my sister about boys

Mark

-Original Message-
From: Brandon Goodin [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 27, 2003 4:36 PM
To: Struts Users Mailing List
Subject: RE: J2EE IDE


THEY ALL SUCK! Just pick the one that causes YOU the least pain.

Brandon Goodin
Avid Eclipse user (1yr)
Post Netbeans User (2yr)
IDEA (1mo)

> -Original Message-
> From: Gandle, Panchasheel [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 27, 2003 8:37 AM
> To: 'Struts Users Mailing List'
> Subject: RE: J2EE IDE
>
>
> +1 for IDEA, its simply great tool, everything in it leads to
> productivity,
>
> Panchasheel
>
>
> -Original Message-
> From: Vijay Pawar [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 27, 2003 10:24 AM
> To: Struts Users Mailing List; [EMAIL PROTECTED]
> Subject: RE: J2EE IDE
>
>
> Dear All,
>
> I am using WSAD 5.0 . Suppose i wish to use the latest nighty build of 
> struts, then can that be configured in WSAD 5.0 and how ? I assume 
> that WSAD 5.0 comes with bundled struts release 1.0 !
>
> Thanks in advance,
> Vijay
>
> "José_Fortunato_H._Tomás" <[EMAIL PROTECTED]> wrote: You should 
> consider also Idea. The capability of code refactor is *big* *major* 
> help for productivity. http://www.intellij.com/idea/
>
> Which can integrat the same tool for struts editing like Eclipse.
>
> > WSAD is the Good one.
> >
> > Thanks
> > Nazeer
> >
> >
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, August 27, 2003 2:46 AM
> > To: [EMAIL PROTECTED]
> > Subject: J2EE IDE
> >
> > Can someone please suggest me a free J2EE IDE suitable for 
> > development of webapps using STRUTS. I know of some IDE's like the 
> > FORTE, ECLIPSE, NETBEANS. However I wanted to ckeckout if anyone has 
> > already evaluated any
> > of these since I am not sure which one is easy to use and has reasonably
> > good features as well.
> >
> > Regards
> > Sreekant G
> >
> >
> >
> > 
> > - To unsubscribe, e-mail: [EMAIL PROTECTED] 
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> --
> José Tomás @ Chico
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> Win TVs, Bikes, DVD players and more!Click onYahoo! India Promos
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: J2EE IDE

2003-08-28 Thread Butt, Dudley
the only gel i tried is ...well, ok, come one...u know, the nice slidy stuff?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 28, 2003 7:51 AM
To: Struts Users Mailing List
Subject: RE: J2EE IDE



Anyone tried Gel from GeExperts.

thanks
-raj

VDS India
+91 44 2254-0281 ext. 1059
[EMAIL PROTECTED]



   

  "Mike Duffy" 

  <[EMAIL PROTECTED]To:   "Struts Users Mailing List" 
<[EMAIL PROTECTED]>  
  oo.com>  cc: 

   Subject:  RE: J2EE IDE  

  28/08/2003 10:14 

  AM   

  Please respond to

  "Struts Users

  Mailing List"

   

   





I agree with the points David makes below.

Eclipse Rocks.  And with the plugin framework, it is getting better all the
time.

I run Eclipse on Windows XP at work and on Linux 9.0 at home.  No problems.

Mike

--- "Hibbs, David" <[EMAIL PROTECTED]> wrote:
> a) Boot time :  I haven't met a Java-based IDE that didn't have high boot
> time.  That said, the core IDE boots pretty fast on my home machine (1GHz
> P4) -- much faster than NetBeans. Caveat--I quit using NetBeans because
a)
> it was outclassed by Eclipse and b) I felt that the releases were
becoming
> less stable.
>
> b) Refresh time : huh?  I have no problems.  Perhaps you need to disable
the
> auto-compile feature?  From the menu bar, select
> Window->Preferences->Workbench, uncheck "Perform build automatically on
> resource modification," and hit OK.
>
> c) Crashes  I've been using eclipse both at home and at work for
almost
> a year and a half, and not once has it crashed.  (Yes, this means I
started
> using it even with the 1.0 release!)  So I don't know what your problem
is
> here if you are complaining about crashes--perhaps an incompatible JRE or
OS
> (or just don't have enough memory) ? Another possibility is a bad plugin;
> have you installed any 3rd party plugins?
>
> d) No, you're not right on these points. ;^)
>
> David Hibbs
> Staff Programmer / Analyst
> American National Insurance Company
>
> > -Original Message-
> > But eclipse has many problems at runtime.
> >
> > Boot up time is too high.
> > Refresh time too high.
> > Crashes very often.
> >
> > Am i  right on these points ?
> >
> > thanks
> > -raj
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [

RE: J2EE IDE

2003-08-28 Thread Butt, Dudley
i agree, handsdown, handsup or in star wars, it rocks!

-Original Message-
From: David Thielen [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 28, 2003 3:01 AM
To: Struts Users Mailing List
Subject: Re: J2EE IDE


personally I think IntelliJ is wonderful


- Original Message - 
From: "David Graham" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Wednesday, August 27, 2003 6:04 PM
Subject: RE: J2EE IDE


> --- Paul Jackson <[EMAIL PROTECTED]> wrote:
> > Sounds like you need to upgrade your machine. I have a standard PC (2
> > years old) and eclipse works fine on this...
>
> Either that or you need to upgrade your Eclipse and/or JRE version.
> Startup time is under 20 seconds, I don't know what "Refresh time" is, and
> I've only experienced crashes in rare use cases under Linux.  I've found
> Eclipse to be much more useable than VAJ, NetBeans/Forte, and JBuilder.
>
> David
>
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> >
> > Sent: Wednesday, 27 August 2003 7:30 PM
> > To: Struts Users Mailing List
> > Subject: Re: J2EE IDE
> >
> >
> > OfCourse, I have tested it. Then only i can make these comments.
> > I was just expressing my views on Eclipse for other people who were
> > looking
> > for a IDE.
> > I have my own preferences for a IDE.
> >
> > thanks
> > -raj
> >
> >
> >
> >
> >
> >
> >   "Kwok Peng Tuck"
> >
> >   <[EMAIL PROTECTED]To:   "Struts Users
> > Mailing List" <[EMAIL PROTECTED]>
> >   net> cc:
> >
> >Subject:  Re: J2EE IDE
> >
> >   27/08/2003 02:46
> >
> >   PM
> >
> >   Please respond to
> >
> >   "Struts Users
> >
> >   Mailing List"
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > Have you actually tested it ?
> > If  you haven't then try it and see for yourself.
> > Or you could try the other java based ide's around if you are not happy
> > with Eclipse.
> >
> > [EMAIL PROTECTED] wrote:
> >
> > >But eclipse has many problems at runtime.
> > >
> > >Boot up time is too high.
> > >Refresh time too high.
> > >Crashes very often.
> > >
> > >Am i  right on these points ?
> > >
> > >thanks
> > >-raj
> > >
> > >
> > >
> > >
> >
> > >  "Firat TIRYAKI"
> >
> > >  <[EMAIL PROTECTED]To:   "Struts Users
> > Mailing List" <[EMAIL PROTECTED]>
> > >  m.tr>cc:
> >
> > >   Subject:  Re: J2EE IDE
> >
> > >  27/08/2003 01:33
> >
> > >  PM
> >
> > >  Please respond to
> >
> > >  "Struts Users
> >
> > >  Mailing List"
> >
> > >
> >
> > >
> >
> > >
> > >
> > >
> > >
> > >you should use eclipse, it doesn't use swing for GUI's, and it's faster
> > >than
> > >the others.
> > >
> > >F.
> > >
> > >- Original Message -
> > >From: <[EMAIL PROTECTED]>
> > >To: <[EMAIL PROTECTED]>
> > >Sent: Wednesday, August 27, 2003 9:46 AM
> > >Subject: J2EE IDE
> > >
> > >
> > >
> > >
> > >>Can someone please suggest me a free J2EE IDE suitable for development
> > of
> > >>webapps using STRUTS. I know of some IDE's like the FORTE, ECLIPSE,
> > >>NETBEANS. However I wanted to ckeckout if anyone has already evaluated
> > >>
> > >>
> > >any
> > >
> > >
> > >>of these since I am not sure which one is easy to use and has
> > reasonably
> > >>good features as well.
> > >>
> > >>Regards
> > >>Sreekant G
> > >>
> > >>
> > >>
> > >>
> > >>
> > >
> > >
> > >
> > 
> > 
> >
> > >
> > >
> > >
> > >
> > >
> > >
> > >>-
> > >>To unsubscribe, e-mail: [EMAIL PROTECTED]
> > >>For additional commands, e-mail: [EMAIL PROTECTED]
> > >>
> > >>
> > >
> > >
> > >-
> > >To unsubscribe, e-mail: [EMAIL PROTECTED]
> > >For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >-
> > >To unsubscribe, e-mail: [EMAIL PROTECTED]
> > >For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> > >
> > >
> > >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> >
> >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
>
> __
> Do you Yahoo!?
> Yahoo! SiteBuilder - Free, eas

RE: J2EE IDE

2003-08-27 Thread Butt, Dudley
I use IntelliJ, really fast to get up and running, I believe eclipse is really good, 
but heard many complain that its hard to get up and running. But
then again, there's a lot of support for it nowadays. Just pick one or two and try 
them out, one of them must be IntelliJ

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 27, 2003 8:46 AM
To: [EMAIL PROTECTED]
Subject: J2EE IDE


Can someone please suggest me a free J2EE IDE suitable for development of
webapps using STRUTS. I know of some IDE's like the FORTE, ECLIPSE,
NETBEANS. However I wanted to ckeckout if anyone has already evaluated any
of these since I am not sure which one is easy to use and has reasonably
good features as well.

Regards
Sreekant G




NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT] A date utility? anyone, pls help

2003-08-26 Thread Butt, Dudley
thanx guys for all the input, i'm sure I'll come up with something, with all the emails

-Original Message-
From: Hue Holleran [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 26, 2003 11:36 AM
To: Struts Users Mailing List
Subject: RE: [OT] A date utility? anyone, pls help


I read a lot about "BigDate" - but it's shareware @ $10, I think. Never had
to use it myself but here's the link:

http://mindprod.com/jgloss/bigdate.html#BIGDATE

There is also a very good tutorial on dates (see "Computer Dating" link),
here:

http://java.sun.com/people/linden/intro.html

Specifically for what you're asking "... the number of years between 2
dates?" (are you sure you mean years?) try this:

java.lang.Math.abs(
myDate1.getTime()-myDate2.getTime() )/1000/3600/24/365.25

i.e. get abs difference in millisecs and convert to years - but your version
of a year may vary (i.e. you may consider 365 to be a year)!

BTW to setup date values for testing try the following code:

java.text.DateFormat df = new java.text.SimpleDateFormat( ".MMM.dd" );
try {
java.util.Date myDate1 = df.parse("1971.OCT.02");
java.util.Date myDate2 = df.parse("1987.JAN.09");
System.out.println( java.lang.Math.abs(
myDate1.getTime()-myDate2.getTime() )/1000/3600/24/365.25 );
} catch (Exception ex) {
System.out.println( ex.toString() );
}

Hue.

> -Original Message-
> From: Butt, Dudley [mailto:[EMAIL PROTECTED]
> Sent: 26 August 2003 09:19
> To: 'Struts Users Mailing List'
> Subject: [OT] A date utility? anyone, pls help
>
>
> I know you guys are all excellent java programmers, so I do
> believe someone has what I'm looking for? I really please need a
> date utility class that
> accurately calculates the number of years between 2 dates? Would
> appreciate it very much thx!!
>
>
> NOTICE:
>
> This message contains privileged and confidential information intended
> only for the person or entity to which it is addressed.
> Any review, retransmission, dissemination, copy or other use of, or
> taking of any action in reliance upon this information by persons or
> entities other than the intended recipient, is prohibited.
>
> If you received this message in error, please notify the sender
> immediately by e-mail, facsimile or telephone and thereafter delete the
> material from any computer.
>
> The New Africa Capital Group, its subsidiaries or associates do not
> accept liability for any personal views expressed in this message.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---
> Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.512 / Virus Database: 309 - Release Date: 19/08/2003
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.512 / Virus Database: 309 - Release Date: 19/08/2003


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT] A date utility? anyone, pls help

2003-08-26 Thread Butt, Dudley
yes, that would be great, a fraction , yes please
(B
(B-Original Message-
(BFrom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
(BSent: Tuesday, August 26, 2003 11:18 AM
(BTo: Struts Users Mailing List
(BCc: [EMAIL PROTECTED]
(BSubject: Re: [OT] A date utility? anyone, pls help
(B
(B
(B
(BMy favorite "Core Java" book proposes the "corejava.Day" class (see
(Bhttp://www.horstmann.com/corejava.html) which has
(B int daysBetween(Day b)
(Bmethod. Tt calcurates the number of days between 2 dates, rather than
(B"years". Do you want the number of years in fraction ( like 1.43234 years)?
(B
(B
(B
(B
(B   
(B    
(B    "Butt, Dudley" 
(B
(B<[EMAIL PROTECTED][EMAIL PROTECTED](J:   "'Struts Users 
(BMailing List'" <[EMAIL PROTECTED]> 
(Btan.co.za>  cc:
(B
(B$B7oL>(J:   [OT] A date utility? anyone, 
(Bpls help  
(B2003/08/26 17:19   
(B
(B"Struts Users  
(B
(BMailing List" $B$X(J 
(B  
(B$BJV?.$7$F$/[EMAIL PROTECTED](J   
(B
(B   
(B
(B   
(B
(B
(B
(B
(B
(BI know you guys are all excellent java programmers, so I do believe someone
(Bhas what I'm looking for? I really please need a date utility class that
(Baccurately calculates the number of years between 2 dates? Would appreciate
(Bit very much thx!!
(B
(B
(BNOTICE:
(B
(BThis message contains privileged and confidential information intended
(Bonly for the person or entity to which it is addressed.
(BAny review, retransmission, dissemination, copy or other use of, or
(Btaking of any action in reliance upon this information by persons or
(Bentities other than the intended recipient, is prohibited.
(B
(BIf you received this message in error, please notify the sender
(Bimmediately by e-mail, facsimile or telephone and thereafter delete the
(Bmaterial from any computer.
(B
(BThe New Africa Capital Group, its subsidiaries or associates do not
(Baccept liability for any personal views expressed in this message.
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]
(B
(B
(B
(B
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]
(B
(B
(BNOTICE: 
(B
(BThis message contains privileged and confidential information intended 
(Bonly for the person or entity to which it is addressed. 
(BAny review, retransmission, dissemination, copy or other use of, or 
(Btaking of any action in reliance upon this information by persons or 
(Bentities other than the intended recipient, is prohibited. 
(B
(BIf you received this message in error, please notify the sender 
(Bimmediately by e-mail, facsimile or telephone and thereafter delete the 
(Bmaterial from any computer. 
(B
(BThe New Africa Capital Group, its subsidiaries or associates do not 
(Baccept liability for any personal views expressed in this message.
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] A date utility? anyone, pls help

2003-08-26 Thread Butt, Dudley
those libraries dont have the utility I need, only basic date/time functions...I need 
to accurately calculate the number of years between 2 dates. I
used to do it on the DB, but that will be too slow in this situation because I will 
need to do it for about 3000 records..

-Original Message-
From: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 26, 2003 11:00 AM
To: Struts Users Mailing List
Subject: Re: [OT] A date utility? anyone, pls help


Try java.util.Calendar or java.util.GregorianCalendar.

Butt, Dudley wrote:

>I know you guys are all excellent java programmers, so I do believe someone has what 
>I'm looking for? I really please need a date utility class that
>accurately calculates the number of years between 2 dates? Would appreciate it very 
>much thx!!
>
>
>NOTICE: 
>
>This message contains privileged and confidential information intended 
>only for the person or entity to which it is addressed. 
>Any review, retransmission, dissemination, copy or other use of, or 
>taking of any action in reliance upon this information by persons or 
>entities other than the intended recipient, is prohibited. 
>
>If you received this message in error, please notify the sender 
>immediately by e-mail, facsimile or telephone and thereafter delete the 
>material from any computer. 
>
>The New Africa Capital Group, its subsidiaries or associates do not 
>accept liability for any personal views expressed in this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>  
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT] A date utility? anyone, pls help

2003-08-26 Thread Butt, Dudley
I know you guys are all excellent java programmers, so I do believe someone has what 
I'm looking for? I really please need a date utility class that
accurately calculates the number of years between 2 dates? Would appreciate it very 
much thx!!


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



JSTL and struts tag libraries

2003-08-14 Thread Butt, Dudley
Hi,

Is it true to say that one should use JSTL instead of the struts taglibs?
If so, is JSTL a seperate topic to be learned and therefore will not be covered in any 
of the struts books for sale?

thx





NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Direct ValueObject creation rather than ActionForm.

2003-08-04 Thread Butt, Dudley
which probelm u wouldn't have if u used webwork

-Original Message-
From: Viral_Thakkar [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 9:31 AM
To: [EMAIL PROTECTED]
Subject: RE: Direct ValueObject creation rather than ActionForm.


Yes, I agree that it is not good programming to replace the ActionForm
with ValueObject.

But let me know your view about having both ActionForm and ValueObject
and use some kind of mapping to get the ValueObject instance from the
ActionForm instance.

Example is available at
http://www.mycgiserver.com/~andrej/technical/struts/struts.jsp

Here usage of 
vo = FormToVOMapper.map(form, new ExampleVO()); 
is shown.

Please suggest me whether this is good to use such mapping to get the
valueobject instance and also do they support all possible datatypes and
different mappings.

Thanks.

-Original Message-
From: Kalra, Ashwani [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 01, 2003 10:57 AM
To: 'Struts Users Mailing List'
Subject: RE: Direct ValueObject creation rather than ActionForm.

One drawback. ActionForm classes import classes from http packages.
which
binds it to the particular layer. 

Cheers
Ashwani Kalra
http://www.geocities.com/ashwani_kalra/


> -Original Message-
> From: Andrew Hill [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 01, 2003 10:47 AM
> To: Struts Users Mailing List
> Subject: RE: Direct ValueObject creation rather than ActionForm.
> 
> 
> This is quite a common idea that many people new to struts 
> have. There are
> quite a few reasons why your ActionForm and your value object 
> are different
> objects. (Indeed the very reason ActionForm is implemented as 
> a class rather
> than an interface is specifically to discourage people from 
> using their
> ActionForm as a value object.) If you search the list 
> archives you will see
> numerous threads discussing the reasons why this is in fact a 
> very bad idea
> indeed.
>   -Original Message-
>   From: Viral_Thakkar [mailto:[EMAIL PROTECTED]
>   Sent: Friday, 1 August 2003 13:05
>   To: [EMAIL PROTECTED]
>   Subject: Direct ValueObject creation rather than ActionForm.
> 
> 
>   I have a idea here. Why we require ActionForm class if we can have
> ValueObject and that we can pass to the service layer.
> 
> 
> 
>   Can we create the instance of ValueObject class only rather than
> ActionForm instance from the request data?
> 
> 
> 
>   Thanks
> 
> 
> 
> 
> 
> 


This message contains information that may be privileged or confidential
and
is the property of the Cap Gemini Ernst & Young Group. It is intended
only
for the person to whom it is addressed. If you are not the intended
recipient, you are not authorised to read, print, retain, copy,
disseminate,
distribute, or use this message or any part thereof. If you receive this
message in error, please notify the sender immediately and delete all
copies
of this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



anyone used struts and hibernate 2gether?

2003-07-28 Thread Butt, Dudley
a quick q


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



how long has struts been going now?

2003-07-24 Thread Butt, Dudley
just a quick q


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: what the webwork guys say about struts

2003-07-17 Thread Butt, Dudley
why dont the struts guys and the WW guys join up? 

-Original Message-
From: Mike Jasnowski [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 8:22 PM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: RE: what the webwork guys say about struts


I thought the use of Interceptors was interesting iN WW2, given the somewhat
recent discussions about a composable request processor on struts-dev.

-Original Message-
From: David Graham [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 9:44 AM
To: Struts Users Mailing List
Subject: RE: what the webwork guys say about struts


--- Andrew Hill <[EMAIL PROTECTED]> wrote:
> 
> WebWorks pros include being a smaller, simpler framework, not having to
> build ActionForm beans,

DynaActionForms anyone?

> making it very simple to test your Actions,
> having
> multiple well-supported view technologies, simpler views with less JSP
> tags
> and a more powerful expression language,

Who cares?  IMO, JSTL has the best Java expression language and
implementing anything further in a non-standard framework is a waste of
time.

> not having to make your Actions
> thread-safe,

You can override one method in the RequestProcessor to create a new Action
on each request so they don't have to be thread safe.

> not having your Actions tied to the web

Struts 2 is likely to be uncoupled from the Servlet API to allow use in
Portals but we'll see...

The only advantage I see in WebWork is that Actions and ActionForms are
one idea/class but JSF allows this as well.

I don't know enough about WebWork to critique it but it's disappointing
when people get the facts wrong about Struts when comparing the two.

David

> and not being part
> of
> Jakarta J. WebWork2 also adds many new features such as Interceptors,
> packages, IoC, etc. WebWorks cons include being a smaller project with
> fewer books and less tool support, having less standards support for
> specs
> like JSTL and JSF, and not being part of Jakarta
> 
>
> Fair enough to a point, but Id definately disagree about struts not
> providing good support for using other views. There is nothing in struts
> that specifically makes it hard to support other view technologies - the
> taglibs that come with struts are purely a convienience for the majority
> who
> use JSP (theres a good argument to make them a seperate download imho) -
> but
> theres nothing anything to stop you using other things. Many people use
> velocity with struts - its a good fit from what I hear, and you could
> use
> pretty much any other technology too so long as that technology doesnt
> depend on some proprietary framework to be used with it (which would
> affect
> WW also). All the struts config objects are accessible from the servlet
> context and there are even toolkits for technologies such as velocity...
> I
> personally use my own homebrew rendering technology (which basically is
> just
> leveraging DOM and xhtml) and found that struts didnt get in the way and
> indeed meshed nicely in many cases.
>
> What I saw in the good 2 minutes or so I looked at WW just now that
> _did_
> get me excited was the idea of it making it much easier to seperate
> classes
> from dependancies on the servlet api thus becoming easier to test. One
> can
> always test struts with things like StrutsTestCase or cactus doing mock
> object or in container tests, but learning how is a daunting task, which
> Id
> imagine has put off many people from trying. (I know Ive never bothered
> to
> work out how to do it - but hey, my codes so good it doesnt need testing
> right? ;->) If it could easily test my stuff in good old Junit using
> j2se...
> that would be sweet mate...
>
>
> 
> The mapping from HTTP Request to Actions is really cohesive. You have a
> form with fields, you have an action with corresponding fields.
> 
>
> Yes - theres a lot to be said for the idea of merging the actionform and
> the
> action and instantiating a new instance for each request (or reusing one
> from the session). Ive never fully grokked why struts was so keen to use
> the
> singleton pattern for actions. Tis true that servlets do this - and
> actions
> resemble servlets (after all they are in the end just the bit of the
> ActionServlet that does the specific work!) , but I and others have oft
> debated the merits of relaxing the threadsafety rule on actions and
> instantiating new ones each time - and merging the actionform into the
> same
> object so that you have a sort of 'component' perhaps follows on from
> this?
>
> hmmm... Can anyone think of some good reasons not to make Action an
> interface?
>
>
> -Original Message-
> From: Butt, Dudley [mailto:[EMAIL PRO

trying to get hold of Dan Cancros framework comparison spreadsheet : )

2003-07-16 Thread Butt, Dudley
Hi, if anyone knows Dan, pls let him now someone  is looking for that spreadsheet he 
put 2 gether on the framework comparisons..thx


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Struts and JSF?

2003-07-16 Thread Butt, Dudley
>From what I've read in the spec so far, it seems like JSF is a kind of facelift for 
>Struts?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



which version of tomcat is best to use with Struts 1.1?

2003-07-16 Thread Butt, Dudley
just a quick q


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



what the webwork guys say about struts

2003-07-16 Thread Butt, Dudley
BEOW IS AS IS, PASTED FROM WW forum:
=

Check out the docs on the Wiki (http://wiki.opensymphony.com),
especially

http://wiki.opensymphony.com/space/Migrating+from+Struts+1.0+to+WebWork+
2 - migrating from Struts to WebWork2

And the article I just posted:

http://wiki.opensymphony.com/space/Writeup+of+Mike%27s+Talk+at+TSS+on+We
bWork2 which is a general overview of WebWork2.

For your specific questions, WebWork is better than Struts because it is
a simpler framework, with less ties to the web and in genral less
useless contracts for your code to implement. Being less coupled makes
things easier to test, which is always better. With WebWork2, we've
added some very powerful features. Check the docs I listed for the
overview. 

For the view, you can use Velocity as well as JSP, FreeMarker,
JasperReports, and XML/XSLT. Velocity and JSP are the most common, and
the best supported, but all are first class citizens in WW, unlike Stuts
where anything but JSP is difficult. 




I use Webwork in my 'Enterprise Java' clases, largely because it is 
incredibly simple. One reason for this is it let's us deal JSP as a 
single presentation tier, which reduces the learning curve (and you can 
always move to something else at a later stage).

The mapping from HTTP Request to Actions is really cohesive. You have a 
form with fields, you have an action with corresponding fields. Data 
gets populated and the Action is executed.

It really is that simple to get started.

Testing is really nice, you can run all your Actions through JUnit 
without being tied to the Web Container. This speeds development time as 
you don't need to package and deploy every time you make a change and it 
makes debugging much simpler.

And WW2 rocks.

===





NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



struts generation tools for actionhandler, action forms and jsp?

2003-07-16 Thread Butt, Dudley
Hi all,

Just wondering what everyone was using wrt generation tools..thx


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: struts books

2003-07-15 Thread Butt, Dudley
thx to everyone for their input once again, sorry to have to duplicate the efforts, 
but it was fun anyways...

-Original Message-
From: Tin Pham [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 15, 2003 2:28 AM
To: [EMAIL PROTECTED]
Subject: Re: struts books


I recommend getting 2 books,
Manning Struts In Action and O'Reilly Programming Jakarta Struts.



"Butt, Dudley" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi all,
>
> Can anyone recommend which of the struts books as listed I should get. I
cannot purchase all. Which of these books are still current with the version
> of struts currently out there?
>
> Pls recommend! thx
>
>
>
>
> NOTICE:
>
> This message contains privileged and confidential information intended
> only for the person or entity to which it is addressed.
> Any review, retransmission, dissemination, copy or other use of, or
> taking of any action in reliance upon this information by persons or
> entities other than the intended recipient, is prohibited.
>
> If you received this message in error, please notify the sender
> immediately by e-mail, facsimile or telephone and thereafter delete the
> material from any computer.
>
> The New Africa Capital Group, its subsidiaries or associates do not
> accept liability for any personal views expressed in this message.




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: struts books

2003-07-14 Thread Butt, Dudley
i know but i was lazy.. : ) and i also just wanted to make sure and confirm they were 
the ones everyone still likes : ) 


-Original Message-
From: Rick Reumann [mailto:[EMAIL PROTECTED]
Sent: Monday, July 14, 2003 3:24 PM
To: Struts Users Mailing List
Subject: Re: struts books


On Mon, 2003-07-14 at 05:05, Butt, Dudley wrote:
 
> Can anyone recommend which of the struts books as listed I should get.  

Programming Jakarta Struts
by Chuck Cavaness  
http://www.amazon.com/exec/obidos/tg/detail/-/0596003285/ref=pd_sim_books_4/104-4079535-6570309?v=glance&s=books

(Also, not to be a jerk, but a quick searh in the archives "books on struts" would 
have given you lots of results).

-- 
Rick

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: struts plugin for IDEA

2003-07-14 Thread Butt, Dudley
brilliante'

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED]
Sent: Monday, July 14, 2003 2:49 PM
To: 'Struts Users Mailing List'
Subject: RE: struts plugin for IDEA


Struts Console is the only Struts plugin that I know of for IDEA.  It's
pretty good as it allows you to work with Struts, Tiles and Validator
config files.  Struts Console also allows you to edit JSP Tag Library
files (*.tld) now.

http://www.jamesholmes.com/struts/

-James

-Original Message-
From: Butt, Dudley [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 14, 2003 4:51 AM
To: '[EMAIL PROTECTED]'
Subject: struts plugin for IDEA

Hi,

Has anyone used it, is there one? How good?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: debate over Struts vs other frameworks

2003-07-14 Thread Butt, Dudley
excellent thx very much

-Original Message-
From: Andrew Hill [mailto:[EMAIL PROTECTED]
Sent: Monday, July 14, 2003 12:30 PM
To: Struts Users Mailing List
Subject: RE: debate over Struts vs other frameworks


Velocity is a view rendering technology, not a web framework. It works quite
well with struts and there is an excellent introduction to its use in a
struts app in Teds book (struts in action) - well worth a look. (One of the
advantages of struts is that you can use pretty much any (web) view
technology you want with it - not just limited to JSP)

The others I dont know much about, though I could suggest two more to add to
your list while your there: Barracuda (a 'competitor' of struts - with a
highly developed event model and DOM based rendering via XMLC) ,and
Expresso (a framework which inludes struts - and a lot more!)

You may also want to read up on JSF - a spec which though not ready yet will
be the 'next big thing' as far as writing web based applications goes.
Struts already has a JSF integration library thinghy - and it is no
coincidence that the spec lead for JSF is the same guy who gave us struts
(ie: Craig Mc Clanahan - aka "papa struts"). :-)

-----Original Message-
From: Butt, Dudley [mailto:[EMAIL PROTECTED]
Sent: Monday, 14 July 2003 17:42
To: 'Struts Users Mailing List'
Subject: RE: debate over Struts vs other frameworks


: ) i like what i hear so far..
umm, well, there's quite a few...Velocity/Webwork/Turbine/Tapestry/Maverick

-Original Message-
From: Andrew Hill [mailto:[EMAIL PROTECTED]
Sent: Monday, July 14, 2003 11:03 AM
To: Struts Users Mailing List
Subject: RE: debate over Struts vs other frameworks


Struts good
Others bad
...hehe ;->

Really it all depends on what you want to get out of your framework...

Perhaps if you name some frameworks you are comparing it with then people in
the list with experience in both can give some specific strength and
weakness comparisons.

-Original Message-
From: Butt, Dudley [mailto:[EMAIL PROTECTED]
Sent: Monday, 14 July 2003 16:34
To: '[EMAIL PROTECTED]'
Subject: debate over Struts vs other frameworks


Hi all,
I know this must be a topic of discussion that has raged on for a long time,
but i'm throwing it out there again, what u say people?


NOTICE:

This message contains privileged and confidential information intended
only for the person or entity to which it is addressed.
Any review, retransmission, dissemination, copy or other use of, or
taking of any action in reliance upon this information by persons or
entities other than the intended recipient, is prohibited.

If you received this message in error, please notify the sender
immediately by e-mail, facsimile or telephone and thereafter delete the
material from any computer.

The New Africa Capital Group, its subsidiaries or associates do not
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE:

This message contains privileged and confidential information intended
only for the person or entity to which it is addressed.
Any review, retransmission, dissemination, copy or other use of, or
taking of any action in reliance upon this information by persons or
entities other than the intended recipient, is prohibited.

If you received this message in error, please notify the sender
immediately by e-mail, facsimile or telephone and thereafter delete the
material from any computer.

The New Africa Capital Group, its subsidiaries or associates do not
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubsc

struts plugin for IDEA

2003-07-14 Thread Butt, Dudley
Hi,

Has anyone used it, is there one? How good?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: debate over Struts vs other frameworks

2003-07-14 Thread Butt, Dudley
: ) i like what i hear so far..
umm, well, there's quite a few...Velocity/Webwork/Turbine/Tapestry/Maverick

-Original Message-
From: Andrew Hill [mailto:[EMAIL PROTECTED]
Sent: Monday, July 14, 2003 11:03 AM
To: Struts Users Mailing List
Subject: RE: debate over Struts vs other frameworks


Struts good
Others bad
...hehe ;->

Really it all depends on what you want to get out of your framework...

Perhaps if you name some frameworks you are comparing it with then people in
the list with experience in both can give some specific strength and
weakness comparisons.

-Original Message-
From: Butt, Dudley [mailto:[EMAIL PROTECTED]
Sent: Monday, 14 July 2003 16:34
To: '[EMAIL PROTECTED]'
Subject: debate over Struts vs other frameworks


Hi all,
I know this must be a topic of discussion that has raged on for a long time,
but i'm throwing it out there again, what u say people?


NOTICE:

This message contains privileged and confidential information intended
only for the person or entity to which it is addressed.
Any review, retransmission, dissemination, copy or other use of, or
taking of any action in reliance upon this information by persons or
entities other than the intended recipient, is prohibited.

If you received this message in error, please notify the sender
immediately by e-mail, facsimile or telephone and thereafter delete the
material from any computer.

The New Africa Capital Group, its subsidiaries or associates do not
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



struts books

2003-07-14 Thread Butt, Dudley
Hi all, 

Can anyone recommend which of the struts books as listed I should get. I cannot 
purchase all. Which of these books are still current with the version
of struts currently out there?

Pls recommend! thx




NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



debate over Struts vs other frameworks

2003-07-14 Thread Butt, Dudley
Hi all, 
I know this must be a topic of discussion that has raged on for a long time, but i'm 
throwing it out there again, what u say people?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



which way..struts using tiles?

2003-07-14 Thread Butt, Dudley
Hi all, 

Just need some info on what you guys are using out there, and what strategy is working 
the best for you.
Lets say i want to use Struts and I need to get a nice webapp out there. The system is 
potentially large so I'm going to need some sort of
build/generation tools. What are you guys using for your presentation look and feel. 
How are you getting your pages generated? Any ideas will be
greatly appreciated!!
Many thx


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



struts books

2003-03-28 Thread Butt, Dudley
Hi,

Just wanted to ask how current the struts books are, as listed on the struts jakarta 
page, with respect to the latest version of struts???

thanx


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT] reusing existing user accounts in a webapp that are stored i n a DB table....

2003-03-28 Thread Butt, Dudley
does anyone know of, or able to point me in the right direction with regards to single 
sign on...is there any software or articles that anyone knows
of?
thx

-Original Message-
From: Butt, Dudley 
Sent: Friday, March 28, 2003 12:00 PM
To: '[EMAIL PROTECTED]'
Subject: [OT] reusing existing user accounts in a webapp that are stored
i n a DB table


Hi all,

I have another brain teaser for you all...
Currently we have DB tables that hold user account info. What we want to do is use 
Weblogic Security, but we dont want to recapture all the users into
weblogic. Is there a way we can use the user accounts stored in a DB with Weblogic's 
built in security/authentication mechanism? We dont want double
lists of users to maintain. One on the DB and another on weblogic, security..

many thanx
dudley


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT] reusing existing user accounts in a webapp that are stored in a DB table....

2003-03-28 Thread Butt, Dudley
Hi all,

I have another brain teaser for you all...
Currently we have DB tables that hold user account info. What we want to do is use 
Weblogic Security, but we dont want to recapture all the users into
weblogic. Is there a way we can use the user accounts stored in a DB with Weblogic's 
built in security/authentication mechanism? We dont want double
lists of users to maintain. One on the DB and another on weblogic, security..

many thanx
dudley


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT] RE: Java Out Of Memory <---solved, thanx to Steve and jikes

2003-03-21 Thread Butt, Dudley
Hi, thanx to Steve

JIKES ROCKS!!

Set me on the right track! Good job! It compiled, with even a fraction of the memory I 
have, it never exceeded the 200mb usage mark

java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m weblogic.ejbc -compiler jikes 
-verbose EntityRel1.jar EntityRel.jar

-Original Message-
From: Butt, Dudley 
Sent: Friday, March 21, 2003 12:20 PM
To: 'Struts Users Mailing List'
Subject: RE: Java Out Of Memory


many thanx I will give Jikes a try

-Original Message-
From: Ditlinger, Steve [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 8:08 PM
To: 'Struts Users Mailing List'
Subject: RE: Java Out Of Memory



We have found that by using the "jikes" compiler instead of javac for doing
ejbc, we are much more economical with memory.  Specifically we use jikes
1.15, although a few of us use 1.17 (avoid 1.16!!).  Prior to switching over
to use jikes, we were constantly getting the same memory errors you are
seeing.

Steve



 -Original Message-
 From: Butt, Dudley [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 20, 2003 8:54 AM
 To: 'Struts Users Mailing List'
 Subject: RE: Java Out Of Memory
 
 
 yes guys come on, anyone got some tricks up their sleeves? i 
 really would appreciate it
 
 -Original Message-
 From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 20, 2003 6:51 PM
 To: Struts Users Mailing List
 Subject: Re: Java Out Of Memory
 
 
 yeap I think so too but I'm sure someone could you
 more here
 
 cheers
 
 - Original Message -
 From: "Butt, Dudley" <[EMAIL PROTECTED]>
 To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
 Sent: Thursday, March 20, 2003 5:46 PM
 Subject: RE: Java Out Of Memory
 
 
 > so in other words, i need more RAM : )
 >
 > -Original Message-
 > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
 > Sent: Thursday, March 20, 2003 6:45 PM
 > To: Struts Users Mailing List
 > Subject: Re: Java Out Of Memory
 >
 >
 > it's only for modify the ram size (by default 64 are allowed)
 >
 > - Original Message -
 > From: "Butt, Dudley" <[EMAIL PROTECTED]>
 > To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
 > Sent: Thursday, March 20, 2003 5:43 PM
 > Subject: RE: Java Out Of Memory
 >
 >
 > > is -Xms256m only for available RAM, or can I increase my 
 page file size
 > and use that in the -X option aswell?
 > >
 > > -Original Message-
 > > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
 > > Sent: Thursday, March 20, 2003 6:37 PM
 > > To: Struts Users Mailing List
 > > Subject: Re: Java Out Of Memory
 > >
 > >
 > > If you use -Xms256m you just will allow to use your whole memory.
 > >
 > > - Original Message -
 > > From: "Butt, Dudley" <[EMAIL PROTECTED]>
 > > To: <[EMAIL PROTECTED]>
 > > Sent: Thursday, March 20, 2003 5:31 PM
 > > Subject: Java Out Of Memory
 > >
 > >
 > > > Hi there,
 > > >
 > > > I know this isn't a Struts question, but I also know you're all
 > extremely
 > > experienced Java dudes, so how can I prevent a Out Of 
 Memory error when
 > > > doing a Javac compile for ejbc, with a 
 EntityRelationshipBean? Any
 help
 > > would be great!
 > > > I'm compiling on a 256M machine and my command looks like this..
 > > >
 > > > set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
 > > > set LIB=C:\java\working\invest\lib\
 > > >
 > > > java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
 > > weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
 > > >
 > > > Many Thanx
 > > >
 > > >
 > > > NOTICE:
 > > >
 > > > This message contains privileged and confidential 
 information intended
 > > > only for the person or entity to which it is addressed.
 > > > Any review, retransmission, dissemination, copy or other 
 use of, or
 > > > taking of any action in reliance upon this information 
 by persons or
 > > > entities other than the intended recipient, is prohibited.
 > > >
 > > > If you received this message in error, please notify the sender
 > > > immediately by e-mail, facsimile or telephone and 
 thereafter delete
 the
 > > > material from any computer.
 > > >
 > > > The New Africa Capital Group, its subsidiaries or 
 associates do not
 > > > accept liability for any personal views expressed in 
 this message.
 > > >
 > > > 
 -
 > > > To unsubscribe, e-mail: 
 [

RE: Java Out Of Memory

2003-03-21 Thread Butt, Dudley
many thanx I will give Jikes a try

-Original Message-
From: Ditlinger, Steve [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 8:08 PM
To: 'Struts Users Mailing List'
Subject: RE: Java Out Of Memory



We have found that by using the "jikes" compiler instead of javac for doing
ejbc, we are much more economical with memory.  Specifically we use jikes
1.15, although a few of us use 1.17 (avoid 1.16!!).  Prior to switching over
to use jikes, we were constantly getting the same memory errors you are
seeing.

Steve



 -Original Message-
 From: Butt, Dudley [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 20, 2003 8:54 AM
 To: 'Struts Users Mailing List'
 Subject: RE: Java Out Of Memory
 
 
 yes guys come on, anyone got some tricks up their sleeves? i 
 really would appreciate it
 
 -Original Message-
 From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 20, 2003 6:51 PM
 To: Struts Users Mailing List
 Subject: Re: Java Out Of Memory
 
 
 yeap I think so too but I'm sure someone could you
 more here
 
 cheers
 
 ----- Original Message -
 From: "Butt, Dudley" <[EMAIL PROTECTED]>
 To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
 Sent: Thursday, March 20, 2003 5:46 PM
 Subject: RE: Java Out Of Memory
 
 
 > so in other words, i need more RAM : )
 >
 > -Original Message-
 > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
 > Sent: Thursday, March 20, 2003 6:45 PM
 > To: Struts Users Mailing List
 > Subject: Re: Java Out Of Memory
 >
 >
 > it's only for modify the ram size (by default 64 are allowed)
 >
 > - Original Message -
 > From: "Butt, Dudley" <[EMAIL PROTECTED]>
 > To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
 > Sent: Thursday, March 20, 2003 5:43 PM
 > Subject: RE: Java Out Of Memory
 >
 >
 > > is -Xms256m only for available RAM, or can I increase my 
 page file size
 > and use that in the -X option aswell?
 > >
 > > -Original Message-
 > > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
 > > Sent: Thursday, March 20, 2003 6:37 PM
 > > To: Struts Users Mailing List
 > > Subject: Re: Java Out Of Memory
 > >
 > >
 > > If you use -Xms256m you just will allow to use your whole memory.
 > >
 > > - Original Message -
 > > From: "Butt, Dudley" <[EMAIL PROTECTED]>
 > > To: <[EMAIL PROTECTED]>
 > > Sent: Thursday, March 20, 2003 5:31 PM
 > > Subject: Java Out Of Memory
 > >
 > >
 > > > Hi there,
 > > >
 > > > I know this isn't a Struts question, but I also know you're all
 > extremely
 > > experienced Java dudes, so how can I prevent a Out Of 
 Memory error when
 > > > doing a Javac compile for ejbc, with a 
 EntityRelationshipBean? Any
 help
 > > would be great!
 > > > I'm compiling on a 256M machine and my command looks like this..
 > > >
 > > > set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
 > > > set LIB=C:\java\working\invest\lib\
 > > >
 > > > java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
 > > weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
 > > >
 > > > Many Thanx
 > > >
 > > >
 > > > NOTICE:
 > > >
 > > > This message contains privileged and confidential 
 information intended
 > > > only for the person or entity to which it is addressed.
 > > > Any review, retransmission, dissemination, copy or other 
 use of, or
 > > > taking of any action in reliance upon this information 
 by persons or
 > > > entities other than the intended recipient, is prohibited.
 > > >
 > > > If you received this message in error, please notify the sender
 > > > immediately by e-mail, facsimile or telephone and 
 thereafter delete
 the
 > > > material from any computer.
 > > >
 > > > The New Africa Capital Group, its subsidiaries or 
 associates do not
 > > > accept liability for any personal views expressed in 
 this message.
 > > >
 > > > 
 -
 > > > To unsubscribe, e-mail: 
 [EMAIL PROTECTED]
 > > > For additional commands, e-mail: 
 [EMAIL PROTECTED]
 > > >
 > > >
 > >
 > >
 > > 
 -
 > > To unsubscribe, e-mail: [EMAIL PROTECTED]
 > > For additional commands, e-mail: 
 [EMAIL PROTECTED]
 > >
 > >
 > >

RE: Java Out Of Memory

2003-03-20 Thread Butt, Dudley
hehehehe, thanx : )

-Original Message-
From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 6:55 PM
To: Struts Users Mailing List
Subject: Re: Java Out Of Memory


find more help ...I'm getting tired


- Original Message -
From: "Alexandre Jaquet" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Thursday, March 20, 2003 5:51 PM
Subject: Re: Java Out Of Memory


> yeap I think so too but I'm sure someone could you
> more here
>
> cheers
>
> - Original Message -
> From: "Butt, Dudley" <[EMAIL PROTECTED]>
> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
> Sent: Thursday, March 20, 2003 5:46 PM
> Subject: RE: Java Out Of Memory
>
>
> > so in other words, i need more RAM : )
> >
> > -Original Message-
> > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, March 20, 2003 6:45 PM
> > To: Struts Users Mailing List
> > Subject: Re: Java Out Of Memory
> >
> >
> > it's only for modify the ram size (by default 64 are allowed)
> >
> > - Original Message -
> > From: "Butt, Dudley" <[EMAIL PROTECTED]>
> > To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
> > Sent: Thursday, March 20, 2003 5:43 PM
> > Subject: RE: Java Out Of Memory
> >
> >
> > > is -Xms256m only for available RAM, or can I increase my page file
size
> > and use that in the -X option aswell?
> > >
> > > -Original Message-
> > > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
> > > Sent: Thursday, March 20, 2003 6:37 PM
> > > To: Struts Users Mailing List
> > > Subject: Re: Java Out Of Memory
> > >
> > >
> > > If you use -Xms256m you just will allow to use your whole memory.
> > >
> > > - Original Message -
> > > From: "Butt, Dudley" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Thursday, March 20, 2003 5:31 PM
> > > Subject: Java Out Of Memory
> > >
> > >
> > > > Hi there,
> > > >
> > > > I know this isn't a Struts question, but I also know you're all
> > extremely
> > > experienced Java dudes, so how can I prevent a Out Of Memory error
when
> > > > doing a Javac compile for ejbc, with a EntityRelationshipBean? Any
> help
> > > would be great!
> > > > I'm compiling on a 256M machine and my command looks like this..
> > > >
> > > > set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
> > > > set LIB=C:\java\working\invest\lib\
> > > >
> > > > java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
> > > weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
> > > >
> > > > Many Thanx
> > > >
> > > >
> > > > NOTICE:
> > > >
> > > > This message contains privileged and confidential information
intended
> > > > only for the person or entity to which it is addressed.
> > > > Any review, retransmission, dissemination, copy or other use of, or
> > > > taking of any action in reliance upon this information by persons or
> > > > entities other than the intended recipient, is prohibited.
> > > >
> > > > If you received this message in error, please notify the sender
> > > > immediately by e-mail, facsimile or telephone and thereafter delete
> the
> > > > material from any computer.
> > > >
> > > > The New Africa Capital Group, its subsidiaries or associates do not
> > > > accept liability for any personal views expressed in this message.
> > > >
> > >
> -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> > > NOTICE:
> > >
> > > This message contains privileged and confidential information intended
> > > only for the person or entity to which it is addressed.
> > > Any review, retransmission, dissemination, copy or other use of, or
> > > ta

RE: Java Out Of Memory

2003-03-20 Thread Butt, Dudley
yes guys come on, anyone got some tricks up their sleeves? i really would appreciate it

-Original Message-
From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 6:51 PM
To: Struts Users Mailing List
Subject: Re: Java Out Of Memory


yeap I think so too but I'm sure someone could you
more here

cheers

- Original Message -
From: "Butt, Dudley" <[EMAIL PROTECTED]>
To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
Sent: Thursday, March 20, 2003 5:46 PM
Subject: RE: Java Out Of Memory


> so in other words, i need more RAM : )
>
> -Original Message-
> From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 20, 2003 6:45 PM
> To: Struts Users Mailing List
> Subject: Re: Java Out Of Memory
>
>
> it's only for modify the ram size (by default 64 are allowed)
>
> - Original Message -
> From: "Butt, Dudley" <[EMAIL PROTECTED]>
> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
> Sent: Thursday, March 20, 2003 5:43 PM
> Subject: RE: Java Out Of Memory
>
>
> > is -Xms256m only for available RAM, or can I increase my page file size
> and use that in the -X option aswell?
> >
> > -Original Message-
> > From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, March 20, 2003 6:37 PM
> > To: Struts Users Mailing List
> > Subject: Re: Java Out Of Memory
> >
> >
> > If you use -Xms256m you just will allow to use your whole memory.
> >
> > - Original Message -
> > From: "Butt, Dudley" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Thursday, March 20, 2003 5:31 PM
> > Subject: Java Out Of Memory
> >
> >
> > > Hi there,
> > >
> > > I know this isn't a Struts question, but I also know you're all
> extremely
> > experienced Java dudes, so how can I prevent a Out Of Memory error when
> > > doing a Javac compile for ejbc, with a EntityRelationshipBean? Any
help
> > would be great!
> > > I'm compiling on a 256M machine and my command looks like this..
> > >
> > > set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
> > > set LIB=C:\java\working\invest\lib\
> > >
> > > java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
> > weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
> > >
> > > Many Thanx
> > >
> > >
> > > NOTICE:
> > >
> > > This message contains privileged and confidential information intended
> > > only for the person or entity to which it is addressed.
> > > Any review, retransmission, dissemination, copy or other use of, or
> > > taking of any action in reliance upon this information by persons or
> > > entities other than the intended recipient, is prohibited.
> > >
> > > If you received this message in error, please notify the sender
> > > immediately by e-mail, facsimile or telephone and thereafter delete
the
> > > material from any computer.
> > >
> > > The New Africa Capital Group, its subsidiaries or associates do not
> > > accept liability for any personal views expressed in this message.
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> > NOTICE:
> >
> > This message contains privileged and confidential information intended
> > only for the person or entity to which it is addressed.
> > Any review, retransmission, dissemination, copy or other use of, or
> > taking of any action in reliance upon this information by persons or
> > entities other than the intended recipient, is prohibited.
> >
> > If you received this message in error, please notify the sender
> > immediately by e-mail, facsimile or telephone and thereafter delete the
> > material from any computer.
> >
> > The New Africa Capital Group, its subsidiaries or associates do not
> > accept liability for any personal views expressed in this message.
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >

RE: Java Out Of Memory

2003-03-20 Thread Butt, Dudley
i'm not compiling on the weblogic server or running Weblogic, i'm just doing a ejbc 
compile on my dev machine with the weblogic jars, like I've always
done.
I'm begginning to think that I just need to buy some more RAM, 
but hey, thanx for answering my email, appreciated

-Original Message-
From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 6:47 PM
To: Struts Users Mailing List
Subject: Re: Java Out Of Memory


it's may a trick around the config file of web logic
it's song like you need to increase you cache but
i never used weblogic

- Original Message -
From: "Butt, Dudley" <[EMAIL PROTECTED]>
To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
Sent: Thursday, March 20, 2003 5:43 PM
Subject: RE: Java Out Of Memory


> is -Xms256m only for available RAM, or can I increase my page file size
and use that in the -X option aswell?
>
> -Original Message-
> From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 20, 2003 6:37 PM
> To: Struts Users Mailing List
> Subject: Re: Java Out Of Memory
>
>
> If you use -Xms256m you just will allow to use your whole memory.
>
> - Original Message -
> From: "Butt, Dudley" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, March 20, 2003 5:31 PM
> Subject: Java Out Of Memory
>
>
> > Hi there,
> >
> > I know this isn't a Struts question, but I also know you're all
extremely
> experienced Java dudes, so how can I prevent a Out Of Memory error when
> > doing a Javac compile for ejbc, with a EntityRelationshipBean? Any help
> would be great!
> > I'm compiling on a 256M machine and my command looks like this..
> >
> > set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
> > set LIB=C:\java\working\invest\lib\
> >
> > java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
> weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
> >
> > Many Thanx
> >
> >
> > NOTICE:
> >
> > This message contains privileged and confidential information intended
> > only for the person or entity to which it is addressed.
> > Any review, retransmission, dissemination, copy or other use of, or
> > taking of any action in reliance upon this information by persons or
> > entities other than the intended recipient, is prohibited.
> >
> > If you received this message in error, please notify the sender
> > immediately by e-mail, facsimile or telephone and thereafter delete the
> > material from any computer.
> >
> > The New Africa Capital Group, its subsidiaries or associates do not
> > accept liability for any personal views expressed in this message.
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> NOTICE:
>
> This message contains privileged and confidential information intended
> only for the person or entity to which it is addressed.
> Any review, retransmission, dissemination, copy or other use of, or
> taking of any action in reliance upon this information by persons or
> entities other than the intended recipient, is prohibited.
>
> If you received this message in error, please notify the sender
> immediately by e-mail, facsimile or telephone and thereafter delete the
> material from any computer.
>
> The New Africa Capital Group, its subsidiaries or associates do not
> accept liability for any personal views expressed in this message.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java Out Of Memory

2003-03-20 Thread Butt, Dudley
so in other words, i need more RAM : )

-Original Message-
From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 6:45 PM
To: Struts Users Mailing List
Subject: Re: Java Out Of Memory


it's only for modify the ram size (by default 64 are allowed)

- Original Message -
From: "Butt, Dudley" <[EMAIL PROTECTED]>
To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
Sent: Thursday, March 20, 2003 5:43 PM
Subject: RE: Java Out Of Memory


> is -Xms256m only for available RAM, or can I increase my page file size
and use that in the -X option aswell?
>
> -Original Message-
> From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 20, 2003 6:37 PM
> To: Struts Users Mailing List
> Subject: Re: Java Out Of Memory
>
>
> If you use -Xms256m you just will allow to use your whole memory.
>
> - Original Message -
> From: "Butt, Dudley" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, March 20, 2003 5:31 PM
> Subject: Java Out Of Memory
>
>
> > Hi there,
> >
> > I know this isn't a Struts question, but I also know you're all
extremely
> experienced Java dudes, so how can I prevent a Out Of Memory error when
> > doing a Javac compile for ejbc, with a EntityRelationshipBean? Any help
> would be great!
> > I'm compiling on a 256M machine and my command looks like this..
> >
> > set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
> > set LIB=C:\java\working\invest\lib\
> >
> > java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
> weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
> >
> > Many Thanx
> >
> >
> > NOTICE:
> >
> > This message contains privileged and confidential information intended
> > only for the person or entity to which it is addressed.
> > Any review, retransmission, dissemination, copy or other use of, or
> > taking of any action in reliance upon this information by persons or
> > entities other than the intended recipient, is prohibited.
> >
> > If you received this message in error, please notify the sender
> > immediately by e-mail, facsimile or telephone and thereafter delete the
> > material from any computer.
> >
> > The New Africa Capital Group, its subsidiaries or associates do not
> > accept liability for any personal views expressed in this message.
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> NOTICE:
>
> This message contains privileged and confidential information intended
> only for the person or entity to which it is addressed.
> Any review, retransmission, dissemination, copy or other use of, or
> taking of any action in reliance upon this information by persons or
> entities other than the intended recipient, is prohibited.
>
> If you received this message in error, please notify the sender
> immediately by e-mail, facsimile or telephone and thereafter delete the
> material from any computer.
>
> The New Africa Capital Group, its subsidiaries or associates do not
> accept liability for any personal views expressed in this message.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java Out Of Memory

2003-03-20 Thread Butt, Dudley
is -Xms256m only for available RAM, or can I increase my page file size and use that 
in the -X option aswell?

-Original Message-
From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 6:37 PM
To: Struts Users Mailing List
Subject: Re: Java Out Of Memory


If you use -Xms256m you just will allow to use your whole memory.

- Original Message -
From: "Butt, Dudley" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, March 20, 2003 5:31 PM
Subject: Java Out Of Memory


> Hi there,
>
> I know this isn't a Struts question, but I also know you're all extremely
experienced Java dudes, so how can I prevent a Out Of Memory error when
> doing a Javac compile for ejbc, with a EntityRelationshipBean? Any help
would be great!
> I'm compiling on a 256M machine and my command looks like this..
>
> set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
> set LIB=C:\java\working\invest\lib\
>
> java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m
weblogic.ejbc -compiler javac EntityRel1.jar EntityRel.jar
>
> Many Thanx
>
>
> NOTICE:
>
> This message contains privileged and confidential information intended
> only for the person or entity to which it is addressed.
> Any review, retransmission, dissemination, copy or other use of, or
> taking of any action in reliance upon this information by persons or
> entities other than the intended recipient, is prohibited.
>
> If you received this message in error, please notify the sender
> immediately by e-mail, facsimile or telephone and thereafter delete the
> material from any computer.
>
> The New Africa Capital Group, its subsidiaries or associates do not
> accept liability for any personal views expressed in this message.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Java Out Of Memory

2003-03-20 Thread Butt, Dudley
Hi there,

I know this isn't a Struts question, but I also know you're all extremely experienced 
Java dudes, so how can I prevent a Out Of Memory error when
doing a Javac compile for ejbc, with a EntityRelationshipBean? Any help would be great!
I'm compiling on a 256M machine and my command looks like this..

set PATH=C:\java\j2sdk1.4.1_01\bin;%PATH%
set LIB=C:\java\working\invest\lib\

java -verbosegc -cp %LIB%weblogic.jar -Xms128m -Xmx256m weblogic.ejbc -compiler javac 
EntityRel1.jar EntityRel.jar 

Many Thanx


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: remote scripting and Struts

2003-03-20 Thread Butt, Dudley
excellent, thank u very much...
u don't have some advice for us would you? or even better, some example code of how 
you integrating the RS calls within your pages? would be great,
and thanx for the reply..

-Original Message-
From: Francisco Gonçalves Rodrigues [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 2:45 PM
To: Struts Users Mailing List
Subject: RES: remote scripting and Struts


Yes, I know what you are saying. I'm using the remote scripting  in a Struts
application. It works very well. No problem with it. :)

Francisco Gonçalves Rodrigues
Analista de Sistemas
Instituto Atlântico
Fone: +55 85 216-7847
Fax: +55 85 216-7864


-Mensagem original-
De: Butt, Dudley [mailto:[EMAIL PROTECTED]
Enviada em: terça-feira, 18 de março de 2003 15:44
Para: 'Struts Users Mailing List'
Assunto: RE: remote scripting and Struts


dynamically updating contents of a webpage without refreshing the page

http://www-106.ibm.com/developerworks/library/wa-resc/

-Original Message-
From: Jose Gonzalez Gomez [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 18, 2003 8:37 PM
To: Struts Users Mailing List
Subject: Re: remote scripting and Struts



What do you mean with remote scripting?

Butt, Dudley wrote:

>would anyone be so kind as to provide some info?
>thx
>
>
>-----Original Message-
>From: Butt, Dudley
>Sent: Tuesday, March 18, 2003 3:15 PM
>To: '[EMAIL PROTECTED]'
>Subject: remote scripting and Struts
>
>
>Hi all,
>
>We are currently making use of remote scripting in our JSP's. We want to go
with Struts, but not sure if the framework will allow remote scripting.
>Any comments?
>
>
>NOTICE:
>
>This message contains privileged and confidential information intended
>only for the person or entity to which it is addressed.
>Any review, retransmission, dissemination, copy or other use of, or
>taking of any action in reliance upon this information by persons or
>entities other than the intended recipient, is prohibited.
>
>If you received this message in error, please notify the sender
>immediately by e-mail, facsimile or telephone and thereafter delete the
>material from any computer.
>
>The New Africa Capital Group, its subsidiaries or associates do not
>accept liability for any personal views expressed in this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>NOTICE:
>
>This message contains privileged and confidential information intended
>only for the person or entity to which it is addressed.
>Any review, retransmission, dissemination, copy or other use of, or
>taking of any action in reliance upon this information by persons or
>entities other than the intended recipient, is prohibited.
>
>If you received this message in error, please notify the sender
>immediately by e-mail, facsimile or telephone and thereafter delete the
>material from any computer.
>
>The New Africa Capital Group, its subsidiaries or associates do not
>accept liability for any personal views expressed in this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE:

This message contains privileged and confidential information intended
only for the person or entity to which it is addressed.
Any review, retransmission, dissemination, copy or other use of, or
taking of any action in reliance upon this information by persons or
entities other than the intended recipient, is prohibited.

If you received this message in error, please notify the sender
immediately by e-mail, facsimile or telephone and thereafter delete the
material from any computer.

The New Africa Capital Group, its subsidiaries or associates do not
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message

struts tools, generators or dev aids for IntelliJ

2003-03-19 Thread Butt, Dudley
Hi,

Was just wondering if anyone out there knows of any such tools etc that we can use to 
ease our Struts dev process? Looking for stuff like Struts front
end, or code generators etc...


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: IBM AIX

2003-03-19 Thread Butt, Dudley
Weblogic is running on the AIX box at the moment. I did read in the mailing lists 
however, that some developers were having some problems deploying a
Struts app to weblogic on a AIX machine, I guess I will just need to try out some of 
the webapps on the AIX

-Original Message-
From: Steve Stair [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 19, 2003 6:32 PM
To: [EMAIL PROTECTED]
Subject: RE: IBM AIX


Assuming WebLogic runs under AIX, no reason that it shouldn't work.
Struts is pure Java code.

I'm using Struts / WebLogic on a windows box and a Sun box and both
work just fine.


--
Steve Stair


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: IBM AIX

2003-03-19 Thread Butt, Dudley
any comments, anyone? please

-Original Message-
From: Butt, Dudley 
Sent: Tuesday, March 18, 2003 4:39 PM
To: '[EMAIL PROTECTED]'
Subject: IBM AIX


Does anyone know if Struts will work on Weblogic 7 SP1 under IBM AIX?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [ANNOUNCE] Struts-JavaServer Faces Integration Library -- Early Access Version Now Available

2003-03-19 Thread Butt, Dudley
what is struts faces?

-Original Message-
From: Alexandre Jaquet [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 19, 2003 12:48 AM
To: Struts Users Mailing List
Subject: Re: [ANNOUNCE] Struts-JavaServer Faces Integration Library --
Early Access Version Now Available


Ok Thanks Craig.

--
Alexandre Jaquet

- Original Message -
From: "Craig R. McClanahan" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Tuesday, March 18, 2003 11:45 PM
Subject: Re: [ANNOUNCE] Struts-JavaServer Faces Integration Library -- Early
Access Version Now Available


>
>
> On Tue, 18 Mar 2003, Alexandre Jaquet wrote:
>
> > Date: Tue, 18 Mar 2003 20:53:48 +0100
> > From: Alexandre Jaquet <[EMAIL PROTECTED]>
> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>
> > To: Struts Users Mailing List <[EMAIL PROTECTED]>
> > Subject: Re: [ANNOUNCE] Struts-JavaServer Faces Integration Library --
> > Early Access Version Now Available
> >
> > Hi Craig,
> >
> > You didn't release any other struts-faces ? Why have you
> > remove it from
> > http://jakarta.apache.org/builds/jakarta-struts/nightly/struts-faces/  ?
> >
> > Thanks.
>
> Oops ... the server cleans out old nightly build files for me.  I thought
> my nightly build script was building this every night -- I'll fix that
> forthwith.
>
> Nothing has changed in this code yet, so the next nightly will be the same
> as the original one in terms of functionality.  The only changes will be
> responses to bug reports (if any).
>
> >
> > --
> > Alexandre Jaquet
>
> Craig
>
>
> >
> >
> > - Original Message -
> > From: "Craig R. McClanahan" <[EMAIL PROTECTED]>
> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > Sent: Friday, March 07, 2003 5:40 AM
> > Subject: Re: [ANNOUNCE] Struts-JavaServer Faces Integration Library --
Early
> > Access Version Now Available
> >
> >
> > >
> > >
> > > On Fri, 7 Mar 2003, alexj wrote:
> > >
> > > > Date: Fri, 7 Mar 2003 05:30:52 +0100
> > > > From: alexj <[EMAIL PROTECTED]>
> > > > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>
> > > > To: Struts Users Mailing List <[EMAIL PROTECTED]>
> > > > Subject: Re: [ANNOUNCE] Struts-JavaServer Faces Integration
Library --
> > > > Early Access Version Now Available
> > > >
> > > > "You don't have permission to access
> > > >
> >
/builds/jakarta-struts/nightly/struts-faces/jakarta-struts-faces-20030306.ta
> > > > r.gz on this server. "
> > > >
> > > > sniff :(
> > > >
> > >
> > > Just caught and fixed ... please try again :-)
> > >
> > > > --
> > > > Alexandre Jaquet
> > > >
> > >
> > > Craig
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [OT] RE: new String("") vs String newStr = ""

2003-03-18 Thread Butt, Dudley
thx!! this helps


-Original Message-
From: Hajratwala, Nayan (N.) [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 18, 2003 8:53 PM
To: 'Struts Users Mailing List'
Subject: [OT] RE: new String("") vs String newStr = ""


Take a look at this link:

http://java.sun.com/docs/books/tutorial/java/data/stringsAndJavac.html

The section on "Literal Strings" should answer your question.

---
- Nayan Hajratwala
- Chikli Consulting LLC
- http://www.chikli.com


-Original Message-
From: Butt, Dudley [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 18, 2003 1:48 PM
To: '[EMAIL PROTECTED]'
Subject: new String("") vs String newStr = ""


I know this isn't a struts question but i was hoping somone might be able to assist 
anyways.

Can anyone tell me the diference between the two statements:

String newStr = new String("") 

String newStr = ""


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



new String("") vs String newStr = ""

2003-03-18 Thread Butt, Dudley
I know this isn't a struts question but i was hoping somone might be able to assist 
anyways.

Can anyone tell me the diference between the two statements:

String newStr = new String("") 

String newStr = ""


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: remote scripting and Struts

2003-03-18 Thread Butt, Dudley
dynamically updating contents of a webpage without refreshing the page

http://www-106.ibm.com/developerworks/library/wa-resc/

-Original Message-
From: Jose Gonzalez Gomez [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 18, 2003 8:37 PM
To: Struts Users Mailing List
Subject: Re: remote scripting and Struts



What do you mean with remote scripting?

Butt, Dudley wrote:

>would anyone be so kind as to provide some info?
>thx
>
>
>-Original Message-----
>From: Butt, Dudley 
>Sent: Tuesday, March 18, 2003 3:15 PM
>To: '[EMAIL PROTECTED]'
>Subject: remote scripting and Struts
>
>
>Hi all, 
>
>We are currently making use of remote scripting in our JSP's. We want to go with 
>Struts, but not sure if the framework will allow remote scripting.
>Any comments?
>
>
>NOTICE: 
>
>This message contains privileged and confidential information intended 
>only for the person or entity to which it is addressed. 
>Any review, retransmission, dissemination, copy or other use of, or 
>taking of any action in reliance upon this information by persons or 
>entities other than the intended recipient, is prohibited. 
>
>If you received this message in error, please notify the sender 
>immediately by e-mail, facsimile or telephone and thereafter delete the 
>material from any computer. 
>
>The New Africa Capital Group, its subsidiaries or associates do not 
>accept liability for any personal views expressed in this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>NOTICE: 
>
>This message contains privileged and confidential information intended 
>only for the person or entity to which it is addressed. 
>Any review, retransmission, dissemination, copy or other use of, or 
>taking of any action in reliance upon this information by persons or 
>entities other than the intended recipient, is prohibited. 
>
>If you received this message in error, please notify the sender 
>immediately by e-mail, facsimile or telephone and thereafter delete the 
>material from any computer. 
>
>The New Africa Capital Group, its subsidiaries or associates do not 
>accept liability for any personal views expressed in this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>  
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: remote scripting and Struts

2003-03-18 Thread Butt, Dudley
would anyone be so kind as to provide some info?
thx


-Original Message-
From: Butt, Dudley 
Sent: Tuesday, March 18, 2003 3:15 PM
To: '[EMAIL PROTECTED]'
Subject: remote scripting and Struts


Hi all, 

We are currently making use of remote scripting in our JSP's. We want to go with 
Struts, but not sure if the framework will allow remote scripting.
Any comments?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



IBM AIX

2003-03-18 Thread Butt, Dudley
Does anyone know if Struts will work on Weblogic 7 SP1 under IBM AIX?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



remote scripting and Struts

2003-03-18 Thread Butt, Dudley
Hi all, 

We are currently making use of remote scripting in our JSP's. We want to go with 
Struts, but not sure if the framework will allow remote scripting.
Any comments?


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



deploying struts on weblogic/tomcat

2003-03-18 Thread Butt, Dudley
Hi,

I have a question or two for you guys..

We will be developing for BEA Weblogic7 sp1, but for development I'm not going to 
install weblogic on everyones machine. for developemnt I would like
to use Tomcat. How difficult is it to migrate a Tomcat Struts project to Weblogic. 
Also, which version of Tomcat works well with Struts? Thanx!




NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Webwork vs Struts vs Maverick please help

2003-03-18 Thread Butt, Dudley
Ok guys this is getting out of hand, please is anyone out there that can help me with 
some info, I appreciate the responses so far, but now theres
Maverick aswell, any comments.

Basically, what we need is a web-development framework. We want to develop for a Java 
Environment.
We will deploy to BEA Weblogic 7 SP 1 on Win2000 and IBM AIX.
We probably won't need to port our stuff to Applets or Swing.
We may use Jasper reports and Webservices later on, as provided for by Weblogic.

Which one will be the best to get our job done Please help

-Original Message-
From: Butt, Dudley 
Sent: Monday, March 17, 2003 7:12 PM
To: '[EMAIL PROTECTED]'
Subject: Webwork vs Struts


Hi all,

I'm in the throws of making a decision as to wether I should go with Struts or Webwork.
Has anyone had any experience comparing the 2, who would be able to provide some 
valuable input?

It will be appreciated, thanx

Here is a post i made to the webwork site, and a reply i received:
===

 I would please like to know from you guys out there, if anyone has used 
> struts then moved over to using webwork. I would like to know if it is a
> feasible option, and what the pro's and con's of each are.
> I have read the FAQ on the comparison between struts and webwork, but i 
> would like to hear from developers who have actually used webwork and 
> struts.
> Which seems to be the better option?

I was an avid Struts users for years before switching over to WebWork.  I 
personally find WebWork a lot easier.  Here are some of the things I think 
WebWork does better:

* To perform simple actions with Struts requires a _lot_ of coding from 
ActionForms to Actions to relatively large config entries.  If you look 
through the archives, I posted a comparison of what it took to create code 
in each framework.

* Struts is strongly tied to the web layer making it inappropriate to 
directly place business logic there, WebWork isn't.  I find with Struts, I 
end up using it as a wrapper layer around POJOs.  Again, increasting the 
amount of code required.

* Struts has a larger, albeit more low level tag library.  The WebWork tag 
library is smaller, and yet I feel like you can get things done quicker as 
the constructs are higher level.

* Finally, with Struts, the typically model is to use the ActionForm to 
receive input, the Action to wrap the business logic and response content 
gets placed into the request attributes.  That seems pretty messy in 
comparison to having one disposable object to contain all these items.

All in all, I think WebWork has a definite edge over Struts.  With the 
upcoming WebWork2, I think it's hands down in WebWorks favor.  In addition 
to an even cleaner separation of business logic and presentation layer, 
WebWork2 also implements a highly customizable interception framework that 
enables aspect-oriented development.

In any event, I think it's worth a couple days to give it a try.





NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Webwork vs Struts

2003-03-18 Thread Butt, Dudley
anybody else have any comments? there seems to be quite a heated debate around this 
issue>

-Original Message-
From: ALAMI Ahmed [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 7:24 PM
To: Struts Users Mailing List
Subject: RE: Webwork vs Struts


Chck this site, it's interesting

--Webwork is more flexible for building frameworks to access the model level, that can 
be integrated in an UI (Swing, ...)
--Struts is more useful for handling web actions
 

http://www.rollerweblogger.org/page/roller/20030113

-Message d'origine-----
De : Butt, Dudley [mailto:[EMAIL PROTECTED]
Envoyé : Monday, March 17, 2003 6:12 PM
À : '[EMAIL PROTECTED]'
Objet : Webwork vs Struts


Hi all,

I'm in the throws of making a decision as to wether I should go with Struts or Webwork.
Has anyone had any experience comparing the 2, who would be able to provide some 
valuable input?

It will be appreciated, thanx

Here is a post i made to the webwork site, and a reply i received:
===

 I would please like to know from you guys out there, if anyone has used 
> struts then moved over to using webwork. I would like to know if it is a
> feasible option, and what the pro's and con's of each are.
> I have read the FAQ on the comparison between struts and webwork, but i 
> would like to hear from developers who have actually used webwork and 
> struts.
> Which seems to be the better option?

I was an avid Struts users for years before switching over to WebWork.  I 
personally find WebWork a lot easier.  Here are some of the things I think 
WebWork does better:

* To perform simple actions with Struts requires a _lot_ of coding from 
ActionForms to Actions to relatively large config entries.  If you look 
through the archives, I posted a comparison of what it took to create code 
in each framework.

* Struts is strongly tied to the web layer making it inappropriate to 
directly place business logic there, WebWork isn't.  I find with Struts, I 
end up using it as a wrapper layer around POJOs.  Again, increasting the 
amount of code required.

* Struts has a larger, albeit more low level tag library.  The WebWork tag 
library is smaller, and yet I feel like you can get things done quicker as 
the constructs are higher level.

* Finally, with Struts, the typically model is to use the ActionForm to 
receive input, the Action to wrap the business logic and response content 
gets placed into the request attributes.  That seems pretty messy in 
comparison to having one disposable object to contain all these items.

All in all, I think WebWork has a definite edge over Struts.  With the 
upcoming WebWork2, I think it's hands down in WebWorks favor.  In addition 
to an even cleaner separation of business logic and presentation layer, 
WebWork2 also implements a highly customizable interception framework that 
enables aspect-oriented development.

In any event, I think it's worth a couple days to give it a try.





NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Webwork vs Struts

2003-03-17 Thread Butt, Dudley
Hi all,

I'm in the throws of making a decision as to wether I should go with Struts or Webwork.
Has anyone had any experience comparing the 2, who would be able to provide some 
valuable input?

It will be appreciated, thanx

Here is a post i made to the webwork site, and a reply i received:
===

 I would please like to know from you guys out there, if anyone has used 
> struts then moved over to using webwork. I would like to know if it is a
> feasible option, and what the pro's and con's of each are.
> I have read the FAQ on the comparison between struts and webwork, but i 
> would like to hear from developers who have actually used webwork and 
> struts.
> Which seems to be the better option?

I was an avid Struts users for years before switching over to WebWork.  I 
personally find WebWork a lot easier.  Here are some of the things I think 
WebWork does better:

* To perform simple actions with Struts requires a _lot_ of coding from 
ActionForms to Actions to relatively large config entries.  If you look 
through the archives, I posted a comparison of what it took to create code 
in each framework.

* Struts is strongly tied to the web layer making it inappropriate to 
directly place business logic there, WebWork isn't.  I find with Struts, I 
end up using it as a wrapper layer around POJOs.  Again, increasting the 
amount of code required.

* Struts has a larger, albeit more low level tag library.  The WebWork tag 
library is smaller, and yet I feel like you can get things done quicker as 
the constructs are higher level.

* Finally, with Struts, the typically model is to use the ActionForm to 
receive input, the Action to wrap the business logic and response content 
gets placed into the request attributes.  That seems pretty messy in 
comparison to having one disposable object to contain all these items.

All in all, I think WebWork has a definite edge over Struts.  With the 
upcoming WebWork2, I think it's hands down in WebWorks favor.  In addition 
to an even cleaner separation of business logic and presentation layer, 
WebWork2 also implements a highly customizable interception framework that 
enables aspect-oriented development.

In any event, I think it's worth a couple days to give it a try.





NOTICE: 

This message contains privileged and confidential information intended 
only for the person or entity to which it is addressed. 
Any review, retransmission, dissemination, copy or other use of, or 
taking of any action in reliance upon this information by persons or 
entities other than the intended recipient, is prohibited. 

If you received this message in error, please notify the sender 
immediately by e-mail, facsimile or telephone and thereafter delete the 
material from any computer. 

The New Africa Capital Group, its subsidiaries or associates do not 
accept liability for any personal views expressed in this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]