Posts by roque • 423 points
14 posts
-
0
votes0
answers50
viewsQ: Ioexcepion on Samsung to get Media Player file
I’m having a little problem, I’m running a video in the background of a layout, in other devices works normal but in Samsung I can’t access the video and take the Exception java.io.IOException:…
-
0
votes2
answers96
viewsQ: Server instance restuful in Tomcat
Staff developed an app - https://play.google.com/store/apps/details?id=br.com.apprioconcurso I am using a server restfull connection to the postgree bank in Hibernate. This server is hosted in…
-
2
votes2
answers2823
viewsQ: How to send notification without opening the application
I need to send a notification every time someone requests friendship. How to create this notification I already know but I made a test app that sends through the action of a button. In this case the…
-
6
votes2
answers182
viewsQ: How to send and receive bitmap on restful server
Staff did a search and found very little content, I would like some tips because I never did it. How do I send and receive a bitmap to a server? Send with Json? Convert to Base64? What is the best…
-
1
votes1
answer151
viewsQ: Error while picking facebook profile picture
Guys I’m trying to get the fb profile image but returns the following error java.io.Filenotfoundexception: No content Provider:…
-
2
votes1
answer3047
viewsQ: Login with facebook in Facebook
I am logging in fb only with js using facebook sdk. The login part is doing right, but for some reason only returns me name and id. It is not returning e-mail and other attributes I need. My code…
-
7
votes1
answer393
viewsQ: Ajax function does not pass the Success
My function calling my web service var email = document.getElementById("email").value var senha = document.getElementById("senha").value $.ajax({ url:…
-
9
votes1
answer817
viewsQ: Spring Security, display message when log out
I am controlling the session of my application with Spring Security, I have two rules to end the session, max-Session <session-management> <concurrency-control max-sessions="1"…
-
1
votes1
answer97
viewsQ: Search Locations by category
I’m using the google Places api that returns a JSON, managed to search for sites by lat and long and also by placeid, now I need to search the site for tipo/categoria for example: restaurant, gym,…
-
1
votes1
answer639
viewsQ: Crawler to log in to the site of nota fiscal paulista
What I got so far is this: package br.com.crawler; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputStreamReader; import java.net.URL; import…
-
0
votes1
answer41
viewsQ: Google maps v2 is returning "INVALID_REQUEST"
I’m trying to use the Google Places API, and I’m getting INVALID_REQUEST when trying to access it. This is the url I’m using:…
-
1
votes1
answer188
viewsQ: Crawler to make pagination
I need a Crawler who makes pagination on a website. I’m reading the source code and generating a txt that way public class CodFonte { public static void crawler(String str) throws IOException { URL…
-
0
votes0
answers255
viewsQ: Login with facebook app android
I am creating an app that login with facebook, already downloaded the sdk facebook imported in ecplise, I created my project and now I need to import, so far so good I followed this tutorial…
-
1
votes0
answers56
viewsQ: Integration with facebook login
I am developing an application and need to login with Facebook I did some research and I saw that you can do with the Client OAuth 2.0. But when I send the url request to return a token I take the…