Click here to Skip to main content
15,916,288 members

Comments by Viswanatha Swamy (Top 26 by date)

Viswanatha Swamy 16-Mar-20 0:14am View    
@João Henrique Braga,
Good morning.
1. Are you trying to develop Windows Forms project and want to save to File Service?
2. Are you trying to develop Web Project and want to save to Server?
3. Are you trying to develop a solution where you want to save the documents into the database?

Please advise. Many thanks.
Viswanatha Swamy 14-Mar-20 10:19am View    
+1
Viswanatha Swamy 12-Mar-20 10:05am View    
Looks like the issue is with the route you are using in .ts file.
return this.http.post(this.ApiUrl + '/register/login', user)

I assume it should be "/login/login" instead of "/register/login". Becuase your API method has only [Route("login")] has route. Many thanks.
return this.http.post(this.ApiUrl + '/login/login', user)
Viswanatha Swamy 12-Mar-20 9:58am View    
I am working on it. Let me try your code on my laptop and let you know. Give me some time. Many thanks.
Viswanatha Swamy 12-Mar-20 9:53am View    
@Eliza,
I the server-side the up and running. I assume it should work when we use a postman. Please advise if your postman is going through?