[android-developers] How to install android sdk to all users.?

2017-09-04 Thread uday . globuslive
android-studio-bundle-162.4069837-windows.exe /S is installing Android studio to c:\program files\android\android studio. and SDK to %localappdata%\android\sdk. In some forum it is mentioned to use /AllUsers to install SDK to all users. I tried android-studio-bundle-162.4069837-windows.exe

[android-developers] How to check if Android Permission is actually being used?

2016-08-16 Thread Uday Kumar
HI, How to check permissions are being used or not those are declared in android manifest file. Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[android-developers] problem with the search of my app from tablets

2016-05-08 Thread uday roy
my app name is matesafe it is being searched on smart phone normally but when i search it on tablet it shows lots of books inspite ,i tried in app category too and there is no result . -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

[android-developers] Re: AsyncTask - wait until the task has finished

2012-07-26 Thread uday kiran jandhyala
Hi, Could there be a case where onPostExecute() is never called because doInBackground() is stuck in some synchronous API called within ? I've a use case where am using AsyncTask like below (code for illustration only) : BackgroundCommunicatorTask mBackgroundTaskOne = new

[android-developers] How to detect and connect Bluetooth headset using Android code

2012-05-01 Thread Uday Wad
I would like to identify Bluetooth headset and connect it via my android code can you help me out ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Robotium horizontalscroll using solo

2012-03-12 Thread Uday Gokhale
Hi All, I have 2 galary views in my app. I want to scroll right on 2nd galary view. here is my code but its not working.. ArrayListView views = solo.getCurrentViews(); *for* (*int* i=0;iviews.size();i++) { View vi = views.get(i); *if* (vi.getId() == R.id.*gallery1*) solo.scrollToSide(22);

[android-developers] MediaScanner Thumbnails

2012-02-20 Thread uday kiran jandhyala
regards Uday -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options

[android-developers] Re: find out which activity resumed/started my activity?

2012-01-23 Thread uday kiran jandhyala
build a logic to check from where our Activity has come to focus right?! I may be totally wrong to imagine like this.. But am open to learning and being corrected on this :) Best regards Uday -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Listview and expandablelistview

2012-01-13 Thread Uday Gokhale
I want to create app in which 1) get main list view content from user (from edit-text) .on click of add button it will add dynamically. 2)on click of list view pop up in which 3 options 1)add sub list 2)delete3)edit 3)And repete 2) for my sublist also. How can i achieve this.

Re: [android-developers] Listview and expandablelistview

2012-01-13 Thread Uday Gokhale
Ya TreKing,robinns http://sites.google.com/site/rezmobileapps/treking you are rite. THANKS A LOT!!! On Fri, Jan 13, 2012 at 8:40 PM, TreKing treking...@gmail.com wrote: On Fri, Jan 13, 2012 at 3:28 AM, Uday Gokhale gokhale.u...@gmail.comwrote: How can i achieve this. Learn to program

[android-developers] Re: Access denied error while trying to install new API

2012-01-03 Thread Uday (Dave)
have checked permissions for all the folder tree for such an error. Have no slightest idea about file permissions on Windows, can you check permissions on folders? Cheers -- anil jagtap Android Application Developer On Dec 14, 4:26 pm, Uday (Dave) uday...@gmail.com wrote: Hi, I

[android-developers] How to run application in background on click of device back button

2011-12-18 Thread Uday Gokhale
I want to show route between source and destination using google map.whenever - 1) I get the message,on click of that message I want to check whether my application is install on device? 2) If my app install on a device i want to show route, 3)I want my application to run in background when

[android-developers] Retrive outgoing call and name using content provider

