validation

Invalid list value for State field while adding or editing Bugs in TFS 2010 Beta 2

I am trying to create/edit work items through the TFS API in my Windows application. I get an error "Invalid list value for State field" when I try creating a new Bug itself. The process template has been only slightly modified from the "MSF for Agile Software Development v5.0 - Beta2" process template. \ Shouldn't it accept "Active", "...

Spring webflow validation

Hi, complete and utter newbie on spring webflow (and indeed, spring mvc). 30 minutes in... got the first page of my flow appearing, which happens to be a captcha, an input field and a submit button. The actual captcha value is stored in session and i need to validate that the input field values matches the value in session. In order to...

Why does my XSD file fail to parse with XML::LibXML?

I am trying to validate an XML against schema using LibXML::Schema Validator CPAN module. In that same script am using XML::DOM CPAN module to parse the XML. I want my script to take XML file validate it against XSD and parse it. When I try to run the script, after validating against xsd it exits and does not parse XML. I want it parse...

Validate object based on external factors (ie. data store uniqueness)

Description My solution has these projects: DAL = Modified Entity Framework DTO = Data Transfer objects that are able to validate themselves BL = Business Layer Services WEB = presentation Asp.net MVC application DAL, BL and WEB all reference DTO which is great. The process usually executes this way: A web request is made to the W...

Jquery - validation - Rules

Hello! I use JQ - validation plugin to validate my form. But i dont know what kind of validation rules in jquery! Could you suggest me a page where i can read about rules? I have two field, NAME and AGE, and i want it to validate for REQUIRED, MAXLENGTH, NUMBER /CHAR, MIN, MAX rules: { new_name: { required: true, maxlengt...

Should we validate method arguments in JavaScript API's?

I'm developing a JavaScript library that will be used by 3rd party developers. The API includes methods with this signature: function doSomething(arg1, arg2, options) arg1, arg2 are 'required' simple type arguments. options is a hash object containing optional arguments. Would you recommend to validate that: - argument types are val...

jQuery validation per multiple fieldsets, how to use different event to trigger validation per section

Hi All! I have a really, really long form (about 300 fields) that I broke down into different sections using this slick jQuery plugin Form Wizard. If you group your form into different fieldsets, the FormWizard will automagically display one section at a time, with a Next hyperlink to take you to the next section: <a id="step0Next" ...

Validating Multiple Textbox Date with jQuery Validate

I'm trying to write a custom method to validate a date. The date however exists in three text boxes. Furthermore, there may be multiple instances of this date. <div class="customDate"> <input class="month" id="dob_Month" maxlength="2" name="dob.Month" type="text" /> / <input class="day" id="dob_Day" maxlen...

verifying a WCF signed SOAP message

I have a problem verifying a SOAP message timestamp and body. Before starting to write any code I'm trying to verify it by myself, these are the steps I followed to verify the timestamp: 1) Extract the timestamp tag, add any used namespace and write it to a file: <u:Timestamp u:Id="uuid-cd1febd3-a76a-4148-8a3e-367aee62293d-1" xmlns:u=...

ASP.NET MVC ValidationSummary For Client Side Validation

Our server side validation (via data annotations) is working great and posts the errors in our ValidationSummary how we like it. The client side validation also works, however the errors display to the right of the control and the validation summary never displays. Is there an easy way to make the client validation display to look like...

Is it possible to do validation on a form item that isn't part of the model?

So I've got a signup form and part of it is billing/credit card info. That info is all stored and processed by a third party app and so the data isn't stored in our database. So how can I still run the items through the validates_ methods in Rails? (validates_presence_of, validates_length_of, etc etc) Or am I going about validation in ...

"ghost" form submissions

I have a 3-part registration form using PHP: page 1 : collects info - has client & server side validation (for blank and invalid fields) page 2 : collect more info - has server side validation (for blank and invalid fields) page 3 : saves (db) and sends (email) the registration information More info: page 1 : saves all form informati...

form validation with javascript vs php

Why should I bother to use JavaScript for form validation when I still have to use PHP since the user could have JavaScript support turned off. Isn't it unnecessary? Update: Ok thanks for your answers. it sounds like a good idea to have it on the client side too. where can I download good JavaScript validations? Do you know where I c...

ChangePassword control and setting regular expression for new password

This seems like it should have a simple solution but I can't seem to find it. I'm using the ChangePassword control in an ASP.NET 2.0 application, using both the ChangePasswordTemplate and SuccessTemplate to define custom styling. The textboxes have IDs as follows         Current Password Textbox ID = CurrentPassword              New Pa...

WPF Datagrid - How to validate multiple rows and mark all invalid ones?

Hi, I have a datagrid with rows where the validation depends on his siblings. So far I'm using BindingGroups and a custom ValidationRule to validate multiple rows a the same time. But I can't figure out how to change the appereance of the invalid row entries. I return a ValidationResult and my grid gets a red border but my style gets ign...

WCF String DataMemeber fails with special characters.

Hi guys, I have a simple DataContract structured in this way: [DataMember(EmitDefaultValue = false, IsRequired = true, Name = "TablePath", Order = 1)] public string TablePath { get; set; } The Value that I try to insert is something like that: %PATH%\%SPECIAL%\file.txt And I receive this message using the WCF Test Client UI...

Parsing Schema in Java With imports and includes?

I'm attempting to parse load a rather complicated XML schema into a Schema object in Java so I can do some validation on XML messages. My code looks similar to this: SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); Schema schema = factory.newSchema(new StreamSource(new File("schema/schema.xsd"))); ...

asp.net validators still posting back

I'm using the default validation that comes with .NET The problem I am having is that even with JavaScript enabled on my browser, a basic validation is still allowing postback. <asp:TextBox ID="TextBox1" runat="server" /> <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="RequiredFieldValidator" C...

Which is simplest, easy to use for non programmer, cutomizable jquery form validation plugin ?

Which is simplest, easy to use for non programmer, customizable jquery form validation plugin ? I don't need ajaxable . i need simple plugin ...

Bind Button.IsEnabled to custom validation with XAML?

I am sorry I didn't know how to title my question any better, you name it if you got a good 1. I have an entity Contact. this person has navigation properties: Address, Phones (A collection of Phone). They all implement a custom interface that exposes a property IsValid. In the contact edito form I have an OK button, I want its IsEnab...