Is a generic term for the act of transmitting files over a computer network or the Internet.

learn more… | top users | synonyms

-3
votes
1answer
77 views

File Transfer and Segmentation Error [closed]

I am supposed to implement a Simple File Transferring Program in Linux using c++. Can you help me find the segmentation error in the code.. But kindly resolve the error.Help needed.Code runs properly ...
0
votes
0answers
188 views

Determining SMB client/server from traffic

I have a PCAP file that contains some SMB traffic showing the file transfer from one PC to another. I'm trying to determine which is the PC that initiates the file transfer. From Wireshark, I have the ...
0
votes
2answers
133 views

pdf file transfer

I have implemented the program that will transfer any txt file using the udp socket in java. I am using printwriter to write and read. But using that I am not able to transfer any file other than txt ...
0
votes
2answers
68 views

Netty and webDAV, any compatibility?

I'm working on content server with Netty, so i'm building a personalized server, i was wondering if i can use webDAV protocole with Netty?
0
votes
0answers
35 views

File transfer from PC to Atmel Processor (At91SAM7X512-CU) via Putty [closed]

I intend to change the IP address of my target Atmel processor via putty. I intend to do this by assigning a default IP address during compiling of my processor (At91SAM7X512-CU) and later pass a ...
2
votes
0answers
277 views

How to send file from Android client to C++ server via socket

I tried to send bitmap from my android to pc (C++ socket server) but failed. PNG file can not open after sent complete 1 - here is code i compress bitmap to png format ByteArrayOutputStream bos = ...
2
votes
0answers
180 views

Developing RDP for file transfer using UDP in c++ [closed]

I need help with how to design message formats, window data structures and acknowledgements and error checking for a basic file transfer program using UDP. I am looking for algorithms or some basic ...
0
votes
1answer
1k views

How to use phonegap FileTransfer parameters with .asmx web service

I am uploading an image to an asmx web service. The file upload works fine, but I am wondering how to access the parameters that I set in the javascript for the filetransfer. I want to pass the ...
0
votes
1answer
175 views

How to get files from a Cordova 2.2.0 app on iOS

I've got a couple of CSV files that I've generated in my app, and I'm looking for a viable way to get the files to a desktop computer so some good ol' fashioned number crunching can happen. For the ...
0
votes
1answer
125 views

How to check file integrity before ftp

I'm using apache commons ftp client to transfer files. Although not very often I see some partial transfers. I am not sure if its because ftp has partial file during transfer because when I check ...
0
votes
0answers
37 views

Which Development Features are recommended for Downloading and Uploading data with an iPhone application? [closed]

The application needs to be able to update its local database (CoreData/SQLlite) from a CSV file, downloaded via USB from a Laptop or Desktop computer, or directly from a Central Database Server via a ...
0
votes
0answers
41 views

MOTOCAST like web application using python

I want to create a file transfer web application where in a browser is used as a medium to transfer files from remote desktop to the system running the browser(which is running the web application). I ...
2
votes
1answer
2k views

how to send media files via bluetooth in android

I have a requirement. I need to build an app, which uses Bluetooth to send media files like songs, images etc to another device. I have no knowledge about how to do this. Can anyone assist from ...
0
votes
1answer
109 views

Transfer file from ios App to a App running on a PC [closed]

My iOS app creates files in its documents folder when it is running I need to write a App on a PC(and eventually on a Mac) so that when the iOS app is running and the PC app is running - the files in ...
0
votes
1answer
446 views

WP7 - PhoneGap FileTransfer returns Null error code

I'm trying PhoneGap/Cordova 2.1.0 in WP7 for the first time, so I'm new in this. What I should do is capturing a picture through the camera and uploading it to a server. This is my code: ...
1
vote
0answers
324 views

How to transfer file/String message over Bluetooth From any Bluetooth-enabled device to Android device

I know there are lots of already asked questions about the the title I provided above, but I found none as a satisfactory one. Also I gone through Android Bluetooth and its sample Bluetooth Chat ...
2
votes
4answers
70 views

