Re: [flexcoders] Re: Flex Upload

2005-09-22 Thread Felipe Tadeus
I Have some files and they aren't func.       http://127.0.0.1:8080/upload/SimpleUpload.jsp','POST')" id="uploadButton" />    SimpleUpload.jsp   <%@ page language="java" import="javazoom.upload.*,java.util.*" %><%@ page errorPage="ExceptionHandler.jsp" %>   <%  if (MultipartFormDataReq

Re: [flexcoders] Re: Flex Upload

2005-09-22 Thread Felipe Tadeus
Can you say how? On 9/21/05, Jose Quiles <[EMAIL PROTECTED]> wrote: Hi,I think you must register your servlet in the web.xml file, in WEB-INFdirectory. Regards,Jose2005/9/21, Felipe Tadeus <[EMAIL PROTECTED]>: > owls_yang,>> I read this archive in a previus time, but in my home tests the TomCat

Re: [flexcoders] Re: Flex Upload

2005-09-21 Thread Jose Quiles
Hi, I think you must register your servlet in the web.xml file, in WEB-INF directory. Regards, Jose 2005/9/21, Felipe Tadeus <[EMAIL PROTECTED]>: > owls_yang, > > I read this archive in a previus time, but in my home tests the TomCat isn't > knowing de Servlet(AttachmentSvlt.java). > Is it go to

Re: [flexcoders] Re: Flex Upload

2005-09-21 Thread Felipe Tadeus
owls_yang,   I read this archive in a previus time, but in my home tests the TomCat isn't knowing de Servlet(AttachmentSvlt.java). Is it go to special folder or I need do anything more? Do you have the example running in your pc?   Flw  On 9/21/05, owls_yang <[EMAIL PROTECTED]> wrote: the Action

[flexcoders] Re: Flex Upload

2005-09-21 Thread owls_yang
the ActionScript class LocalConnection would be helpful. I learned a lot from this awesome flex upload tutorial. http://weblogs.macromedia.com/mchotin/archives/2004/11/guest_post_on_f .cfm Hope it would be helpful and save your time. Of course, I read many entries that Flex Player 8 has the upload

Re: [flexcoders] Re: Flex Upload

2005-09-21 Thread Felipe Tadeus
YES,   But I need send to flex app, the name and the way of this archive in the server, to future download of this. If the upload sucess...the MBs...   How Can I do it?  On 9/20/05, owls_yang <[EMAIL PROTECTED]> wrote: You use getURL to open a jsp, where you would write a type="file"> to select

RE: [flexcoders] Re: Flex Upload

2005-09-21 Thread Kelly
@yahoogroups.com Subject: [flexcoders] Re: Flex Upload   You use getURL to open a jsp, where you would write a type="file"> to select a file on your pc and then submit it to server- side. You cannot use getURL to select file or send it to server, flex cannot manipulate your local files on th

[flexcoders] Re: Flex Upload

2005-09-20 Thread owls_yang
You use getURL to open a jsp, where you would write a to select a file on your pc and then submit it to server- side. You cannot use getURL to select file or send it to server, flex cannot manipulate your local files on the client side. FYI Owls. --- In flexcoders@yahoogroups.com, Felipe Tade