frameworks

Entity Framework 4.0 // Attributes on Relationships

I've tried both "Model First" and "Generate Model from Database". I have a basic example outlined below (DDL shown). There is a M:N relationship between Employees and JobTitles. An Employee can have several JobTitles. This alone is trivial using the edmx visual designer. However, I want to put an attribute (scalar property) ~~on the r...

What do I use for a J2ee website?

Not sure if I asked this correctly. I am trying to see what I need to create an website that uses MVC and that connects to legacy multiple databases, brining back those database info into one page. I wanted the site to be MVC but am not sure where to begin. Do I use Spring? What do I use for an server? Jboss and apache? Hibernate? ...

How do you connect to MySQL and Oracle in CodeIgniter?

I am confused as to how to configure CodeIgniter to use more than one database. I have data in an Oracle database retrieved via PDO and a MySQL db which is using the "built in" configuration for CI. From what I can see, I only have the main configuration file that allows me to config one database (in this case the MySQL one) How do I ...

What PHP framework provides the most feature-rich authentication and/or access control?

I am currently exploring Zend_Auth, part of Zend Framework, but am dissapointed with the lack of more advanced features such as nonces, authentication tokens, lock-out, etc. In one of my recent projects, I implemented an authentication and ACL (Access Control List) scheme that has the following features: Salted hashes Automatic IP addr...

getting error while converting traget framework of an asp.net web application from 2.0 to 3.5

Hello, While converting the taget framework of an asp.net web application from 2.0 to 3.5 in visual studio 2008, i am getting the error : Exception of type 'System.Runtime.InteropServices.ExternalException' was thrown Please help. ...

trying to get XUI working

I am trying to get javascript framework XUI working, but having trouble getting it to work on any desktop browser. More on XUI here... http://xuijs.com/documentation <script type='text/javascript' src='xui-more-1.0.0.min.js'></script> <!-- <script type='text/javascript' src='xui-bb-1.0.0.min.js'></script> --> <script> x$('button'...

GWT/Web Java offline application example

Hi, Could you link me with some examples of application wrote in GWT, or other Java Framework that works offline? I tried to ask google, but unfortunately i couldn't find anything. For example: installation of this app contains installing tomcat/jetty, and when i want to start it, server is started first, then some portable browser ...

Whats the best general purpose PHP framework?

I know there may be a better framework depending on what type of project you are working on. However, if I just wanted to learn one PHP framework, which one would be the best all-purpose solution? Or should I just not use a framework like I have been doing? ...

Framework for polling and storing results of external data sources

We have a need to poll a number of external data sources. The data sources initially are SOAP web services, but they might be in future RESTful web services, flat files, or other things. The polling period needs to be configurable (ideally per-data-source). The returned data initially is XML, but in future it might a line from a file ...

Horizontal scalaibility in a Spring based messaging application.

Hi Techies, I work on Spring based messaging application. We are undergoing a scalable tests for our product. However the application is not scalable horizontally after a certain limit. We are finding out the code points to be modified but would like to get an expert comment/pointers in order to make changes in the application. Can th...

design for continuation based python web appliction framework

There are many continuation based framework for java, ruby etc but none in python. Nagare framework somewhat solves the problem but it do not use standard python and uses stackless python to solve continuation problem. I was wondering, what part of standard python constraint to create such continuation web framework in standard python...

Entity Framework

Hi i have Entity Model with lets say 3 entity's like so all related of course: 1.-----Costumers------- CustomerId CustomerName 2.----CustomersOrders----- CustomerId OrderId Total 3.---Orders------ OrderId OrderName And I want to display orders of some costumer in GridView like so: ----------|---------- OrderName|Tota...

Should I give up on frameworks if I have legacy databases?

Everywhere I turn it seems that frameworks (in any language) are tailored to new implementations. It also seems that using ORMs with the frameworks with legacy databases is not a normal thing to do. I have databases, some 20 years old that I need a web front end on all of them some on separate web pages, some combining databases on one...

Question about building own (PHP) MVC framework

Hi people, At this time I want to build a MVC framework. Everything is going fine but now I got a problem between controller and view. Hope you can help me. My MVC is not so different from MVC, it uses the same concept, but technically I got an issue. The question is: how to take data from the controller once the view is loaded? Bear ...

I'm overwhelmed by the number of tutorials for codeIgniter. Shall I switch to it from cakePHP?

Recently I have started studying cakePHP and I love the way it's organized. But I don't seem many useful tutorials for it as codeIgniter. Am I missing anything? Shall I switch? PS I'm a computer engineering student and have only little time to study web dev. so i need to save time. ...

Weird iPhone static framework device-specific behavior with random NSString reads.

I am getting a weird behavior on the iPhone device where it reads random strings it seems to have in memory or stored away somewhere and putting them where they don't belong. For example I have a navigation controller in the project and I put this in my code: self.navigationItem.title = @"Title"; And the title shows up as some other s...

Zend Cache - problem with deleting cache files

I have an strange problem with Zend Cacke (File Backend) running on linux with apache and php 5.2 The files are stored in /myspace/tmp1 Directory has the persmission: drwxrwxrwx 2 nobody nogroup 8192 2010-09-20 13:35 tmp1 The created temp file has the following permissions: -rw------- 1 nobody nogroup 317 2010-09-20 13:40 conten...

What are GAE compatible JSP site-building frameworks?

What are Google app engine compatible JSP site building frameworks? (like zend for php) ...

What is the difference between a language and a framework?

Can someone give me a clear, concise definition of the difference between a programming language and a framework? I have scoured the web and been unable to find an adequate definition. For extra credit, is it possible for a language and a framework to become so inextricably linked that there IS no difference, or is there such a clear l...

HtmlPage.Document.QueryString within a UserControl.

A) If I check the querystring within a Navigation Page, things work great. B) But if I check the querystring within a UserControl (which is delcared in the Navigation Page), the querystring shows it is empty. Question) If there a way to check for a querystring by the UserControl (i.e. a child control who ultimately has a Navigation Pag...