Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
377 views

how to get parameters' value from curl in REST web service in java

Do anyone know how to get parameters' values from curl command in REST web service using java.I have write a REST web service using jersey framework and java in NetBean IDE. This is my curl command to ...
2
votes
3answers
863 views

(rails) how to validate whether an uploaded .txt file is not, say, an image file?

I have a upload text file field, and with it I plan to save the file somewhere and then store the location of the file in a database. However, I want to make sure the file they uploaded is a .txt ...
0
votes
0answers
47 views

HTML form uploading file

I have been developing an application that allows a user to upload files to the server. I had working forms until recently, when suddenly they stopped working. All the forms that do not work any ...
0
votes
1answer
24 views

How can I apply style and change the name of the button in Upload Control in HTML( Using MVC here)

I am using a normal Upload control in MVC as given below. <input name="uploadFile" type="file" /> <input type="submit" value="Upload File" /> My question is how do I change the name ...
0
votes
0answers
150 views

fileEntryListener of icefaces 2.0 fileEntry not called in liferay

In Liferay portlet, i'm trying to use ace:fileEntry to upload a file, as I read this component requires a submit from h:commandButton. In this commandButton, i have an actionListener and an action. ...
0
votes
1answer
129 views

Upload file using HttpWebRequest — Couldn't upload?

Here is the code - upload file to uri. I can't upload it. Is anything wrong? string fileToUpload = @"F:\\upload_file.txt"; FileStream rdr = new FileStream(fileToUpload, FileMode.Open); ...
0
votes
2answers
161 views

setLastModified on jsp UploadFile

I need help how to set the last modified time on a file uploaded (on jsp). I need to know the time when the file uploaded. This is my code but eclipse says "The method setLastModified(Date) is ...
0
votes
0answers
569 views

IPhone/IPad Upload Image to Web Service Issue

Im trying to upload an image from my ipad application to my web server using a web service. Following is the web service: <WebMethod()> _ Public Function UploadFiles(ByVal strFileName As ...
0
votes
2answers
399 views

How to use system in Cocoa to invoke curl

I was wondering the best way to upload file to a web server in cocoa. I cant seem to get my curl code to work even though it works when run from terminal. curl code: system(@"curl -T /file.txt ...
-2
votes
1answer
31 views

How to known error type exactly when uploading file in codeigniter? [closed]

I want to know error type exactly when user upload file to show my messages in my language to them ?