2011-12-15 Thread Uday Gokhale
I am having an activity which reads outgoing call. I got the numbers and suceessfully shown on my listview . but I am not getting names releated to that particular outgoing calls. the whole thing look like this Uri allCalls = Uri.parse(content://call_log/calls); Cursor c =

[android-developers]

2011-12-15 Thread Uday Gokhale
I am having an activity which reads outgoing call. I got the numers and suceessfully shon on my listview . but I am not getting names releated to that particular outgoing calls. the whole thing look like this Uri allCalls = Uri.parse(content://call_log/calls); Cursor c =

[android-developers] Access denied error while trying to install new API

2011-12-15 Thread Uday (Dave)
Hi, I have installed the android sdk 16 on my Windows7 machine I have installed the Android2.1 API initially without any glitch. But then again when I try to install the other APIs using the SDK manager, it gives me: Downloading SDK Platform Android 2.3.3, API 10, revision 2 File not found:

[android-developers] Ytdandroid usage android

2011-11-03 Thread uday kiran
Hi.. Am using Ytdandroid to upload videos to youtube account . But i want to make it as private , so that it will visible to me itself. If we use gdata, gdata.setPrivate(true) simillar to this. But i dono how to do with this ytdandroid code,?? Thanks -- You received this message because

[android-developers] Is it possible to access MVC .Net application in android when the .net is not having web services?

2011-09-06 Thread supriya uday
I am trying to access MVC .NET apps using JSON but since they don't have web services i am not able to access it.Can anyone help me in this part? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: How to prematurely stop a long-running SQLite query?

2011-08-23 Thread uday kiran jandhyala
Hi, I remember Sqlite supporting 'In-Memory' DB, which is way faster than normal DB.. Everything that we are doing temporarily, is processed in memory thus no I/O.. It could be one option to try out.. But am not sure if this is do-able on android.. http://en.wikipedia.org/wiki/In-memory_database

[android-developers] Re: How to change device file permission from Java app.

2011-08-09 Thread uday kiran jandhyala
Hello Mark, In java.io, the File API is supposed to provide APIs like setExecutable (boolean) setWritable (boolean) setReadable (boolean) However, in the android.jar which includes all the needed classes, the java.io package doesn't provide the above APIs in the File class. Has this been done

[android-developers] Invoking Browser through an Intent, to perform HTTP POST

2011-08-05 Thread uday kiran jandhyala
Greetings! It is clear that the Android Browser app can be launched from any other application, through an Intent as : Intent intent = new Intent(Intent.ACTION_VIEW); Uri data = Uri.parse(http://www.google.com;); intent.setData(data); startActivity(intent); This would however internally perform

[android-developers] Re: Dialog and Progress Dialog issues on Orientation Change

2011-06-20 Thread sahana uday
in onCreate, at least not without checking to see whether this Activity has already been started/destroyed due to rotation. See #getLastNonConfigurationInstance. On Jun 20, 1:52 pm, sahana uday sahanau...@gmail.com wrote: Hi, I understood what you were trying to say. Here's what I;'m doing now

[android-developers] Re: Dialog and Progress Dialog issues on Orientation Change

2011-06-20 Thread sahana uday
. On Jun 20, 1:52 pm, sahana uday sahanau...@gmail.com wrote: Hi, I understood what you were trying to say. Here's what I;'m doing now: class ConnectionsListAddScreen extends Activity{        public void onCreate(Bundle savedInstState){             super.onCreate(savedInstState

[android-developers] Re: Dialog and Progress Dialog issues on Orientation Change

2011-06-19 Thread sahana uday
uday sahanau...@gmail.com wrote: Hi, Yes I'm sending the request to server in onCreateDialog(), but its an AsyncTask. In onPreExecute() show theprogressdialogand onPostExecute() cancel theprogressdialog. Off late I have anotherissuein computing textview height, I have posted thisissueon

[android-developers] Determine TextView Height

2011-06-16 Thread sahana uday
Hi, How to compute TextView Height before its laid out on screen? I'm not aware how we can use getPaint().ascent() or descent() method for computing height? Can you please provide an example?? Thanks, Sahana -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Dialog and Progress Dialog issues on Orientation Change

2011-06-16 Thread sahana uday
Hi, Yes I'm sending the request to server in onCreateDialog(), but its an AsyncTask. In onPreExecute() show the progress dialog and onPostExecute() cancel the progress dialog. Off late I have another issue in computing textview height, I have posted this issue on a separate thread also. The

[android-developers] Dialog and Progress Dialog issues on Orientation Change

2011-06-06 Thread sahana uday
Hi, I'm using showDialog() and onCreateDialog() methods for displaying Dialog and Progress Dialog. But on orientation change it recreates the Dialog and Progress Dialog, due to which I'm facing the below problem: 1. Related to Progress Dialog: Current Behavior: I'm using Progress Dialog to send

[android-developers] Dialog and Progress Dialog issues on Orientation Change

2011-06-01 Thread sahana uday
Hi, -Display the dialog on a button click (now we are in portrait mode). -Change to Landscape mode, dialog still appears. -Change back to Portrait mode, dialog continues to remain. -Now press Back key dialog is removed. -Change to Landscape mode again dialog is still visible in Landscape mode,

[android-developers] Re: Mms-Sms database Thread Id Issue

2011-03-15 Thread uday
Hi Sukumar, Thanks for the early reply. Today i have tried your suggestions, but no luck, there is no uri exposed to query Thread's table to get all recipients_id and compare. It would be help full if you can provide any example, if you have tried before or any alternate solution. Its high

[android-developers] Backup in Android

2010-11-18 Thread uday
Hi All, Im trying to do the backing up of my application's data into the Google Servers.. For doing this i've implemented a BackupAgent in my code and i i included this in the Android Manifest file and Meta-data after registered my Application's package with the Android Backup Service. When i

[android-developers] Remote Data Backup

2010-11-17 Thread uday
Hi All, Im trying to do the backing up of my application's data into the Google Servers.. For doing this i've implemented a BackupAgent in my code and i i included this in the Android Manifest file and Meta-data after registered my Application's package with the Android Backup Service. When i

[android-developers] Camera Surface not getting destroyed when mobile lock

2010-10-28 Thread uday
in Android?? Thanks in advance for valuable replies.. Thanks Regards Uday Kiran Pichika -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group

[android-developers] java.net.socketException The Operation timed out

2010-10-01 Thread uday
... Is it related to any firewall protection?? Thanks in advance Uday Kiran Pichika -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

[android-developers] Re: Camera Preview Zoom in Android

2010-09-16 Thread uday
check is SetZoom implemented in HAL. and also setparameters in HAL will be called whenever you trying to change zoom level In setparameters() in HAL, Setzoom should be called. Setzoom() will send IOCTL command to native camera driver to set the zoom. On Tue, Sep 7, 2010 at 9:58 AM, uday uday.pic

[android-developers] Re: Capturing RAW data in Android 2.2(HTC Desire)

2010-09-06 Thread uday
/android.htm On Sep 6, 4:57 am, uday uday.pic...@gmail.com wrote: Thanks Blindfold for ur information... Currently im working on Camera Capture in Android. I can able to display the image in portrait by forcing the preview as portrait in AndroidManifest.xml file.. But the image preview

[android-developers] Re: Capturing RAW data in Android 2.2(HTC Desire)

2010-09-06 Thread uday
, just check my app. The vOICe for Androidhttp://www.seeingwithsound.com/android.htm On Sep 6, 10:38 am, uday uday.pic...@gmail.com wrote: So you have hard coded in manifest.xml file for the field screenOrientation=landscape am i right?? Do u able to get the correct preview in Landscape

[android-developers] Camera Preview Zoom in Android

2010-09-06 Thread uday
Hi All, I've a problem with Camera Preview Zoom.. The methods present in Android 2.2, setZoom() is not working to zoom the preview.. Is there any another way to do the Zoom in android?? Im using the code present in the Android API Demos.. Is ther any body who has worked on implementing ZoomIn

[android-developers] Re: Capturing RAW data in Android 2.2(HTC Desire)

2010-09-05 Thread uday
and not very memory hungry as long as you do image processing on preview images from PreviewCallback. Regards The vOICe for Androidhttp://www.seeingwithsound.com/android.htm On Sep 5, 6:20 am, uday uday.pic...@gmail.com wrote: Do u have any idea of how much memory of raw data will generate

[android-developers] Re: Capturing RAW data in Android 2.2(HTC Desire)

2010-09-04 Thread uday
The vOICe for Androidhttp://www.seeingwithsound.com/android.htm On Aug 31, 6:30 pm, David Erosa García soul...@gmail.com wrote: On Tue, Aug 31, 2010 at 6:17 PM, uday uday.pic...@gmail.com wrote: Hi All, I'm facing problem when capturing RAW data in Android Froyo. Im using HTC Desire

[android-developers] Re: Capturing RAW data in Android 2.2(HTC Desire)

2010-09-04 Thread uday
the image in smaller (raw) chunks. On Sep 4, 1:11 pm, uday uday.pic...@gmail.com wrote: Thanks Blindfold.. So do u got any information regarding this?? What ever it may be the resolution currently Android is not able to do the Raw image capture.. am i right?? On Sep 1, 1:07 am, blindfold

[android-developers] Regarding partnership opportunity with MobiQpons to monetize your app.

2010-09-01 Thread Uday Sandhar
Hello App Developer, My name is Uday Sandhar and I am the VP of Marketing for MobiQpons Inc. MobiQpons is a geo-targeted mobile offers platform that empowers location and non-location based mobile application and game developers to reward and incentivize their users while monetizing their apps

[android-developers] Capturing RAW data in Android 2.2(HTC Desire)

2010-08-31 Thread uday
Hi All, I'm facing problem when capturing RAW data in Android Froyo. Im using HTC Desire(5MP) device. in the method of PictureCallback rawCallback = new PictureCallback() { public void onPictureTaken(byte[] data, Camera camera) { } the data im

[android-developers] Re: GPS Co-ordinates if the mobile is off

2010-08-26 Thread uday
of the location returned by the device using cellphone towers informations. Yahel On 23 août, 13:09, uday uday.pic...@gmail.com wrote: Hi All, Is it possible to get the GPS Co-ordinates if the mobile is in off condition??? -- You received this message because you are subscribed to the Google Groups

[android-developers] GPS Co-ordinates if the mobile is off

2010-08-23 Thread uday
Hi All, Is it possible to get the GPS Co-ordinates if the mobile is in off condition??? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Intent not opening correct ativity

2010-08-23 Thread uday
Did u mentioned your Activity class in Android Manifest.xml file?? On Aug 23, 4:25 pm, Pedro Teixeira pedroteixeir...@gmail.com wrote: I'm sorry, I wasn't explicit, that's true. The intent is inside a   dialog box which has just a simple feedback message for the user. And   it's supposed to

[android-developers] Re: Data backup in android

2010-08-02 Thread uday
Hey guys.. please respond to my mail On Jul 27, 8:59 am, uday uday.pic...@gmail.com wrote: Hi Folks, I want to backup my application's data in Android Cloud's Storage. I have some questions regarding this, 1) To backup the data it needs Backup Transport. What will happen if the Backup

[android-developers] Data backup in android

2010-07-26 Thread uday
Hi Folks, I want to backup my application's data in Android Cloud's Storage. I have some questions regarding this, 1) To backup the data it needs Backup Transport. What will happen if the Backup Transport is not present on the Android device?? 2) Will Android Backup Service provides any Backup

[android-developers] Re: Regarding the new BackupManager

2010-07-24 Thread uday
Will android Backup Service provides the Backup Transport when registering application with Android backup service for doing Data backup?? On Jul 23, 9:58 pm, Dianne Hackborn hack...@android.com wrote: Currently there is no support for third party backup transports. On Mon, Jul 19, 2010 at

[android-developers] Re: Regarding the new BackupManager

2010-07-24 Thread uday
Hackborn hack...@android.com wrote: On Sat, Jul 24, 2010 at 3:53 AM, uday uday.pic...@gmail.com wrote: Will android Backup Service provides the Backup Transport when registering application with Android backup service for doing Data backup?? Sorry, I'm not sure what you are asking here

[android-developers] Re: Regarding the new BackupManager

2010-07-23 Thread uday
If the backup transport is not available on the device, then is it possible to provide a backup transport by the Android Backup Service? If the service is not providing any backup Transport then the backup operation is not happened on the device?? To do this operation is it necessary to login

[android-developers] Re: Will data remain after updating android os in mobile phones

2010-07-13 Thread uday
Hi Guys, Is android will wipe the preference variables data when the application version is upgraded?? On Jun 25, 3:44 pm, santha uday.pic...@gmail.com wrote: Thanks for the information. But in my application i want to backup the data when clicks on Factory Reset.. for that purpose i

[android-developers] Re: How to set the default download files location

2010-07-13 Thread uday
... If your requirement for PDF in Android is urgent, you may think of compiling iText for Android yourself - depending on whether the license terms allow it. Hope this helps. Regards, Priyanka On Jul 4, 9:45 am, uday uday.pic...@gmail.com wrote: Files downloaded from browser by default

[android-developers] Re: How to set the default download files location

2010-07-05 Thread uday
in Android is urgent, you may think of compiling iText for Android yourself - depending on whether the license terms allow it. Hope this helps. Regards, Priyanka On Jul 4, 9:45 am, uday uday.pic...@gmail.com wrote: Files downloaded from browser by default they are stored under sdcard

[android-developers] Re: How to set the default download files location

2010-07-05 Thread uday
in Android is urgent, you may think of compiling iText for Android yourself - depending on whether the license terms allow it. Hope this helps. Regards, Priyanka On Jul 4, 9:45 am, uday uday.pic...@gmail.com wrote: Files downloaded from browser by default they are stored under sdcard

[android-developers] Re: How to set the default download files location

2010-07-05 Thread uday
in Android is urgent, you may think of compiling iText for Android yourself - depending on whether the license terms allow it. Hope this helps. Regards, Priyanka On Jul 4, 9:45 am, uday uday.pic...@gmail.com wrote: Files downloaded from browser by default they are stored under sdcard

[android-developers] Re: How to set the default download files location

2010-07-03 Thread uday
into the device's internal memory if the internal memory is high??? On Jul 2, 9:35 pm, Mark Murphy mmur...@commonsware.com wrote: On Fri, Jul 2, 2010 at 8:50 AM, uday uday.pic...@gmail.com wrote:  From my application i can able to download the files from the internet. but the files

[android-developers] How to set the default download files location

2010-07-02 Thread uday
??? Thanks in advance.. Uday kiran pichika -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr

[android-developers] Re: Accessing External Database

2010-03-25 Thread uday kiran
this?? http://WebAddresss:Port_num/DATABASE_NAME/Table_name/ if im giving like this is it going to work properly??? Is it compulsory to use XML files with REST webservice?? Waiting for ur help... Cheers Uday Kiran Pichika Bob Kerns wrote: Brion gave some good suggestions, so let me address

[android-developers] Re: Accessing External Database

2010-03-22 Thread uday kiran
databases which class we need to use?? If u have any related code regarding this please let me know... Expecting more information regarding example code... Thanks in advance --Cheers Uday Kiran Pichika On Mar 19, 8:22 pm, Bob Kerns r...@acm.org wrote: No, you get a different set of headaches

[android-developers] Re: Accessing External Database

2010-03-19 Thread uday kiran
driver in place of Webservices On Mar 19, 1:16 am, Bob Kerns r...@acm.org wrote: On Mar 18, 2:37 am, uday kiran uday.pic...@gmail.com wrote: - So for communicatingdatabase(On remote server)  from our application - it is compulsory to write a driver like odbc??? No, ODBC (or JDBC

[android-developers] Re: Accessing External Database

2010-03-18 Thread uday kiran
way to use HTTP to build a web application. On Mar 17, 9:40 pm, uday kiran uday.pic...@gmail.com wrote: Thanks Bob, I got very good information from this... Let me explain thing i want to do.. There is adatabasepresent at some IPhttp://10.117.23.45/databases/database.db I want

[android-developers] Accessing External Database

2010-03-17 Thread uday kiran
for the information in advance.. Cheers Uday -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr

[android-developers] Re: Accessing External Database

2010-03-17 Thread uday kiran
Thanks for ur quick reply jim.. I want to access an existing database which is present on some server.. Cheers Uday On Mar 17, 6:51 pm, Jim Blackler jimblack...@gmail.com wrote: Hi Uday Is there an existing, specific external database that you wish to access? Or do you wish to set up a new

[android-developers] Re: Accessing External Database

2010-03-17 Thread uday kiran
YES..The database is present on the internet only.. The database should be in SQLite..OS is windows.. On Mar 17, 6:59 pm, Jim Blackler jimblack...@gmail.com wrote: OK what can you tell us about this database. Is it on the internet? What software is it running? On 17 March 2010 13:54, uday

[android-developers] Re: Accessing External Database

2010-03-17 Thread uday kiran
As of my knowledge in android we use HttpURLConnection to connect to the database in the internet.. am i right Jim?? On Mar 17, 7:05 pm, uday kiran uday.pic...@gmail.com wrote: YES..The database is present on the internet only.. The database should be in SQLite..OS is windows.. On Mar 17, 6

[android-developers] Re: Accessing External Database

2010-03-17 Thread uday kiran
OK... u have any example code which is used to work on this concept?? On Mar 17, 7:11 pm, Jim Blackler jimblack...@gmail.com wrote: Provided the database exposes an HTTP-based API, yes. On 17 March 2010 14:09, uday kiran uday.pic...@gmail.com wrote: As of my knowledge in android we use

[android-developers] Re: Accessing External Database

2010-03-17 Thread uday kiran
okk. i may get the quick reference if i go to http://developer.android.com site?? Where this funtionality is to be added in android code?? in onCreate() method? On Mar 17, 7:16 pm, Jim Blackler jimblack...@gmail.com wrote: Hi Uday, I have to bow out here because this is too general a question

[android-developers] Re: Accessing External Database

2010-03-17 Thread uday kiran
for the information in advance.. Cheers Uday On Mar 18, 4:26 am, Bob Kerns r...@acm.org wrote: Please don't do this. You really, really don't want to do this. I've written about this before -- it's the wrong way for a lot of reasons -- security, interoperability, performance, maintainability

[android-developers] screen Oroentation

2010-02-17 Thread uday kiran
Hi guys.. In my application i want to do Screen Orientation public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); setContentView(R.layout.screen1_landscape); } This is the function that im using in

[android-developers] Screen Orientation in Android

2010-02-16 Thread uday kiran
Hi All.. Im facing some problems on Screen Orientation in android. In my application one screen contains Name,Age(as EditTexts). When i click on Name EditText internal Keypad is opening and some of the buttons are hiding due to that keypad. I have some questions regarding this. 1) Whether i need

[android-developers] Re: Switching between activities

2010-02-14 Thread uday kiran
Hi TreKing.. Thanks for the reply..sorry im using EditTexts to enter the data..the information is not retained. i will send both XML file and .java file and let me know the bug in my files. On Feb 11, 11:36 pm, TreKing treking...@gmail.com wrote: On Thu, Feb 11, 2010 at 2:55 AM, uday kiran

[android-developers] Re: Switching between activities

2010-02-14 Thread uday kiran
/TextView.html#a... On Feb 11, 10:36 am, TreKing treking...@gmail.com wrote: On Thu, Feb 11, 2010 at 2:55 AM, uday kiran uday.pic...@gmail.com wrote: What i want to do is.. in Activity1 which is in Screen1 i have entered some data like Name,Age (all are in textview) Are you sure it's TextView

[android-developers] Switching between activities

2010-02-11 Thread uday kiran
help me out Its very urgent.. Thanks for the information in advance --Cheers Uday -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] Unable to upload multipart file HttpURLConnection Chunked Streaming Mode is giving broken pipe exception.

2009-07-29 Thread uday
Hi , I am trying to upload video to you tube using java.net.HttpURLConnection with setChunkedStreamingMode(8*1024) property and content type is multipart/binay; and even i tried chunked also. I am getting following exception. If i don't use setChunkedStreamingMode this property output stream is