enterprise

C# Enterprise Block Application Settings and Settings.Settings designer

I am working with v4 of the Enterprise Application block and I am trying to learn how to access the Application Settings that I have added using the Enterprise Library Configuration tool. It's as if the code does not recognize the settings even though I can see them in the app.config. I DO have a Settings.Settings designer added and I ...

SQL Cache Dependencies

Why SQL Cache Dependencies is not given in Enterprise Library (any version)? Does anyone know how to implement a sql-dependency with the caching application block? ...

Why NotNullValidator does not work?

Hello, I'm using Microsoft Enterprise Validation. But in this case the test passes, even if i assign null value to that attribute. Why? [NotNullValidator(MessageTemplate = "Cannot be null!", Ruleset="validate_x")] [StringLengthValidator(10, RangeBoundaryType.Inclusive, 40, RangeBoundaryType.Inclusive, Ruleset="validate_x")] ...

ObjectValidator problem

Hello, I'm having problems with [ObjectValidator]. So, i have: public class UserBO { public int ID { get; set; } [NotNullValidator(MessageTemplate = "Can't be null!")] [RegexValidator(@"[a-z]|[A-Z]|[0-9]*", MessageTemplate = "Must be valid!", Ruleset = "validate_username")] [StringLengthValidato...

Why Java is used by most banks?

Hi guys, I noticed that most banks use Java at the server-side to run the web apps. Why is that? What makes Java better than PHP, ruby, python..etc for banks or enterprises? Thanks in advance. ...

Is it possible to install SQL Server 2005 (enterprise edition) on Windows Server 2008?

Is it possible to install SQL Server 2005 (Enterprise Edition) on Windows Server 2008? ...

Anyone using Django in the "Enterprise"

I know that the word “enterprise” gives some people the creeps, but I am curious to know if anyone has experience creating enterprise applications, similar to something like say… Java EE applications, which are highly concurrent, distributed applications with Django? I know Java has its own issues but its kind of viewed as THE enterprise...

Switching to silverlight for enterprise application ?

After 9 month developing an enterprise application using MVC + JQuery our Management and stockholders interesting to convert and switch to silverlight! they think it's more powerful than Ajax, make development speed faster than our current solution, It's Windows and Web and less headache. Unfortunately, our stockholders dos not know an...

UML modeler for Native C++ with CLI interface Rational Rose Replacement

We have been using Rational Rose 2000 or so for modeling since i guess 2000 or so and were looking to upgrade, however when I looked at the license cost I wondered if it was still the leader in UML for C++ code generation. Further complicating the mater our interface layer is now c++/CLI and we would like to be able to generate that as ...

Is it possible to make agile work for platform development?

Is it possible to make agile work for platform development? Picture a set of dev pods each responsible for a unique functional area of a platform. Now picture 2-4 app dev teams that use the platform to build software apps to the public. How do you make agile work in this scenario? ...

Is iPhone enterprise deployment appropriate for distribution to members of an association?

I've had a query about developing an app for members of an association and I can't determine from the Enterprise Deployment guide if this is an appropriate method for deploying the app. Members own their own devices, so can an enterprise app be deployed while allowing the users to continue to use their own Appstore logins? At any point...

Git-Based Source Control in the Enterprise: Suggested Tools and Practices?

I use git for personal projects and think it's great. It's fast, flexible, powerful, and works great for remote development. But now it's mandated at work and, frankly, we're having problems. Out of the box, git doesn't seem to work well for centralized development in a large (20+ developer) organization with developers of varying abil...

Known Issue? PropertyGrid shows empty DropDownList on Windows Server 2008 Enterprise

Running the following 39 lines of a minimal Windows Forms PropertyGrid shows an unexpected behavior on a Windows Server 2008 Enterprise machine: using System; using System.Windows.Forms; namespace MinimalPropertyGrid { public sealed class SomeType { public Kind Kind { get; set; } } public enum Kind { ...

Update RHEL 5.1 to 5.4

Hi all, I have a server currently running RHEL 5.1, and I would like to upgrade it to RHEL 5.4. The server is not connected to the Internet, so I don't think I can use "yum update". How would I be able to upgrade my server, and is it just a small-scale upgrade, like Windows patches, leaving everything on the server intact, or would it...

Logging Application Block-Microsoft Enterprise Library 4.1

In Logging Application Block in Logger.Write it takes event id as one of the parameter which is integer.So how to decide what should be passed as event id? ...

enterprise compiler issue

I was trying to compile something on my pc with IBM XL C/C++ Enterprise Edition V8.0 for AIX I got a error like: "aaalib.c", line #... something else: It refered to a variable that isn't initialized here. It works fine when compiled with gcc in linux. But I still would like to know why or if anyone has experienced something similar....

Decimal rounding strategies in enterprise applications

Well, I am wondering about a thing with rounding decimals, and storing them in DB. Problem is like this: Let's say we have a customer and a invoice. The invoice has total price of $100.495 (due to some discount percentage which is not integer number), but it is shown as $100.50 (when rounded, just for print on invoice). It is stored ...

Method for finding memory leak in large Java heap dumps

I have to find a memory leak in a Java application. I have some experience with this but would like advice on a methodology/strategy for this. Any reference and advice is welcome. About our situation: Heap dumps are larger than 1 GB We have heap dumps from 5 occasions. We don't have any test case to provoke this. It only happens in t...

How to join a wireless network from an iphone

How can I search for Wireless Network (and connect it after and change settings ) within an iPhone Application? Is it possible? Any ideas would be appreciated! Cheers guys and gals Sam ...

Cloned Cached item has memory issues

Hi there, we are having values stored in Cache-Enterprise library Caching Block. The accessors of the cached item, which is a List, modify the values. We didnt want the Cached Items to get affected. Hence first we returned a new List(IEnumerator of the CachedItem) This made sure accessors adding and removing items had little effect on ...