uploading

ASP.NET Webservice corrupts uploaded file

I have a webservice through which I can upload documents to our ASP.NET web site. The problem is when I upload PDF & word documents, they get corrupted when I try to open them. Text documents always upload fine. What is even strange is that on my development machine, these files upload fine but when I try to upload to our demo site, the...

REST Uploading a Shapefile

Hi, I'm trying to upload a shape file with REST API. Here is the error I get : No such datastore: ws1,nete I've installed version 1.7.5 together with the restconfig-1.7.5.jar plugin. Here is what I do: 1) Create workspace ws1 curl -u admin:geoserver -v -XPOST -H 'Content-type: text/xml' -d 'ws1'localhost:8080/geoserver/rest/workspace...

Uploading Multiple Files For FTP in Mac

Hi i am using Connection Kit Framework in my cocoa application.. I need to set multiple connections to a ftp server. and also i am facing problem in multiple file uploads.. How can i do that using connection Kit.. Can anyone Guide me on this.. I want to connect to ftp from three different classes.And also i need to upload from three cla...

Multiple uploads

Hi I need to upload the files to FTP from three different classes simultaneously.. How can i handle it using connection Kit .. If i use thread for three classes uploading will not be done. I think for uploading it is using the main thread of the application.. How can i separate this into three main threads so that uploading should be car...

Is there anyway to compress jpeg using any technology to decrease upload time?

I have an online tool through which another user upload photos. The user is having issues when using slower bandwidth. I found this http://en.wikipedia.org/wiki/Lossless%5Fdata%5Fcompression 1) Is there any tool or API that utilizes this algorithm? 2) Will it slow the upload process for being able to compress locally? ...

Is there anyway to dynamically change upload_tmp_dir via an apache module version of PHP dynamically, i.e. before the uploading file is written to disk

I want to rotate the location where temporary files are written however it is my understanding that the PHP script wont execute until after the full post is already completed. By that time the file is already written to the default temp location from the configuration file which is loaded in at the time apache is spawned and the php mod...

Upload a virus using a webform

Is it possible to upload a virus to a remote computer using a webform? If yes how do we prevent this from happening assuming we are limiting file types to just images? ...

$_FILES array in PHP is empty...

I'm trying to get a file uploaded through a PHP script, but my $_FILES array is always empty? My $_POST data entry for the file HTML input element has the filename...Just no file is created on my local system. I've verified write access to the temp folder and explicity set it. I've checked phpinfo() to make sure file uploads are enabl...

Filename shows as a Required field in a Document Library in Sharepoint 2007.

Ok, so got a stumped scenario. On a Sharepoint MOSS 2007 site, somebody messed around with the settings of a Document Library. You try and upload multiple documents to the document library and it keeps them as checked out. This was not occurring before. The library settings (versioning settings are set to Yes to check out before edi...

HttpWebRequest C# uploading a file

Hello, using C#, I'm trying to integrate my web store w/ an email marketing client. I want to upload a comma delimited file of subscribers once a night. They say to get this to work, it has to be a form posts: multipart/form-data, but I'm not using a form. I'm able to connect to their servers but I keep getting back a Data can't be blan...

Is there a jQuery editor plugin that support image uploading?

I haven't found one yet.Have you? ...

Rails, Paperclip Failing to Save File

So I'm using Thoughtbot's Paperclip on Rails, but ran into a problem where all image attributes are null: [4;35;1mProject Create (0.0ms)[0m [0mINSERT INTO `projects` (`name`, `start_date`, `status`, `image_file_size`, `updated_at`, `url`, `image_content_type`, `description`, `progress`, `image_updated_at`, `created_at`, `image_file_na...

Getting an exception trying to upload and save a file upload on remote server but local box is fine

i have an asp.net mvc app that has a form that uploads a file. On my local box, of course it works fine but when i run it on a remote webserver i get this error: Exception Details: System.UnauthorizedAccessException: Access to the path 'C:\directory\mytestfile.csv' is denied. ASP.NET is not authorized to access the requested resource....

Uploading images to Imgur.com using C#.

Hi dudes! I just recieve my unique developer API key from Imgur and I'm aching to start cracking on this baby. First a simple test to kick things off. How can I upload an image using C#? I found this using Python: #!/usr/bin/python import pycurl c = pycurl.Curl() values = [ ("key", "YOUR_API_KEY"), ("image", (c.F...

my application uploads file correctly but its setup does not,c#

i have created an application which uploads file on a website. while debugging through F5 my file gets properly uploaded. but i ve created a setup for that windows application,and when i run setup and after which i try to upload files then it does not upload properly,it shows file 0 bytes... i think there is a problem of file path.....

SOAP , getting progress of the uploaded Request while its uploading c#

Im trying to upload a file through a SOAP request , and it worked perfectly , but I couldnt get a progress for the uploaded amount of the request . ...

What would happen if invalid WAR file is uploaded to Google App Engine?

What would happen if invalid WAR file is uploaded to Google App Engine? I can do try to upload myself but I can't seem to upload because of my network connection. Thanks! ...

Node.js as a custom (streaming) upload handler for Django

I want to build an upload-centric app using Django. One way to do this is with nginx's upload module (nonblocking) but it has its problems. Node.js is supposed to be a good candidate for this type of application. But how can I make node.js act as an upload_handler() for Django? I'm not sure where to look for examples? ...

Uploading UIImage to server using UIImageJPEGRepresentation

hi all, I'm writing an app which uploads a UIImage to my server. This works perfect, as I see the pictures being added. I use the UIImageJPEGRepresentation for the image data and configure an NSMutableRequest. ( setting url, http method, boundary, content types and parameters ) I want to display an UIAlertView when the file is being up...

POST data disapearing on large file upload

I'm having issues with a file uploading utility in my PHP application. When sending large files (9MB+) over the form, I get a very odd behaviour: the POST data I've included in the form dissapears, including the file information. I've already increased all PHP limits I could (time limit, max input time, post max size, memory limit and u...