RE: Excel Export

2002-04-29 Thread Ravindran Ramaiah


I had used java2com( http://www.nevaobject.com/_docs/_java2com/java2com.htm
)library to dynamically create excel on the fly.  
It is possible to import a comma delimited file (generated via database or
whatever) and create a excel sheet ( and charts too..)

Ravi


-Original Message-
From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 5:06 PM
To: 'Struts Users Mailing List'
Subject: RE: Excel Export


Anytime you point your browser to http://whatever.file.xls, it will invoke
Excel and display whatever is contained in the file within the browser
window.

Mark

-Original Message-
From: Hair, Jeffrey [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 2:53 PM
To: 'Struts Users Mailing List'
Subject: RE: Excel Export


Is there a way to have the browser actually download the excel file instead
of just rendering the file within the browser? And if so, what about images
displayed within the rendered excel?

jsh

-Original Message-
From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 1:44 PM
To: 'Struts Users Mailing List'
Subject: RE: Excel Export
Importance: Low


This is way too complicated.  All you have to do is set the MIME type in the
setContentType() declaration in the servlet delivering the output to
"application/vnd.msExcel" and the browser will automatically display the
output in an Excel spreadsheet.

Mark

-Original Message-
From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 1:40 PM
To: [EMAIL PROTECTED]
Subject: Re: Excel Export


Subject: Re: Excel Export
From: Vic C <[EMAIL PROTECTED]>
 ===
Struts is Java. Excel is VBA. They don't like each other. One good way 
is to expose your Java (Form) beans via SOAP.
Then in Excel (using Pocket Soap client for example) write a VBA macro 
that gets the SOAP XML data.
You will need to add SOAP interface to you web app server.

SOAP is good for most distributed  or diverse applications and good for 
hetrogenous enviroments. (There is a news list on soap at 
news.strutsplus.com)

Vic


Chen, Dean (Zhun) wrote:
> This might be a little of topic, however, does struts support a
standardized
> way to export results from queries in a comma delimited format, for
> importing into excel?
> Thanks,
> 
> Dean Chen
> 
> --
> To unsubscribe, e-mail:

> For additional commands, e-mail:

> 



--
To unsubscribe, e-mail:

For additional commands, e-mail:


--
To unsubscribe, e-mail:

For additional commands, e-mail:


--
To unsubscribe, e-mail:

For additional commands, e-mail:


--
To unsubscribe, e-mail:

For additional commands, e-mail:


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Calendar pop up tag

2002-04-26 Thread Ravindran Ramaiah


Check this out..

http://www.servletsuite.com/servlets/caltag.htm

Ravi


-Original Message-
From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 26, 2002 2:25 PM
To: [EMAIL PROTECTED]
Subject: Calendar pop up tag


Subject: Calendar pop up tag
From: Vic C <[EMAIL PROTECTED]>
 ===
A while back I found some links to nice tags.
Anyone have a link to a nice calendar pop up tag for use with Struts?
So user can select a date.

tia, Vic


--
To unsubscribe, e-mail:

For additional commands, e-mail:


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: AW: HOW TO span a FormBean over several JSP's

2001-10-23 Thread Ravindran Ramaiah

Hi,

I had successfuly implemented a similar workflow organizer.
Through this architecture,
1. All the button clicks are dynamically routed. 
2. Section-ing the fields in the xml, allows to control over each field.
(change the background color/hide/enable)
3. Same JSPs can be reused for a different workflow (even if there are some
changes in the UI.  XML defines the changes).



The overview can be as in the following diagram.  

 <<...OLE_Obj...>> 


Attached a portion of the wizard.xml I had used here.

 <> 

Is this you are referring to?

Ravi





-Original Message-
From: storck [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 23, 2001 11:25 AM
To: [EMAIL PROTECTED]
Subject: AW: AW: HOW TO span a FormBean over several JSP's


Has someone used the workflow and wizard ?

-Ursprungliche Nachricht-
Von: Ted Husted [mailto:[EMAIL PROTECTED]]
Gesendet: Dienstag, 23. Oktober 2001 16:54
An: [EMAIL PROTECTED]
Betreff: Re: AW: HOW TO span a FormBean over several JSP's


http://www.husted.com/struts/resources.htm#new

storck wrote:
>
> Sorry, but I cant find the right link :(
>
> -Ursprungliche Nachricht-
> Von: Ted Husted [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 23. Oktober 2001 15:24
> An: [EMAIL PROTECTED]
> Betreff: Re: HOW TO span a FormBean over several JSP's
>
> I just posted a new version of Struts-Simple that includes a
> conventional wizard, and an early example of using the new workflow
> gimzo with Struts.
>
> -- Ted Husted, Husted dot Com, Fairport NY USA.
> -- Custom Software ~ Technical Services.
> -- Tel +1 716 737-3463
> -- http://www.husted.com/struts/
>
> storck wrote:
> >
> > Hi,
> >
> > I am looking for an example how to span a formbean over more than one
JSP.
> I
> > read that it is possible but I dont know exactly how to set up the
> > struts-conf.xml
> > Can anyone help?
> >
> > Thanks

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel +1 716 737-3463
-- http://www.husted.com/struts/

 wizard.xml


RE: Struts - XML - XSL

2001-09-24 Thread Ravindran Ramaiah

Following are the procedures that can used to apply the style sheet


Once we have already parsed the XML document, the getDocument method from
the parser instance (e.g. DOMParser) should return  an object of type
Document (which is actually a DOM representation of the XML). This will be
the starting point.

To apply the XSLT transformation, you perform the following steps:

1.  Create a DOMSource object and implicitly cast it to a SAX InputSource
object. The constructor takes in the Document object as a parameter.

InputSource source = new DOMSource(document);

2.  Instantiate a StyleGenerator object and pass the fully-qualified class
names of the XML and XSL parsers you want to use.

StyleGenerator stylegen = new StyleGenerator(Consts.SOURCEDOC_PARSER,
Consts.STYLESHEET_PARSER);

Where:
SOURCEDOC_PARSER"com.sengen.utils.DOMParserExtension"
STYLESHEET_PARSER   "org.apache.xerces.parsers.SAXParser"

You can plug-in any DOM / SAX compliant parser you like. In this case we are
using two different parsers: a DOM parser for the XML and a SAX parser for
the XSL. The setup does not have to be this way. This is also the reason why
we have to implicitly casting in step one.

3. Lastly, call the StyleGenerator's applyStylesheet method. Originally, it
only deals with filenames but I overloaded it to accomodate InputSource and
streams. The resulting or transformed XML document is either written to a
file or returned as a byte stream.

public void applyStylesheet(String sourceFileName, String styleFileName,
String outputFileName) throws Exception
public ByteArrayOutputStream applyStylesheet(String sourceFileName, String
styleFileName) throws Exception
public void applyStylesheet(InputSource sourceInput, String styleFileName,
String outputFileName) throws Exception
public ByteArrayOutputStream applyStylesheet(InputSource sourceInput, String
styleFileName) throws Exception

Where:
sourceFileName  XML filename
styleFileName   XSL filename ** 
outputFileName  filename of the resulting (transformed) XML
sourceInput InputSource object created in step 1


** any type of stylesheet like XSL-2-HTML, XSL-2-FO,  XSL-2-whatever


-lines 3 and 4 correspond to steps 1 and 2 above.
-In line 7, he used the fourth version of the applyStylesheet method and
converted the byte array to a
string. This string is now the HTML transformation of the XML document.

1.  public String getPresentation() {
2.  
3.  InputSource source = new DOMSource(getDocument());
4.  StyleGenerator stylegen = new
StyleGenerator(KmpPdfgenConsts.SOURCEDOC_PARSER,KmpPdfgenConsts.STYLESHEET_P
ARSER);
5.  
6.  try {
7.  return
stylegen.applyStylesheet(source,getStylesheet()).toString();
8.  } catch(Exception e){
9.  //
10. }
11. 
12. return "";
13. }



Hope this helps.

Thanks,
Ravi






-Original Message-
From: Ted Husted [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 24, 2001 11:33 AM
To: [EMAIL PROTECTED]
Subject: Re: Struts - XML - XSL


At Jakarta, we use Ant to build our HTML pages from XML and XSL. See the
Struts source distribution for an example. 

I haven't tried it, but I keep thinking it would be interesting to do
the same with JSPs.

This would gives you the flexibility of XML,XLS without changing how you
write your applications, or incurring the overhead of the runtime
transformations.

> Frédéric Houbie - ABSIS-GROUP wrote:
> 
> Hi,
> 
> I'm involved in a project that use struts. I have a question to get
> some advice from you. The application want to separate clearly layout
> from the logic. The team manager want us to use XML, XSL to build html
> pages. But I don't see clearly how to mix all that. I have beans that
> do SQL query and return an iterator with the data, I suppose my
> controller servlet must call the beans and give the jsp access to this
> iterator. My JSP page will dynamically build XML file, but i don't
> know how to call the transformation of the XML data with a XSL file to
> build my final html layout.
> 
> Can you help me ?
> 
> 
> Frédéric Houbie
> Internet Project Manager
> 
> ABSIS-GROUP SA
> Centre Socran
> Av Pré Aily, 8
> B-4031 Angleur
> Tel : +32 4 367 89 64
> Fax : +32 4 367 89 63
> 
>  DISCLAIMER 
> 
> "This e-mail and any attachments thereto may contain information which
> is confidential and/or protected by intellectual property rights and
> are intended for the sole use of the recipient(s) named above. Any use
> of the information contained herein (including, but not limited to,
> total or partial reproduction, communication or distribution in any
> form) by persons other than the designated recipient(s) is prohibited.

RE: Dates and Struts

2001-08-22 Thread Ravindran Ramaiah

We have developed a utility class for Date manipulation.
Attached the java file.

Hope this helps.
Thanks
Ravi


-Original Message-
From: Gregor Rayman [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 22, 2001 8:01 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: Dates and Struts


"Matt Raible" <[EMAIL PROTECTED]> wrote:


> Is it true that Struts cannot handle a java.sql.Date or java.util.Date
> datatype?  I seem to get errors everytime I try to have one in my form.
>
> Thanks,
>
> Matt

No it cannot. Date is not so easy to parse since it is locale dependent.
Also the displaying a date is not easy.

This brings me to one general architecture question:

Where do you (I mean all struts users) put the formatting/parsing´of
values?

For display only data, I try to put it into the JSP (with custom tags).

But what about the editable data? Is the ActionForm the right place?

I store the data in non-string form (like Date) and the get/set methods
operate with strings. The language dependent formats use an addiotional
property "locale" which I set either in the reset() method (from request
and session).

It could be done simpler, I used only string aware ActionForms and the
whole formatting were done in Action.perform, but this wouldn't be conform
with the MVC pattern, woul'd it?

--
gR


 StrutsDate.java


RE: Problem getting Struts working with Websphere 3.5.4

2001-07-11 Thread Ravindran Ramaiah


Check this out..
http://www.mail-archive.com/struts-user@jakarta.apache.org/msg10964.html

And..
Sure thing - I already sent it but the list refused it due to its file size.
As an alternative, I'll put it up on my personal FTP space and anyone who
wants it can download it from there! :) 

Struts.jar with Form tag modifications: http://www.enfused.com/struts.jar

-Chris

-Original Message-
From: Christine Eckstein [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 03, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: RE: Struts 1.0 on WebSphere 3.5.4??







-Original Message-
From: Calabrese, Jason [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 10, 2001 7:54 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Problem getting Struts working with Websphere 3.5.4


I forgot to add the exception, here it is.

Message: Server caught unhandled exception from servlet [action]: Server
caught unhandled exception from servlet [jsp11]: cant remove Attributes
from request scope

Target Servlet: action
StackTrace: 


Root Error-1: cant remove Attributes from request scope

java.lang.IllegalArgumentException: cant remove Attributes from request
scope
at java.lang.RuntimeException.(RuntimeException.java:49)
at
java.lang.IllegalArgumentException.(IllegalArgumentException.java:
45)
at
org.apache.jasper.runtime.PageContextImpl.removeAttribute(PageContextImp
l.java:236)
at
org.apache.struts.taglib.html.FormTag.doEndTag(FormTag.java:591)
at _registration_jsp_0._jspService(_registration_jsp_0.java:959)
at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:127)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServle
t.java:396)
at
org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:718)
at
org.apache.jasper.runtime.JspServlet.service(JspServlet.java:872)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletMan
ager.java:626)
at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLife
cycleServlet.java:160)
at
com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleSe
rvlet.java:287)
at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifec
ycleServlet.java:105)
at
com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.jav
a:360)
at
com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(Servle
tManager.java:775)
at
com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletM
anager.java:701)
at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispat
ch(WebAppRequestDispatcher.java:478)
at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppReq
uestDispatcher.java:234)
at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequ
estDispatcher.java:138)
at
org.apache.struts.action.ActionServlet.processActionForward(ActionServle
t.java:1758)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1595)
at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletMan
ager.java:626)
at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLife
cycleServlet.java:160)
at
com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleSe
rvlet.java:287)
at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifec
ycleServlet.java:105)
at
com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.jav
a:360)
at
com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(Servle
tManager.java:775)
at
com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletM
anager.java:701)
at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispat
ch(WebAppRequestDispatcher.java:478)
at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppReq
uestDispatcher.java:234)
at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequ
estDispatcher.java:138)
at
com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvo
ker.java:77)
at
com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(Cach
edInvocation.java:67)
at
com.ibm.servlet.engine.invocation.CacheableInvocationContext.invoke(Cach
eableInvocationContext.java:106)
at
com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(Serv

RE: JavaBeans creation

2001-07-06 Thread Ravindran Ramaiah

Marc,
I have created a code generator for Struts and is available
in http://www.husted.com/about/struts/resources.htm#extensions


Thanks,
Ravi

-Original Message-
From: Marc-andre Thibodeau [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 06, 2001 11:02 AM
To: struts
Subject: JavaBeans creation



Hi!

Could anybody suggest me a tool for generating JavaBeans setters and
getters automatically?
Thanks!

MA



RE: Struts Example on WebSphere 3.5.3

2001-05-24 Thread Ravindran Ramaiah




Follow the Steps:
-

·   Start the WebSphere Administrative Console
·   Once it's started, select "Convert a War File" from the tasks
toolbar option, or from the Console->Tasks menu. This will cause a "Convert
War File" Wizard dialog to appear.
·   Select a Servlet Engine to host the web application that will result
from converting the War file, e.g. "Default Servlet Engine", by expanding
the tree control under Nodes. Press the Next button.
·   Select a Virtual Host to associate the resulting web application
with, e.g. "default host". Press the Next button.
·   Press the Browse button and choose the "struts-test.war" application
WAR file. Press the Next button.
·   Select a destination directory for the resulting web application,
e.g. $WAS_HOME/hosts/default_host. Press the Next button
·   Enter a "Web Application Web Path", e.g. /struts-test, and a "Web
Application Name", e.g. struts-test. Press the Finish button
·   You should get a message box with the text Command "convert war
file" completed successfully. Press Ok.
·   You now need to add jaxp.jar and parser.jar from JAXP 1.0.1  to the
struts-test web application's servlet's directory,  e.g.
$WAS_HOME/AppServer/hosts/default_host/struts-test/servlets
·   Create a WEB-INF directory in the servlets dir and copy
struts-config.xml and web.xml into it (Keep WEB-INF with all the TLD's [if
any] under web - both WEB-INF directories must be present).  
·   In the DOCTYPE declaration, change the word PUBLIC to SYSTEM and
completely remove the line that reads "-//Sun Microsystems, Inc.//DTD Web
Application 2.2//EN" from web.xml and remove "-//Apache Software
Foundation//DTD Struts Configuration 1.0//EN" from struts-config.xml.
·   In the servlets directory, open struts.jar.  Extract the three DTD's
(struts-config_1_0.dtd, web-app_2_2.dtd and web-app_2_3.dtd) into the
servlets directory making sure you use folder names (so the files extract to
servlets/org/apache/struts/resources).
·   In the Admin Console, down where it says Default Error Page, enter
/ErrorReporter and then click Apply.
·   Shut down the WebSphere Application Server and Restart
·   Open a Browser and type the URL
http:///struts-test/index.jsp where  is the name
of the machine. If you want you can use localhost instead







-Original Message-
From: Alexander, Glynn (LIT) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 24, 2001 11:50 AM
To: [EMAIL PROTECTED]
Subject: Struts Example on WebSphere 3.5.3


Has anyone tried to get the Struts Example to work on WebSphere 3.5.3.
 I have followed the installation instructions as described in
http://jakarta.apache.org/struts/installation-was352.html omitting the fix
for 3.5.2 assuming it has been fixed in 3.5.3.  I have then followed the
instuctions to get the Struts  example running
(http://jakarta.apache.org/struts/installation-was352-x.html).  However on
starting the Default server the system hangs when loading the
struts-config.xml file.
When accessing http://localhost/struts-example/index.jsp I get the first
page OK However clicking on the Log on to the MailReader Demonstration
Application  
link I get the following:
Error 500
An error has occured while processing
request:http://localhost/struts-example/logon.jsp
Message: Server caught unhandled exception from servlet [jsp11]: Cannot find
ActionMappings or ActionFormBeans collection

Target Servlet: jsp11
StackTrace: 

Root Error-1: Cannot find ActionMappings or ActionFormBeans collection
javax.servlet.jsp.JspException: Cannot find ActionMappings or
ActionFormBeans collection at
javax.servlet.jsp.JspException.(JspException.java:73) at
org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:703) at
org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:441) at
_logon_jsp_1._jspService(_logon_jsp_1.java:164) at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:127) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at
org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.ja
va:381) at
org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:702) at
org.apache.jasper.runtime.JspServlet.service(JspServlet.java:822) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at
com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager
.java:626) at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycl
eServlet.java:160) at
com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServle
t.java:287) at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycle
Servlet.java:105) at
com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:36
0) at
com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletMan
ager.java:775) at
com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManag
er.j

