Android :: Droid Could Not Access Published Rest Service / Solve It?
Nov 18, 2010
I published the rest service.. but the android app is showing null pointer exception.. but if it access my local machine's service its working well.. the service hosted has anonymous access..
this is my android code...
View 1 Replies
Sep 24, 2010
I need to pull data from a REST web service in my android app. The web service requires authentication.
I need to first call a login method, which will return me an authToken and JSESSIONID as part of the response header. I need to pass these items back with every request. I'm currently using: org.apache.http.impl.client.DefaultHttpClient.DefaultHttpClient() to call the login method. I can see the authToken and JSESSIONID are being returned in the response header.
Are there any existing tools or classes that might provide some sort of management functionality that I can easily integrate with my android app?
View 1 Replies
View Related
Sep 18, 2009
I had the program I wrote a service, and in service has written a timer, change the timer for one minute cycle time, but why the program in the phone standby (screen lock) were time, I have the timer will be stop running, when I click the menu, get back to normal mode when the timer will automatically have to run? What is the reason, how to solve?
View 2 Replies
View Related
Nov 6, 2010
I've a problem with my android application.
I'm using a background service (with notification on the status bar) which performs an audio sample every hour. To perform this sample I generate a broadcast event every hour and when I capture the event the audio recording starts. During the day, when I'm using the phone, I've no problems. The strange behavior happens during night, when it seems like if the phone goes to an "idle" state: the broadcast events are no more processed. From the log file I understood that the events are generated and putted in a queue... and when I start using again the phone, all those events are raised in the same moment.
Do u have any idea about how to solve this problem? How can I force the phone to continue processing my events? do I have to set any variable of flag to avoid the phone going in this kind of "idle" state?
View 1 Replies
View Related
Aug 31, 2010
I have a WCF REST service built with C# and it returns an image as part of a CPU intensive operation. The client is running on Android (Java) By default, it will return a text JSON object that looks something like this:{"d",[9,0,77,12,11,...]}Those are they bytes of the image. Fine. However, all the solutions for decoding this JSON are intolerably slow. I've tried Gson, Jackson, and the built-in Android JSONObject class. I have no idea why they are so slow.As an alternative solution, I have my REST service return a GUID, and then that GUID can be used by the Android client to go to a regular URL that serves up the image as a regular binary stream, via an MVC controller. This works well, and it fast, and is pretty easy to handle on the Android side. However, it does feel like a bit of kludge and kind of a violation of the REST design principles.
View 4 Replies
View Related
Jun 11, 2010
Retrieving data from the REST Server works well, but if I want to post an object it doesn't work:...
View 3 Replies
View Related
Jul 29, 2010
i want to call REST Web Service from application.
View 7 Replies
View Related
Jul 22, 2009
How can I access the rest of the stuff in the drawable folder, such as the Android emoticons? I can use many of what is in the drawable folder by doing "drawable.XXX" but not all of them are available when I do that.
View 2 Replies
View Related
Oct 27, 2010
i am trying to send a json string from my android client to my .net Rest service...
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://myURL");
JSONObject json = new JSONObject();
json.put("name", "i am sample");
StringEntity str = new StringEntity(json.toString());
str.setContentType("application/json; charset=utf-8");
str.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,"application/json; charset=utf-8"));
post.setEntity(str);
HttpResponse response = client.execute(post);
Response is bad request. am i sending the json object as string? is this code correct?
View 2 Replies
View Related
Aug 2, 2010
So after updating to the latest OTA update tonight I cannot access the Android Market. I keep getting this error message "Attention. An error has occurred. Please try again later." Does a hard reset solve this?
View 1 Replies
View Related
Jan 12, 2010
I want to use the WCF(.net) service for login authentication.Please tell me ASAP, the easiest way to do it.
View 3 Replies
View Related
Oct 22, 2010
I want to access a web service in android web application.But I don't have any idea.
View 3 Replies
View Related
Mar 17, 2010
One day I randomly came across a phonebook on my phone of all my facebook contacts who have published there phone number (after I upgraded to 2.1). I have not been able to find it since. How do I find it?
View 3 Replies
View Related
Aug 10, 2010
Is there any Opensource REST / RESTful Client / Library for Android ? Please share me the links.
View 7 Replies
View Related
Nov 22, 2010
I am trying to access a service in other package, but not able to get the binder.code...
In the ExampleActivity i am accessing the service by doing
but onServiceConnected( ) is not getting called, so i am not able to get the binder. But process everything is going fine , in the Eclipse console i am able
I tried with serComponent( ) & serClassName( ) as well, but for both the cases onServiceConnected( ) is not getting called. I googled and used the hint for listening boot completed and user present intents and starting the service in the broadcast receiver.
how can i access the service of other package (process).
View 2 Replies
View Related
Apr 19, 2010
I have a service that i need to access across multiple Applications. Can anyone tell me how this can be done?
View 6 Replies
View Related
Apr 30, 2010
I defined a remote service over a AIDL file. Now i want to access this service in a different application. But how can I do that? The AIDL file is not accessible in my second application, and if i just copy the AIDL file, then the service can't be found.
View 1 Replies
View Related
Aug 17, 2009
Is there any way, to access the CallLog from a service or BroadcastReceiver?
View 2 Replies
View Related
Jun 22, 2010
I'm passing in parameters and returning string values, but all I receive is: org.apache.http.conn.EofSensorInputStream. Do I need to do something special in my web service to access the parameters being passed?
View 1 Replies
View Related
Jun 18, 2010
I have created a service which exposes few AIDL defined interfaces. I want to access this Service from an application with different package. I have no clue how to achieve this. I want to see an example on this.
Unfortunately all examples I see has client application in the Service package it self:(
Could you please share some sample/example code on this?
View 7 Replies
View Related
May 4, 2010
Is there a way to access the currently active window belonging to a different process from a background service and be allowed to modify some of its properties such as the transparency?
View 2 Replies
View Related
Jun 23, 2010
Ive set an in a running service a handler which does operation every X time. Now after certain time i wanna start an activity from that service, and in onCreate of the activity i wanna access that handler of the service(which started the acitivty) and stop it's schedualed operation
(mHandler.removeCallbacks(someTask));
any idea how will i access the handler which is in the service? the service and the called activity are in the same proccess.
View 1 Replies
View Related
Mar 19, 2009
In my Android app, a Service runs in the background and logs GPS readings to a database. The user sees an Activity that presents them with radio buttons. I'd like to also log their currently selected radio button to the database. How can I access the radio button object from the Service?
View 1 Replies
View Related
Sep 16, 2013
Log file that show you the name of the app and time when they accessed a location service ? Or maybe there is already an app who are up to date on this thing.
View 4 Replies
View Related
Aug 30, 2012
It has being weeks that I published my Pashto Dictionary application. It is visible in playstore by some operations(ISPs) but not in all. When I search for my application at home; I cant find it but I can find it when searching at office. In both cases; I use my Laptop without plugging my device. (I search in play.google.com)
View 1 Replies
View Related
Feb 27, 2009
I am coding a basic android application that has to call a web service, using KSOAP2, I am sending a request with one parameter (city) and need to get the response of the web service (basically a short String) from this site:
http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather
When execultin the application, I only get a message: "This application has stopped unexpectedly". When debugging, I am getting the following error:
Thread [<3> main] (Suspended (exception VerifyError) And: ViewRoot.handleMessage(Message) line: 1198 that says: Source not Found And shows a button allowing to: Edit Source Lookup path. What does this basically mean?
My source code that generates the is the following:
private static final String SoapAction = "http://www.deeptraining.com/ webservices/GetWeather"; private static final String MethodName = "GetWeather"; private static final String Namespace = "http://www.deeptraining.com/ webservices/"; private static final String URL = "http://www.deeptraining.com/ webservices/weather.asmx";
And the main part of it: SoapObject request = new SoapObject(Namespace, MethodName); request.addProperty("City", cityname); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope (SoapEnvelope.VER11); envelope.setOutputSoapObject(request); HttpTransport androidHttpTransport = new HttpTransport(URL); try { Result.setText("... Processing ..."); //error here: androidHttpTransport.call(SoapAction, envelope); ...
I am using Eclipse with Android plugin and KSOAP2 library.
View 2 Replies
View Related
Oct 23, 2010
I'm having a problem while accessing a web service through ksoap2 library, is there any other way to access the web service. I can't use ksoap2 library for my project. Should I create a soap library or any other way.
View 3 Replies
View Related
Nov 16, 2010
I have just published my application and would to be able to provide a link on my website that will show my application? Also, if they browse to my website on their phone, is there some kind of link I can add that the user can click on that will take them to the market to download my app?
View 7 Replies
View Related
Nov 23, 2010
Does anyone know the step by step settings to put your app so it can show up in the 2.1 market? My app has been in the market for a few days, and a couple 2.1 users says that they cannot find it. It shows in the 2.2 though. Can someone help?
View 1 Replies
View Related
May 11, 2010
I have a free app published in Android market. I have lost the certificate used to sign the current version but I want to publish an updated version. Android market refuses to accept my upgrade because it is signed by a new certificate. I realize the users will have to uninstall the current version to get the upgrade but it's not clear how to get the updated version into the market so that the current users will find it.What are my options?
View 1 Replies
View Related