frameworks

Zend Framework: count() returns 1 on empty result with findManyToManyRowset(...)

Hi :) While working on a small shop application i fetch all colors of an article using Zend Framework's "findManyToManyRowset" functionality. Example: $colors = $article->findManyToManyRowset('Shop_Colors', 'Shop_ArticlesToColors'); Some of the articles don't have and colors assigned. I test it using count($colors) on the ...

PHP frameworks with AJAX scaffolding?

Does someone know of any PHP frameworks which can create scaffoldings with AJAX? ...

.NET Framework 4 ilasm targeting framework 2

Hi! Question: I need to create, USING ILASM.EXE, framework 2.0 assemblies. So far, I have seen that fw 2 ilasm: creates 2.0 assembies. FW 4 ilasm, on the other hand: creates 4.0 assemblies. So far I am cool. Now I need to know: is there a way (perhaps an argument) that can be used to make fw 4 ilasm to create fw 2 assemblies? Thank y...

Struts2: How do I tell my index.jsp to forward to a struts2 action?

Oftentimes when I see an index.jsp on a web application it just forwards to another url like login.jsp such as <jsp:forward page="login.jsp" /> When using struts2, I want a similar index.jsp but I want it to forward to an action. How do I do this? ...

Logging from .NET framework internals (Logging.On)

I’m debugging some unexpected behavior and while tracing in to the .NET framework I see a bunch of stuff like this: if (Logging.On) { Logging.PrintInfo(Logging.Web, this, SR.GetString(SR.net_log_n_certs_after_filtering, filteredCerts.Count)); … } But (as expected by default) the execution step...

Which companies/websites are using the wicket framework?

I am currently evaluating wicket for the use of a rich intranet application, and I am very curious if there are big projects/websites which take the use of the apache wicket framework? There are only a few mentioned on the wicket homepage. (Beside that, I am only aware of a big german publisher for scientific literature which uses wicke...

When does a framework stop being a framework?

So I'm trying to classify my application and have run into an issue: What type of program is it? The shortened version is an pluggable and hookable IRC program. It has Hook management, plugin management (for writing in different languages), a database persistence layer, and a nice GUI. Setup and external access is through a single contr...

Anyone using ZooP framework for PHP?

Hi! I'm just wondering if anyone else is using ZOOP (http://www.zoopframework.com)? If so, what version are you using, and what positive/negative experiences did you have? I'm using it for about a year now, and I'm somewhat dissatisfied. There never was any documentation, and the framework has been frozen since 2008. The framework itse...

Is there a framework for data access in PHP?

I'm a .net developer by trade but I'm looking to expand to PHP. I really like what I've seen PHP can do. However I have been somewhat spoiled with data access in .net (such as LINQ) and how easy it is to make strongly type datasets. Are there such ways to do the same (or similar ) thinks for data access in PHP? A framework I'm unawar...

GPGPU before CUDA and OpenCL

I've been reading about CUDA and OpenCL and have learned that before these frameworks developers could only use low level APIs like OPENGL and D3D. Unfortunately I haven't been able to find much information about it. Was it a widespread or commercial practice or was it just something they used in research and military labs? I'm sure so...

Create submenu with Zend Navigation

Is it possible to create a submenu in Zend Navigation? At this time i've got this in my application.ini: resources.navigation.pages.indexHome.label = "Home" resources.navigation.pages.indexHome.controller = "index" resources.navigation.pages.indexHome.action = "index" resources.navigation.pages.indexLogin.label = "Login" resources.navi...

Choosing technologies for building Ajax RIA framework with scaffolding

Building decent RIA data-intensive crud-like application is still hard. In spite of existence tons of frameworks. I'm going to build my own framework for such kind of applications. One of key requirements is scaffolding (generating UI from model). Another is .NET server-side. I know about asp.net dynamic data, oracle ADF, fornax/sculpt...

WPF and XP, 2000 etc. being sure?

How can I sure that WPF is compatible in XP or an older OS. Is the only thing is Framework version or that could be any other things that must be installed? ...

Experience with CodeIgniter 2 vs Kohana?

Derek Allard recently announced that new projects should use CodeIgniter 2.0 whose code is well baked and it is fully PHP5. What concerns me though is the process seems ad-hoc, there was no beta though he recommends this as being stable for all future code and it is still making updates off 1.x instead of a rewrite. There is also littl...

Twitter API + OAuthConsumer.framework

Hello, I am working on a test app to help me better understand the way oAuth works with the Twitter API for a bigger app I would like to write, however I am experiencing an issue posting messages to the API after successfully getting an access token. I am using the OAuthConsumer framework as it seemed to be the easiest way to work thro...

Adding GraphicsMagick to an Xcode project

Hi, I have created a Foundation Tool in Xcode, and want to use some functions from the GraphicsMagick image manipulation library. The library has been compiled and installed on my computer using MacPorts. I added libGraphicsMagick.3.dylib and libGraphicsMagickWand.2.dylib to my project as external frameworks. What other steps must I ta...

Unable to cast the type 'System.String' to type 'System.Object'. LINQ to Entities only supports casting Entity Data Model primitive types.

I am using EF 4 but it is giving me error when I try to order my list. Unable to cast the type 'System.String' to type 'System.Object'. LINQ to Entities only supports casting Entity Data Model primitive types. This is my code to get the experssion by entering the property name, example below get the Customer Name var param = ...

Risk evaluation for framework selection

I'm planning on starting a new project, and am evaluating various web frameworks. There is one that I'm seriously considering, but I worry about its lasting power. When choosing a web framework, what should I look for when deciding what to go with? Here's what I have noticed with the framework I'm looking at: Small community. There...

Android PreferenceActivity instance.

How can I find my PreferenceActivity instance, which was created by a framework? * * * My first class. /** This is MyAppSettings class, The instance of this class will be created by a framework **/ public class MyAppSettings extends PreferenceActivity { protected MySeekBarPreference mSeekBarPref; @Override protected void...

Generating a CSR with Security framework on iPhone app?

Anyone know how to generate a CSR from within an iPhone app to send to the CA? If its not part of the security framework, then how is iPhone suppose to get certificate that authenticate it against a CA? Thanks much! ...