validation

How to get all validation Errors from SAX-Parser?

Hello, i would like to get all validation Errors from the SAX-Parser, but with my snippet i only receive the first. How can i achieve this? Thank you! Snippet def factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI) def xml = new StreamSource(inputStream) def xsd = new StreamSource(new FileReader(schema), systemId)...

Is it possible to set the max-length of a data member in WCF

Is it possible to set a requirement in WCF that a specific string datamember have a maximum length? I'm essentially wanting to do some basic validation, and enhancing the implicit documentation that WSDL gives you. I'm pretty sure that its possible when writing raw WSDL, but am not sure if you can do it in WCF using attributes etc. An...

jQuery Validation Highlighting One Label for Two Fields

I have a form validation script using the jQuery Validation plugin where for the phone area, there are 2 fields, area code and phone number. However, there is only one label for both fields that reads "Phone." Both fields are required in the validation. So when there is an error in the phone field, the label gets highlighted and the er...

Validate an Xml file against a DTD with a proxy. C# 2.0

I have looked at many examples for validating an XML file against a DTD, but have not found one that allows me to use a proxy. I have a cXml file as follows (abbreviated for display) which I wish to validate: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.018/InvoiceDetail.dtd"&gt; <c...

jQuery Validate - "Either skip these fields, or fill at least X of them"

I'm using the jQuery Validation plugin on my forms. I have some groups of fields that are optional, but need to be either "all or nothing" - if you fill one input in a group, you must fill all of them. For example, imagine the user can input one location - street, city, state, and zip - or multiple locations. You don't have to enter a ...

API for Sending SMS to Mobile Phones from Website

I'd like to include user validation in my web app, to prevent the user from creating many accounts. For example, when a new user signs up, they must enter a mobile phone number, receive an SMS, then enter a confirmation code. Is there a service or API out there that automates/simplifies this process? Thanks! ...

Validating html with php

Something is wrong with my print "<option value..."; line of php code. It keeps generating error messages: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified <option value = Addition>Addition</option> <and so on...> Okay, so how do i fix this line of code: //foreach loop to cycle t...

How do I validate a property that needs to access a repository in xVal?

I'm trying to use xVal to validate the registration of a new user. I've ran into a buzz saw when trying to implement the logic that checks to see if the user name that the new user is trying to register with is already taken. I can't seem to find a way to accomplish this without having my User entity have a dependence on my UsersReposito...

Validate DOM manipulation when using Selenium

I'm using Selenium to test my application. A nice test would be that after every DOM manipulation I would validate the DOM. Is there a nice way to do this? Obvious ways are: use some builtin Selenium function. Is there one? get the HTML of the DOM after the manipulation and use a local validator. However, I can't see how to get the HT...

ASP.Net + MVC + VS 2008

Can anyone advise what is the best way of client and server side validatio. Either we go for Data Annotation if it support with VS2008. Or go with Jquery ... Can anybody guide me as well any example, link is appreciated. ...

jQuery; Submit Form if Required Fields Filled in and Other Combinations Are True

Hello. I have a form with dozens of fields. Some are required, some are not. With the fields that are required, I have added class="required" to the item I found this snippet of code and was wondering how to adjust it $('#form').submit (function() { if(formValidated()) return true; return false; }); I only want to submit the...

Validation Layer in MVC pattern

Where is the best place to validate data which will be used by model. For example, think about registration form. We have some data which come from registration form. So where is the best place to verify this data.We should check every data by if statements or special validator class, and this means lots of coding, so i want to learn whe...

able to cause an exception on webportal server after setting webbrowser's javascript to disable

(i am a software tester, not a software developer. i am testing a software developer's webportal (tomcat) / database (mysql) software) In the client webbroswer, I have to have cookies enabled (default) and javascript enabled (default) in order to log-in. I am using FF3.5.5. Once successfully logged in, I then disable the javascript s...

jquery validation plugin, specify rules

I found the jquery validation plugin (http://plugins.jquery.com/project/validate) and thought that this would be a good way to validate my forms on the client side. (I'm also doing server side validation). The plugin want me to specify the validation rule for each field in the class tag. I'm using my class tag for styling my fields, can ...

Is there a GOOD reason many web sites won't accept credit cards with spaces and dashes in them?

Is there a technical/legal/financial/contractual/design reason for not accepting credit card numbers with spaces in them? So many web sites do not allow you to put spaces or dashes in a credit card number. I've always put this up to sloppy programming, but I've used merchant APIs before. If you can figure out how to process a credit c...

xml version 1.0 encoding utf-8 in php?

Hi, I am trying to show xml version 1.0 encoding utf-8 in php, I have tried : echo '<?xml version="1.0" encoding="utf-8"?>'; but this doesnt validate on w3c, when using it in xhtml, the php shows an error. Whats the easiest way to fix this? With it validating Thanks error on w3c: Line 5, Column 46: character "'" not allowed in p...

Silverlight: How to style the validation tooltip?

I did some searching but it wasn't what I was looking for. So, does anyone know a way how to style the validation tooltip in Silverlight(the thing in the green border)? Any help would be greatly appreciated! Best Regards, ~K ...

How to fire xval validation when the data of text is generated dynamically?

Hi, I do have three text box, where all are required field. which is tightly coupled with a model Name* : Age* : Check Button Date* : //This is a hidden filed Continue Button When i click on continue button all the validation error messages will get displayed. i am entering the Name and Age then click on Continue. then the validatio...

Redirecting errors nicely without so much copy/paste?

If I have a view that handles the management of friends, meaning there is a view to handle adding, removing, blocking, unblocking, and accepting/denying invitations to become friends. The problem I have run into is when I try to provide meaningful errors to users who end up at a url they shouldn't be at. For example if User1 and User2 a...

WPF validation: how can I skip validation for elements that are disabled?

I'm fairly new to WPF. In our current project, we've added validation rules for all data entry fields that we need validation for. We have also copied code (also posted elsewhere here at stackoverflow) that recursively loops over all bindings and their validation rules, in order to know whether or not all the data is valid before saving ...