lifecycle

Trigger-Method of WebControl is not fired

this is my scenario: i have a page with a placeholder. the page adds dynimcally different kinds of controls (we wan't to display some data - getting the id via querystring or postback, as we also have a tree) to this placeholder. the added controls all, more or less, contain a textbox (name of the displaying element), checkbox (active-st...

What are the life cycle methods of a Java Server Page?

What are the life cycle methods of a Java Server Page? ...

Where can I find a good detailed tutorial on the lifecycle of a page request?

A good detailed tutorial on the lifecycle of a page request. I've read up on the ASP.NET page lifecycle, I am talking about things that happened before the .NET process starts to handle the request. i.e. domain typed into browser, DNS mapping? etc. ...

AJAX postback and page lifecycle

Could anybody explain me how it works. I have a page, which has button inside the update panel and some class member (_pageContext). It is not static member, by the way That's its declaration internal PageContext _pageContext = null; When I click the button, next events occurs (I trace them making breakpoints) 1) Page constructo...

Desktop Application Longevity

Say if you had to develop a huge windows desktop app what language/technology you believe will be supported longer by MS (or by its manufacturer if not MS product)? What language/framework would give the app greater longevity without the need to be adapted or rewritten in order to run on newer versions of windows as they are released? ...

What is the best book for java based software engineering?

Is there any book that covers and explains the following things well altogether? Software Engineering with Java in general, the concept and what to notice ... etc life cycle with java commonly practiced developing methods Best Coding Convention Version Control (and tools) Builds (and tools) tests (I think it's Junit here) Code Review (...

WSS 2.0 lifecycle (when does support stop?)

When will Microsoft stop supporting WSS 2.0? For my current project we have the choice to migrate our code to WSS 3.0 or continue to use WSS 2.0. Depending on Microsoft's support policy our customer will have to make a choice. I already looked on the Microsoft Lifecycle website, but WSS 2.0 isn't listed. Maybe WSS 2.0 is considered a pa...

Where can I find a detailed view of the lifecycle of a Windows Service as developed in .NET?

Where can I find a detailed view of the lifecycle of a Windows Service as developed in .NET? I put my question this way because I am not sure that a detailed enough description can be posted here, but if you think you can please feel free to try. An example of an incorrect answer would be a paste of the description from the MSDN page: I...

Agile Development vs. Publishing Too Early

Hello, where do you guys draw the line between being agile and publishing early (with a limited feature set) and publishing too early (not meaning buggy)? I am thinking that if you publish too early, potential users may simply get turned away thinking that your product is just some half-baked thing thrown on the market that can't compet...

Problem with component creation

I'm having difficulty with a Flex app I'm creating. I believe the problem is with my poor understanding of the component lifecycle and I would greatly appreciate some pointers! My app runs in Air. The application creates an array of DashItems. A DashItem is an ActionScript class that extends Canvas. Based on data passed on the creat...

Loading of controls outside of Page_Load is a no-no?

My apologies in advance for posting such a lengthy question. Believe it or not, what you see here actually represents a fairly condensed version of the problem/code at hand. And while I would appreciate any pointers on a better or different approach, I would also very much like to get the bottom of this so that I can sleep at night :)...

Internal workings of gridview control? how to create custom (databound) controls

I want to know complete life cycle of gridview control (control's life cycle) in context with the page life cycle. What all events are fired. How the data gets bind (i mean which events are internally fired and when are they fired). Actually i am looking to create the repository of complex custom controls (required in day to day life)....

Can a PHP file handle multiple requests?

Instead of starting new instances of a PHP script when an HTTP request is received, is there any way for one PHP script to handle multiple requests? ...

seam @create doesn't finish before other methods called on component

Ok I'm having a problem with SEAM (2.1.1.GA) that doesn't make any sense to me. I have a component which is session scoped and annotated with @AutoCreate. The component has a creation method annotated with @Create. The problem is that BEFORE THE CREATE METHOD COMPLETES seam is calling another method on the same component instance. Bec...

If I run mvn deploy does it build new artifacts or it just deploy the already existing artifacts in to the remote server?

Note: This question has been originally posted by Lahiru Gunathilake as an answer to another question. I'm moving it here as a separated question for the sake of clarity. When we are doing a release we just build in our local machine and do the QA and then we host it in to repository. If we run mvn deploy does it create new artifacts, ...

Data push to flex application from .net backend

Hi All, I'm about to go into a large scale application (client-flex, server-.net). The server side is required to push data to the clients without them asking for it, this data can be tables from the DB or simply 2 integers the application needs to consider. I tried to consider WebOrb.net for the job but the documentation is very poor ...

Lookup Local EJB from Glassfish LifeCycle module

I can look up the remote interface of an EJB3 from a Glassfish 2.1 using the global jndi name. However, as I understand, if this were not a LC module but an EJB (Servlet), I would have an ejb-local-ref entry in its ejb-jar.xml (web.xml). Is there a place to define Local references for an LC module? Thanks! ...

Applet lifecycle in Mac OS X

I have two applets A and B. They are embedded in separate pages. On destroy, A serializes objects to the local file system. On init, B deserializes these objects. This set-up works fine in Windows. Unfortunately, I have discovered that it doesn't work in Mac OS X. This is because B is initialized before A is destroyed. Does anyone...

[Android] How do I preserve a complex object across Activity restarts?

Say I have a Java Bean object which is serializable. I want to store it away safely when an Activity goes through onDestroy() on purpose (i.e. onSaveInstanceState() is not called). I am looking for a way which doesn't involve creating a database and write the object to that (mostly since a) Android's DB API is horrible and b) since data...

How to maintain application configuration data in the database across multiple environments?

The company I work for has attempted to maintain configuration data for our application across multiple environments, but syncing that data has always been problematic and we've never come up with a good solution. To help clarify, we (developers or business) might change some configuration using our admin interface on the Staging enviro...