FW: Returned Mail: User Unknown

2001-03-23 Thread Ravindran Ramaiah


Can somebody stop this.

Thanks,
Ravi






-Original Message-
From: mail-daemon [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 23, 2001 8:42 AM
To:
[EMAIL PROTECTED]
g
Subject: Returned Mail: User Unknown


The following recipient did not receive this message:
[EMAIL PROTECTED]

   - Original message follows -

Received: from apache.org ([64.208.42.41]) by euroinfobase.com ( IA Mail
Server Version: 3.2.4. Build: 1096 ) ) ; Fri, 23 Mar 2001 14:41:33 +0100
Received: (qmail 44616 invoked by uid 500); 23 Mar 2001 13:25:13 -
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
list-help: 
list-unsubscribe: 
list-post: 
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 44554 invoked from network); 23 Mar 2001 13:25:10 -
Received: from unknown (HELO euroinfobase.com) (217.6.66.67)
  by h31.sny.collab.net with SMTP; 23 Mar 2001 13:25:10 -
Date: Fri, 23 Mar 2001 14:21:42 +0100
From: "mail-daemon" <[EMAIL PROTECTED]>
Subject: Returned Mail: User Unknown
To:
"[EMAIL PROTECTED]"
<[EMAIL PROTECTED]>
Auto-Submitted: auto-replied
Message-ID: <[EMAIL PROTECTED]>
X-Mailer: Internet Anywhere Message Server Version: 3.2.4. Build: 1096
X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N

