Posts by Glauco Oliveira • 170 points
13 posts
-
3
votes5
answers19908
viewsA: .NET C# IIS Request cancelled: Failed to create secure channel for SSL/TLS
Hello, I went through the same problem but trying to download a file from a site running in the background with the C#language. In order to download the file using the Getresponse() method of the…
-
1
votes1
answer389
viewsA: Write a Json string to the database c#
Hello, in my humble opinion, you could use the Entity framework for database access. Would create a class: public class Products { int codigoProduto {get;set;} int quantidadeProduto {get;set;}…
-
1
votes3
answers84
viewsA: scrollTop in Fullscrenn jQuery
To solve your problem just replace the code: $('html,body').animate({scrollTop:$('.backTop').offset().top}, 150); for this $('#leitor').animate({scrollTop:$('.leitor_top').offset().top}, 150); For…
jqueryanswered Glauco Oliveira 170 -
1
votes1
answer381
viewsQ: Get information about a data table through SAP
In SAP we have the SE11 transaction where it is possible to view and change characteristics of a data table, it would be possible to export to a txt or csv file the following information: Column…
-
3
votes1
answer531
viewsQ: SQL select with dynamic Where in ABAP
There is the possibility to create a select with dynamic Where in the abap language?
-
1
votes4
answers1242
viewsA: Error with "Cordova run android"
To fix this error, just install android studio. And the same without taking charge of configuring these system variables.
-
1
votes1
answer424
viewsA: How do I change the authorization group of a table generation screen?
To change the authorization group, just follow the following steps: Call transaction se11 after opening it is necessary to pass the table name and click on modify. then enter utilities option(top…
-
-2
votes1
answer424
viewsQ: How do I change the authorization group of a table generation screen?
I want to change the "group authorizations", but I can’t edit an already built screen.
-
1
votes0
answers38
viewsQ: How do I remove 3 special characters in a string variable, using regex?
Language used is c#, how do I remove 3 special characters in a string variable, using regex? example: (11) 2134-2135 expected result: 112132135…
-
0
votes1
answer52
viewsQ: Creating C# method, where do the parameters contain?
What is the point of adding "?" in front of the parameter variable? Example: public void somar(int n1, Date data?){ } OR public void somar(int n1, Date? data){ }…
-
0
votes2
answers301
viewsA: Consuming web service wsdl . net framework 2.0
After several tests, I discovered the error because the configured url in the project was http , when actually the web service used the https url. It was enough to change to https and the…
-
1
votes2
answers301
viewsQ: Consuming web service wsdl . net framework 2.0
When generating the request with all the correct parameters I have error return 307 Temporary redirect. Someone knows tell me what this error represents ?
-
0
votes0
answers149
viewsQ: Error 407 when connecting in proxy
I am trying to communicate with a web service and my machine uses internet via proxy. When initiating web service communication, proxy authentication error. How can I get the user and password I use…