Posts by LeoPinheiroDeSouza • 491 points
20 posts
-
0
votes1
answer830
viewsQ: How to load an FTP server image from the URL?
I have a JSF application in which the images the user uploads are stored in an FTP directory. The simplest way I found to render these images is by placing the FTP URL, with user and password in the…
-
1
votes1
answer413
viewsQ: Cielo Checkout - Certificate error
I am deploying your java checkout solution on my local machine for testing purposes. The code I am using is available in the developer at Cielo. Follows the code: public String envia() { String…
-
6
votes3
answers13394
viewsQ: PHP application does not log into the facebook app by localhost
I’m developing a PHP application that returns the list of facebook user friends. Although I specified the domain and site URL in the Facebbok app I created, I get the following message: The given…
-
5
votes2
answers2851
viewsQ: Check if user closed browser
Would there be a way for me to know when a user closes the browser and, before closing, record in the bank that their session is inactive? Or, how can I make some external program that monitors if…
-
1
votes1
answer308
viewsQ: Deployment of more than one . War in the root context of Glassfish
I have two applications that I need to deploy to Glassfish and I would like to know how to put both in the root context of the same Glassfish. I know that to put an application in root context, I…
-
1
votes1
answer1815
viewsQ: Error using Javamail with Office365 account
I have a Java class that works perfectly to send emails through a Gmail account. However, even using the recommended settings to send an email via SMTP with Office365, an error is returned. The…
-
1
votes0
answers133
viewsQ: Error setting Jquery Fullcalendar property when user changes date
I need to change the property minTime of vision agendaDay of FullCalendar dynamically, as the user changes the date. I’ve tried the following: dayRender: function(event, element, view) {…
-
1
votes2
answers160
viewsA: CSS error in Jquery Fullcalendar when using Google Chrome
I got an answer in Stackoverflow in English that solved the problem. I simply had to remove the final semicolon, leaving the code: $(this).closest('tr').css('background-color', '#FFFFFF'); Follow…
-
1
votes2
answers160
viewsQ: CSS error in Jquery Fullcalendar when using Google Chrome
I’m working with the Jquery library FullCalendar and I have a function that paints certain calendar lines according to one condition. The function works perfectly in Internet Explorer, but in Goolge…
-
0
votes1
answer47
viewsQ: Error compiling Dagger 2 in Eclipse
I am studying the project example of the official website of Dagger, which can be accessed in this link: https://github.com/google/dagger/tree/master/examples/simple/src/main/java/coffee. I am using…
-
0
votes2
answers1247
viewsA: Change the color of a specific time slot in Fullcalendar
The solution that best met my problem was the one suggested in this link of Stackoverflow in English:…
-
2
votes2
answers1247
viewsQ: Change the color of a specific time slot in Fullcalendar
I’m working with the view scheduleDay on Fullcalendar. I have a function that blocks when the user clicks on specific time slots on specific days (these values are recorded in the bank). I wonder…
-
2
votes1
answer546
viewsQ: Security issue when uploading
I have an application built with Codeigniter that uploads image files to a directory on the server. Running on the localhost works perfectly. When on the official server, an error is returned when…
-
2
votes1
answer72
viewsA: Javacv applet does not display video in the browser, only on the desktop
Following the advice of user Andrew Thompson, I enabled the display of the Java console and could see several JRE security blocks. So I added the following lines in the java.policy file and it…
-
2
votes1
answer72
viewsQ: Javacv applet does not display video in the browser, only on the desktop
I am developing a web application that connects to a security camera via Javacv. The applet I developed runs normally on the desktop, but when I try to run in the browser, although it does not give…
-
4
votes0
answers80
viewsQ: View video with Javacv using applet
I’m using an applet that displays a security camera image through Javacv. Running alone, the applet displays the video perfectly. When I run the applet in my web application, it even renders the…
-
1
votes2
answers297
viewsA: Connect D-link DCS-932L Camera with opencv
I checked in Stackoverflow that Opencv does not work well with stream in mjpg format. I also found in the English forum an excerpt of code used Javacv. This worked perfectly for me, with the same…
-
0
votes2
answers297
viewsQ: Connect D-link DCS-932L Camera with opencv
I’m trying to connect Opencv with a D-Link DCS-932L IP camera. IP, password, user and port are correct, but nothing works. I believe the error is in relation to the URL format. Below follows the…
-
6
votes1
answer1928
viewsQ: How to connect DVR camera in Java?
I’m having a question, I’ve searched the internet but I can’t find anything consistent: how to connect with a DVR camera (not IP camera) using Java? I already use Opencv and can connect on IP…
-
1
votes1
answer144
viewsQ: Paypal IPN for recurring cancellation payment
I got the following code from Paypal’s git hub. I am making recurring payments and would like to receive notification in the system when there is cancellation. Thus, I could block the provision of…