Questions tagged [server-side-validation]

119 questions
1
vote
0 answers

Problem With .Net MVC5 Validation - Errors don't go away when they are Fixed

I am having an issue with my validation with my .Net MVC5 form. When I submit my form I get the validation summary as well as the validation messages under each field that's invalid. The problem is when I start entering information into the fields,…
1
vote
0 answers

How to do server side validation of sign up form in django?

I am new to django and I have create a sign up form and its working but when I try to validate password fields to see the if password1 and password2 is matched then I get error. For instance, if my password1=12345678 and password1= TY123456 then I…
kodder360
  • 99
  • 7
1
vote
0 answers

consumables IAP: Differentiating two different app users against one iTunes account

I am implementing in app purchases for a few consumables products called GEMS. My app has its own server which keeps tracks of user information, including the gem count. I am concerned about the following situation: User A logs in the app and…
iqra
  • 1,061
  • 1
  • 11
  • 18
1
vote
1 answer

Git hook equivalent in RTC SCM

We have Gitlab configured like following: If anyone pushes their code, first sever side git hook (pre-receive) will trigger SonarQube Quality checks, if any error in code it rejects that push. Also checks for file types, if some files like .zip, .o…
1
vote
1 answer

redux Form 7.4.2 Server side validation not working with axios , gives error Unhandled Rejection (SubmissionError): Submit Validation Failed

I'm working with reduxForm 7.4.2 , I want to do Server side validation using reduxForm I found many similar question , but not found useful answer so I ask it again. Express Server gives error in proper format (status 400 : Bad Request) , But…
Saurabh Mistry
  • 12,833
  • 5
  • 50
  • 71
1
vote
1 answer

What to return when Server Side validation fails

I am currently using client-side HTML validation for all my forms. This includes things like Quantity must be a positive integer and Price must be non-zero. I have enforced this on the client-side, and am also doing it on the server side. But now I…
1
vote
1 answer
1
vote
2 answers

PHP code inside HTML value attribute

there! I want to do a database search and display the result back to the user in a pre-populated HTML form. I located the exact part in the code that is not working but I can't understand why PHP is not picked by the server. I'm using UwAMP. To…
1
vote
1 answer

Server side error message display from process page to index page in php

I have to display a server-side validation error message which is working perfectly if I write both codes(HTML and PHP) on a single page. Now I have index.php and process.php pages. I have to pass server-side validation error message from…
Naren Verma
  • 2,205
  • 5
  • 38
  • 95
1
vote
0 answers

How to properly save and validate model objects with other nested objects in Ember.js?

Let's say the user creates a new Person with a few PhoneNumbers. Everything is done through a single form, where you can dynamically add as many PhoneNumbers to the Person as you want. The user clicks the save button and whole form gets submitted to…
1
vote
1 answer

Server side validation ColdFusion 9?

I have one question about my server side validation. I'm passing the arguments in my cffunction. Some of these arguments are FROM values populated by the user and some of them are hidden values that I have populated from data base. Hidden values…
1
vote
2 answers

Use server side and client side validation simultaneously on a single form in C#

I have a form (in aspx page) where I am using server side validations (validation controls) and jQuery validations on the same form. On Textboxes I am using server side validations and on submit button I am using jQuery validation. I having problem…
Neha Thakur
  • 351
  • 1
  • 12
  • 37
1
vote
2 answers

Server side validation is done with data annotations instead of doing client side validation

while I was working with validation in MVC, and I wrote a custom attribute to validate a property.Initially the client side validation was not working since attribute was not registered.When i clicked on the save button after contacting the server…
1
vote
1 answer

Reference existing javascript files for server side node.js validation

I have a situation in which I'd like to reuse some existing JavaScript (Knockout.JS) validation that I use on the client side to re-validate some models (JSON) on the server side. I'd like to introduce a Node.JS web application to handle this,…
1
vote
1 answer

What is the proper python method of server-side verification for non-managed Google Play In-App products?

I've searched everywhere for a clear example of how to verify In-app products on our server in Python. We have a game with several In-app products and we're experiencing a large number of fraudulent receipts. We would like to verify the…