Re: I have a problem!!!

2003-08-18 Thread Jean-Francois Arcand
Send an email to [EMAIL PROTECTED]

-- Jeanfrancois

RobDel wrote:

Good morning,

I need know if can use tomcat to inegration between Java e Flash using Flash Remoting 
MX with JavaBean.
Sorry by my english, but i am brazilian.
Bye
Robson Del Angelo
 



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


RE: I have a problem!!!

2003-08-18 Thread Hookom, Jacob
There are a couple of books out there from Macromedia on application
development with Flash MX.  Most of the integration that can occur with J2EE
is via RPC with SOAP/Web Services.  It's VERY new and so I would recommend
finding a book from Macromedia on it.

-Jacob

-Original Message-
From: Jean-Francois Arcand [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 9:01 AM
To: Tomcat Users List
Subject: Re: I have a problem!!!

Send an email to [EMAIL PROTECTED]

-- Jeanfrancois

RobDel wrote:

Good morning,

I need know if can use tomcat to inegration between Java e Flash using
Flash Remoting MX with JavaBean.
Sorry by my english, but i am brazilian.

Bye
Robson Del Angelo

  



-
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: I have connector problem while using tomcat 4+apach 1.3

2002-08-29 Thread Andy Eastham

Taehun,

I had exactly this problem last week.  Tomcat is fine with mod_webapp on
windows 2000 and linux,but _binary_ file uploads fail on Solaris.  It seems
to be a bug in the Solaris version of mod_webapp (I used the one shipped
with Solaris 9).

I'm afraid I didn't fix the problem - I just deployed this particular
application on Linux rather than Solaris.

I'd be interested if you find a solution though.

All the best,

Andy

 -Original Message-
 From: taehun.kim [mailto:[EMAIL PROTECTED]]
 Sent: 29 August 2002 14:21
 To: [EMAIL PROTECTED]
 Subject: I have connector problem while using tomcat 4+apach 1.3
 Importance: High


 Hi, All!

 I'm running Tomcat 4.0 and Apache 1.3 on Solaris8.
 I succeed in install and configuration except one thing.
 The problem is FILE UPLOAD. My file upload servlet working well
 when I run Tomcat as standalone only. I can upload any kind of file.
 But If I start apache server and try to upload file via apache, I can't
 upload any file except plain text file.(eg. .txt, .html)
 other files are just uploaded the part of them. what I mean is that
 if I try to upload 500 bytes sized file, only about 50 bytes are uploaded.
 (the uploaded size is not fixed)

 I think warp connector may cause this problem but not sure and I couldn't
 solve this problem. Anybody has some idea, let me know please.

 best regards

 Taehun
 -
 DreamWiz Free Mail @ http://www.dreamwiz.com/
 DreamSearch Click the world!!! http://search.dreamwiz.com/



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





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




Re: I have Small Problem

2000-12-12 Thread Matt Goss

Sunil
put your servlet class in the webapps/contextname/WEB-INF/classes/ folder,
then call them via http://localhost:8080/contextname/servlet/servletname.
Matt

Sunil Chandurkar wrote:

 I am new user of Tomcat.  I have created simple helloworld servlet. Please
 can u
 tell me where to copy class file and how to call this from browser.
 I have worked on Java Web Server, there i used to copy servlet file in the
 following diretory: JWS-HOME/examples/Web-Inf/servlets
 and used to call this file as: http://localhost:8080/ServletName

 How to do it in Tomcat?

 Regards
 Sunil


begin:vcard 
n:Goss;Matt
tel;fax:919-657-1501
tel;work:919-657-1432
x-mozilla-html:FALSE
url:www.rtci.com
org:RTCI;Custom Solutions
adr:;;201 Shannon Oaks Circle;Cary;NC;27511;US
version:2.1
email;internet:[EMAIL PROTECTED]
title:Web Developer
fn:Matt
end:vcard



Re: I have Small Problem

2000-12-12 Thread Bryan Basham


 I am new user of Tomcat.  I have created simple helloworld servlet. Please
 can u
 tell me where to copy class file and how to call this from browser.
 I have worked on Java Web Server, there i used to copy servlet file in the
 following diretory: JWS-HOME/examples/Web-Inf/servlets
 and used to call this file as: http://localhost:8080/ServletName

You can put "raw" servlet class files in
   TOMCAT_HOME/webapps/ROOT/WEB-INF/classes

You need to read the servlet v2.2 (or later) spec to really understand how
to properly create and deploy a "web application" which is significantly
different then *just* deploying a single servlet to the "servlets" directory
as in the days of old.  To get the current servlet spec visit:

   http://java.sun.com/products/servlet/download.html

-Bryan