Posts by Rayan Pereira de Lima • 146 points
15 posts
-
4
votes1
answer1068
viewsA: Publish React.js windows server
It was enough to execute npm run build and copy the generated items in the build folder to the desired server (in my case IIS).
-
1
votes1
answer1068
viewsQ: Publish React.js windows server
I have an application developed with React + React-Redux and now that it is finished I need to publish. But when searching about it I didn’t find anything that explained or had a step by step how to…
-
0
votes0
answers462
viewsQ: Consuming C# Web Api with Reactjs
I am trying to consume a Webapi created in C# webApi2 in an application created in reactJs, when I request the Api using the browser or Postman I have the information returned, but when I try to do…
-
1
votes1
answer84
viewsA: wcf c# error while accessing directory
The service WCF was showing a generic error message, switched to show a more specific message and found that it was user problem as they said earlier, to resolve this I created a user on my machine…
-
0
votes1
answer84
viewsQ: wcf c# error while accessing directory
I’m writing a service WCF using c#. In one of my methods I try to access a directory on the network (any command like directory.Exists() or directory.GetFiles()) and I get the following mistake:…
-
0
votes2
answers736
viewsQ: System.IO.Ioexception: The user name or password is incorrect
I built an application using Asp.net where in a few moments of the application I need to access a directory and scan files and sometimes move and delete them. On my micro worked perfectly, but when…
-
0
votes1
answer1658
viewsA: Remove the last value found inside a string
SELECT substr('28/30/56',Instr('28/30/56', '/',-1) +1 ,2), '10%60%30%', '12 dias' FROM DUAL; The substr takes a certain "range" within a string, already the Urge looks for the position of a…
-
0
votes2
answers124
viewsA: Registration form
Html5 has a property for components called required. This makes the field required. You can see more of this at this link: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_required…
-
0
votes0
answers115
viewsQ: Web API (C#) copies files from external directory
I have a Web Api in C# . net framework. In this application I have a method responsible for copying some files to a local directory, where I have my frontend. The problem I’m having is that my web…
-
0
votes0
answers734
viewsQ: SQL username and password
During the installation of SQL Developer 17.3.1 on Ubuntu 16.04, it did not ask user and password. In this case I cannot log in, is there any default user or some way to configure a user?
-
2
votes1
answer888
viewsQ: SQL Developer does not run on Ubuntu
I’m trying to run Oracle SQL Developer on Ubuntu and when it arrives in the image part below the execution gets stuck. I searched the internet but couldn’t find anything that could help me. Someone…
-
0
votes0
answers85
viewsQ: Pass generated Java code to another page within the <script> tag
I have two functions one prepares the data and makes a call to Ajax and within the call to Ajax has a callback to another function. According to code below: function…
-
0
votes2
answers299
viewsQ: AJAX javascript, PHP post does not work
Good morning, I’m created a code Java to send data using AJAX to a PHP page,my problem is that the POST is going empty to page I’m calling. This only happens when I call the Javascript (AJAX)…
-
3
votes2
answers923
viewsQ: Constructor php
I’m trying to create a class with a constructor but it is returning me this error. I tried to do something similar to Java since I do not program in PHP still, but is returning me this error:…
phpasked Rayan Pereira de Lima 146 -
1
votes1
answer608
viewsQ: PHP PDO for SQL SERVER
Good afternoon, I am trying to connect with my PHP pages in MS SQL SERVER using PDO, but I am having difficulties. I tried to use the PHP manual, but I’m getting confused and I’m not getting it. The…