sharing libraries across web projects

I have 3 PHP projects using the CodeIgniter framework which share some exact same files such as models libraries and controllers. What's the best way I could share these files across without having to ...
0
votes
3answers
545 views

SFTP to retrieve files from Windows server to Linux server using java

I am working on file download functionality.All my files are in Windows server,is there any Library in java which can be used to do SFTP to transfer files from remote windows server to Linux server ...
0
votes
1answer
594 views

File transfer over Wi-Fi in Android

I want to make an Android app which can transfer a file from one phone to another via Wi-Fi. In Android 4.0 it can be done through Wi-Fi direct but how it would be possible for lower versions that do ...
0
votes
0answers
86 views

Java File Transfer Detect Client Disconnect

I have a web app with java file uploader as the upload part. My question is, sometime during file transfer, if something happen, it will show error. But, how do I check this error is because of ...
1
vote
2answers
275 views

C# File.Move service slow over network

I created a service that moves certain file types in a directory to another one, this works fine locally and pretty fast over my network. On a different network though it works incredibly slow (a ...
0
votes
0answers
350 views

Send file is done but actually fail in Asmack android

This is how I try to send a file over XMPP using asmack lib (from the GtalkSms project) and a Ejabberd server: //Configure provider in onCreate() configure(ProviderManager.getInstance()); // ...
2
votes
1answer
469 views

Twisted big files transfer

I write client-server application like this: client(c#) <-> server (twisted; ftp proxy and additional functional) <-> ftp server Server has two classes: my own class-protocol inherited from ...
-1
votes
1answer
302 views

Using SCP to transfer files from Windows to Mac [closed]

I am trying to write a script that, executing from a mac, will download 4 files from a windows machine to my current directory. I tried downloading those files using scp, but whenever I try connecting ...
2
votes
1answer
4k views

Viewing root access files/folders of android on windows

I'm trying to view the files and folders at root level on an android device using USB Debugging mode and windows. Is this possible? Phone is rooted. I've downloaded a file explorer app which allows ...
1
vote
1answer
353 views

Canon EDSDK sample code - help to understand save file to location

I am new to the EDSDK, but so far have been very happy with the results. I have my program working just fine saving to the camera, however when I set to saveTo Host I'm unclear on where it thinks ...
1
vote
1answer
342 views

Serialising file transfers on iOS Phonegap application

I have an phonegap app for iOS that downloads the images and pdf files from the server as they have to be available locally. I parse using jQuery to find a list of assets I need to download and then ...
0
votes
0answers
101 views

Is it possible to pause a FileTransfer in Apache Cordova (PhoneGap)

I'm asking to myself if is it possible to stop the download of a distant file on Apache Cordova in the case where the mobile connection is too poor or when the user close the application Is it ...
0
votes
1answer
476 views

socket closed exception after transferring one file from server to client

I am implementing two programs; Client and Server, and client asks for a file from server to download in local file system. After downloading one file, the client should be able to download another ...
3
votes
1answer
505 views

cordova 2.0.0 download file Android

I tried to use cordova 2.0.0 API FileTransfer().download() and i got 2 consecutive errors 1) download error source file 2) download error target file here is my code... function ...
0
votes
1answer
124 views

What is the fastest way to send a small video from one iOS device to another?

I'd like to make an application in which one person takes a short video, maybe five to twenty seconds in length, and sends it to another user as quickly as possible. An example would be an instant ...
0
votes
3answers
341 views

Save file from android device to windows programmatically

Is there any way to save a text file created from an android app to a USB connected windows PC programmatically? Please Advice
0
votes
1answer
195 views

aSmack XMPP filetransfer loops in status “In Progress”

I've changed my asmack library from asmack-issue15.jar to asmack-android-7.jar from Flowdalic/asmack project. Everything runs smooth, but I've a problem with the filetransfer from my server to the ...
0
votes
1answer
1k views

PhoneGap FileTransfer and Server side scripting

