Posts by Nataniel Soares Rodrigues • 155 points
12 posts
-
2
votes2
answers4316
viewsA: Problem to run IIS Express on my network
How I solved this thanks to the tip from GOKU SSJ4 First we had to install the IIS so just access control panel / Programs and Features / Enable or Disable Windows Features and mark Internet…
-
1
votes2
answers4316
viewsQ: Problem to run IIS Express on my network
Hello I’m trying to run the IIS do Visual Studio 2015 ASP.NET Empty Web website to work on my network so I changed this file ...\Documents Visual Studio 2015 Projects meuProjeto . vs config…
-
0
votes1
answer204
viewsQ: Error making javascript request
I’m trying to make a request in this format $.get("http://meuurl.com/webservice", function (data) { console.log(data); }).fail(function (data) { console.log(data); }); But I get this mistake Failed…
-
-1
votes1
answer561
viewsQ: How to send a file to google drive from my Android app
How can I send a file to Google drive through my Android app, I’m making an app in Android Studio and need an API to send files to google drive
-
0
votes1
answer78
viewsQ: Error trying to post a php page through Android Studio
Error 03 - 12 18: 44: 46.688 23858 - 23891 / com.natanielsoares.eceller E / AndroidRuntime: FATAL EXCEPTION: AsyncTask #3 Process: com.natanielsoares.eceller, PID: 23858 java.lang.RuntimeException:…
-
1
votes1
answer233
viewsQ: Doubts about the datagridview
Hello I have some questions about the datagridview of visual studio, I would like to know how I can change the values of the columns that appear to Foreign key of sql server by the value of the…
-
1
votes1
answer223
viewsA: Web service does not access my classes
I was able to solve guys, the problem was that it was missing to put an empty constructor in the class, I do not know why this happens but that was what was causing the error, maybe because at the…
-
0
votes1
answer223
viewsQ: Web service does not access my classes
I am building a web service, previously it was already working normally but the scripts were all in one package, so I decided to organize in different packages my scripts however now my web service…
-
1
votes1
answer202
viewsA: I cannot return Web Service value to PHP
I managed to solve using the following code <?php require_once 'lib/nusoap.php'; $client = new nusoap_client('http://localhost:8009/ExemploWS/services/UsuarioDAO?wsdl',true);…
-
0
votes1
answer202
viewsQ: I cannot return Web Service value to PHP
I have tested the web service through Soapui and it is working normally returning the values. XML of the web service This XML file does not appear to have any style information associated with it.…
-
0
votes2
answers343
viewsQ: How is crud to update the records in SQL Server by Visual Studio C#?
I am using this code, it does not error but does not update the data public static int attLoja(LojaVirtual loja) { int resposta = 0; using (OdbcConnection conexao = ConexaoPadrao.CreateConnection())…
-
8
votes3
answers11171
viewsQ: How to return the ID of a record right after it is inserted?
I am making a Java application in conjunction with a Mysql database and would like to know what would be the best command to return an auto database increment ID right after the record is inserted.…