Posts by Otavio Souza Rocha • 545 points
57 posts
-
0
votes2
answers223
viewsA: Receiving JSON Data - PHP
Do it like this, change the line: $json_ActiveOrder = json_decode($retorno_ActiveOrder); for: $json_ActiveOrder = json_decode($retorno_ActiveOrder,true); This will make the $json_ActiveOrder…
-
1
votes1
answer84
viewsQ: Doctrine prepare->execute
Hi, I’m doing this consultation with Doctrine $retorno = $em->getConnection()->prepare(" SELECT t.id_programa_fidelidade_diario, t.loja, t.nota, t.data, t.ecf, t.operador, o.nome,…
-
1
votes1
answer99
viewsA: Authenticate Angular with Steam
Try to disable your firewall, if it doesn’t work try to run on another machine or a professional hosting. It could be Xampp or Wamp too
-
0
votes1
answer361
viewsQ: Java - read XML from a URL
I have a function that reads XML and it works 100%, the problem is that when I try to read an XML that is online on my server I cannot. Follows code: public int lerXml() throws JDOMException,…
-
0
votes1
answer345
viewsQ: Java - Change XML and then read
I have an application that writes in an XML and one that reads, the two work well separately, but the problem is that when I write in XML, the other application keeps reading without updating the…
-
1
votes1
answer274
viewsQ: Java - Add information in XML file with Jdom
In this code an xml file is created and an element is inserted: comentarios = new Element("comentarios"); myDocument = new Document(comentarios); comentario = new Element("comentario");…
-
2
votes1
answer74
viewsQ: Access a method that is outside the thread
I have a video running in my application and a Thread running a Socket(server), all within the same class, but I need this Thread to access a method that is outside of it. To be more exact I want to…