I'm stucked with this for the whole day, the JavaScipt code seems fine. But in the output i get this: 2012-09-25 15:09:57.584 ViviJesolo[13863:c07] File Transfer Finished with response code 200 ...
0
votes
4answers
314 views

Sending files over MSMQ

In a retail scenario where each stores report their daily transaction to the backend system at the end of the day. Today a file consisting of the daily transactions and some other meta information is ...
1
vote
1answer
207 views

serializing an object with a byte array of a file as a field

I am sending a file over the network using a client-server program. After reading the bytes of the file (with File.ReadAllBytes()), I set the byte array as a field of an object. Then serialize and ...
1
vote
1answer
950 views

Transfer file from one ios device to another using wifi and 3G network?

I am just curious to learn if I can send file from one ios device to another using wifi or 3G network. I am not sure this is possible or not. I gone through apple's documentation of CFNetwork ...
0
votes
1answer
664 views

Receive Files in Android using asmack

I am trying to receive a file using the asmack jar. I am able to receive text on my android device with no problem but when I set up the file transfer I get an error saying that "does not support ...
0
votes
0answers
32 views

how to push updates to an application on VPS from a remote machine?

I have a java application running on ten VPS' and as I am still testing the app, I need to update the app file frequently. So, I am wondering if there is a easier way to do this other than using ...
0
votes
0answers
158 views

what chunk based solutions for large file transfer is out there?

If i send a large file lets say 50 or 300MB from-an-to an Android Device the chance for interruption is large. Is there some protocol like "torrent"? Right now im creating a hash of each file ...
0
votes
2answers
835 views

How to log in over network with CMD via UNC path?

I want to be able to connect to a remote machine through its UNC path in either windows CMD or powershell; I have tried C:\pushd \\MyServer\"User Folders"\localUser\TestFolder but when this executes, ...
0
votes
1answer
154 views

Issue with an LPR Command in VB

I am creating a VB app which will "move" xls reports from a directory to a ReportSafe app. I am also working in an existing VB app which does just that, so I am using it for reference. It isn't as ...
0
votes
1answer
65 views

Setting up an FTP server without a dedicated IP [closed]

I'm not sure if this is the best SE site for this question but here goes. I am looking to implement a simple and easy to use file transfer solution such that people can upload/download files with ...
1
vote
0answers
151 views

Prohibit .APK transfer to TF card or onto another device

Is there a way to prohibit the transfer of an .APK file on a device to another device? In essence make the .APK "read only" or something similar...thnx
0
votes
2answers
319 views

Android adb and C++

I am writing a C++ program (MFC) that is to automatically transfer file between a desktop and a tablet. However, the tablet I am using is recognized as an MTP device and is not assigned a drive ...
3
votes
1answer
407 views

How do I pipe data received via bluetooth into an mp3 file between android devices?

QUESTION: How do I pipe data received (sent via bluetooth chat sample code) into an mp3 file? AIM: To transfer an mp3 file from one android phone to another using a simple bluetooth file transfer ...
0
votes
0answers
158 views

Automatically print photos on pogo printer from a camera with eyefi

I'd like to take photos on my camera and have them print automatically on my Polaroid Pogo printer. I'd like the camera to be wireless (not connected to the printer or laptop) but I don't mind if the ...
0
votes
1answer
304 views

https file transfer in java

I need to transfer a file between two computers using https protocol using a java code. I have no idea where to start at. Is transfer using socket the only way ? Do I necessarily need to have a code ...
0
votes
0answers
141 views

File transfer protocols: which one has less overhead?

I'm designing a system where I'll have to transfer every 5 minutes a few (10-20) files (around 100Mb. each) through a Wifi link, which will be used at the same time to stream live video too. The live ...
0
votes
0answers
211 views

Audio,Video ,Text chat and Data Collaboration Web Application

I am Having the requirement to do Features Like Audio,Video and Text Chat and also File Transfer Features as a Web application Project ( for eg, Skype in web application). I am Analyzing The SIP ...

1 2 3 4 5 12