Can you broadcast a local flv file live using RED5 server? If so how?
So what i want to do is allow the user to elect a flv file locally and stream ... |
Please don't post the same question to multiple forums. I've deleted the other copy. What is a "m/c"? "Microcomputer?" I wish people wouldn't use these jargony abbreviations -- it's hard enough for us all to understand each other. What's wrong with simply saying "computer"? In any case, you won't be able to do this without using signed code on the desktop ... |
|
The application is running on Server "A", I am working on client machine "B". How to write a file to the directory of local machine (for example, c:\myDoc)? If using File and FileWriter (or FileOutputStream), it can not work cross network. So file is write to the Server "A" instead of Client machine "B". If using ServletResponse.getOutputStream(), no file directory can ... |
Originally posted by Joe Ess: Welcome to the JavaRanch, Chetan. You are going to have to give us some more information so we can help you. Exactly what are you trying to accomplish? What are you having problems with? Hi Joe, The scenario is as follows. #1) After logging in the user edits/creates a profile. #2) This info is ... |
I've been using Tomcat/local machine to produce some jsp pages for uploading files. Files are selected and added to a listbox on a form, once the form is submitted - the filenames in the list are uploaded. Firstly there is a check to see if they exist. Something to the effect of.. File file = new File(filenames[x]); file.exist(); for each file. ... |
Hiya.. i posted before but heres the prob in more detail.. I'm making a JSP page where (ideally) you select files to upload, each selected file is added to a listbox. The form is submit, (along with some other parameters), and the files are uploaded. They arent uploaded (written) tradionally to a server, I just need the file's input stream to ... |
|
|
I have an application that upload images file from my local harddrive to the server. Before the upload, it checks whether the file existing on the local drive. And I use file.exists() to do this. When the application was running on my pc, it worked fine. But when the application was deployed and run on the server, this file.exists() always returned ... |
Hello Dear Programmers, Maybe someone could help me with this. I've searched Sockets and Internet Protocols, but I guess no one had the same problem. Ok, here's my problem. My appication needs to upload a file by ftp(using Jakarta-commons-net-2.8) on the server, but before it starts it needs to check if the file is on the server already. What is the ... |
|
|
Hello, Can a Java applet read and write files on the computer it is being served from? For example, a user connects to the server via a web browser and navigates to the applet. They enter information into the applet that needs to be saved on to the server. Can this be done? |
Hi, I'm developing a web application and Im stucked on issue explained below. I generate a text file with data downloaded from db. Easy and works fine. Problem is I'd like a "well known" -save to- window to open for user to choose the directory to save. I cant do that. Other problem is my java server is remote, I develop ... |
Hello, I'm encountering some problem working on an intranet by trying to create some file. I have some directory located in a remote server, on a location with the type "\\dir1 firstname lastname". Now, this directory of course contains a space between the words firstname and lastname. When trying to use the "new File" method (I've imported java.io.File), by using the ... |
|
|
I got this file upload code from online. With little tinkering and tweaking, I am able to use that for my application. (There are many third party options available, but the code I managed to find do not require any additional library ). At any rate, my question is : how long should it take for a 50 MB file to ... |
|