All Questions

1
answer

UDP destination address and ports do not appear

I'm creating a page that tracks UDP packet traffic on my machine with PHP . My intention was to get the list like this: ____________________________________________________________________________ | Proto | Endereço local |...
asked on 29.07.2016 / 17:27
1
answer

Problem Returning Items in a Relationship in the Entity Framework

Speak Personal All right!? I'm going through the following problem in the entity framework that I think is some error I'm having at the time of relating two classes: I have a class called: RequestPathPathIndexPath that is related to a clas...
asked on 04.08.2016 / 02:54
2
answers

cURL - Consuming webservice with PHP

I have the following code: $url_data = "http://localhost:8080/sistema/webservice/agenda/consultarHorariosDisponiveis"; $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded')); curl_seto...
asked on 19.07.2016 / 14:37
1
answer

Submit form to a php script and open a modal once it is submitted

I have a form that already does the validation of the fields, but I wanted that when I clicked the send button it sent the data to the file recebe.php and already opened a modal that I created. Here is the code for my form: <form...
asked on 23.07.2016 / 17:49
1
answer

Compile directives from the Controller

I have a table that is rendered dynamically when passing an array of data to it. I have access to the data of each "row" as follows: { "data": function (data, type, val, meta) { return "<div style=\"color:green;\">" +...
asked on 29.07.2016 / 21:54
1
answer

Detached exception in associative table

I'm finding the following problem when making a certain registration: Exception in thread "main" javax.persistence.PersistenceException: org.hibernate.PersistentObjectException: detached entity passed to persist: br.com.arena.model.Pessoa...
asked on 15.07.2016 / 17:55
1
answer

Checking and creating folders in python

Hello, I'm creating a code that should check if a folder exists, if it does not exist the code should create it and then proceed, otherwise just follow with the flow. I tried with If and While but I did not succeed. Most of the time it cre...
asked on 09.07.2016 / 05:48
2
answers

EntityFramework .AsEnumerable () or .ToList ()?

In one of the projects I got I saw the following code, which implements a data-listing method of a given entity, but this listing is read-only: /// <summary> /// Listar todas entidades /// </summary> /// <returns></returns...
asked on 03.08.2016 / 20:23
2
answers

Problem creating relationship with user class (IdentityUser) using IdentityFramework

When I create any relationship with my user class: namespace Modelo.Cadastro { public class Usuario : IdentityUser { [StringLength(250, ErrorMessage = "O nome de usuário deve conter no mínimo 3 caracteres", MinimumLength = 3)]...
asked on 25.07.2016 / 20:30
2
answers

Update HTML Table with PHP

I have a page that is giving select in php in a Firebird database and returning the result in table form. My interest is to update the prices of a table to quote price, how do I click on the cell and update the price and send it to the bank o...
asked on 27.07.2016 / 21:12