The following recipient did not receive this message:
[EMAIL PROTECTED]

   - Original message follows -

Received: from apache.org ([64.208.42.41]) by euroinfobase.com ( IA Mail
Server Version: 3.2.4. Build: 1096 ) ) ; Fri, 23 Mar 2001 14:21:30 +0100
Received: (qmail 31839 invoked by uid 500); 23 Mar 2001 13:12:11 -
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
list-help: 
list-unsubscribe: 
list-post: 
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 31809 invoked from network); 23 Mar 2001 13:12:11 -
Received: from unknown (HELO euroinfobase.com) (217.6.66.67)
  by h31.sny.collab.net with SMTP; 23 Mar 2001 13:12:11 -
Date: Fri, 23 Mar 2001 14:08:50 +0100
From: "mail-daemon" <[EMAIL PROTECTED]>
Subject: Returned Mail: User Unknown
To:
"[EMAIL PROTECTED]"
<[EMAIL PROTECTED]>
Auto-Submitted: auto-replied
Message-ID: <[EMAIL PROTECTED]>
X-Mailer: Internet Anywhere Message Server Version: 3.2.4. Build: 1096
X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N


** Remainder of message body suppressed **



RE: Struts on WebSphere 3.5.2?

2001-03-09 Thread Ravindran Ramaiah

Check out this link
http://www.mail-archive.com/struts-dev@jakarta.apache.org/msg00383.html

This works fine with the struts-test.war
Ravi


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 09, 2001 4:35 PM
To: [EMAIL PROTECTED]
Subject: Struts on WebSphere 3.5.2?


Has anyone managed to get struts running under WebSphere 3.5.2? I have
trouble getting it to work, it blows up in the ActionServlet when it
tries to read action.xml (I'm using version 0.5). The servlet tries to
call getResourceAsStream on its ServletContext, which in my case always
returns null. My little example works fine under Tomcat.

Any help is appreciated.

Andre



how to use image maps for form submission

2001-02-20 Thread Ravindran Ramaiah

Hi,
   I need to use image maps to submit a form using struts.
Is there an equivalent for  to submit a form using imagemap and
how to configure the same?
Ravi