Hello All,
I anticipate this is going to be a very broad question however I shall endevour to be as concise as possible without divulging too much project critical information.
For quite some time I have been working a Content Management System. However, its vastly different to many CMS's available because of the way it handles the dis...
Hi,
I'd like to get access to my currently running applications applicationDescriptor object. I want this so that I can get the current version number and, on the initial screen have a title like "MyApp Version x.x.x" where I get x.x.x from the ApplicationDescriptor.getVersion()
One way that I've found is to use:
ApplicationManager m...
I have a method that will return a list of suggested orders. If the user passes a null that criteria is ignored.
public IList<SuggestedOrderItem> GetSuggestedOrderItemByCriteria
(
int? itemNumber,
int? deptNumber
)
{
try
{
NHibernate.ICriteria criteria =...
I have an entity mapped in NHibernate with optimistic concurrency control using a SQL timestamp column as the version number. The mapping is like the following:
<class name="Entity" optimistic-lock="version" discriminator-value="0">
<id name="id">
<generator class="native" />
</id>
<version name="Version" column="Ver...
I'm trying to build a view similar to PivotalTracker where there are a variety of rows in different buckets. There is some polling to the server because rows could be updated by other users while you're working on it and the page should update on its own without having to manually refresh it.
I know how to poll the server and get updat...
Hello, people. I hope you can help me.
In our development process we have a unix based file server with SFTP access (let’s call it A). This server store a large numer of xslt files we are working on.
The thing is that these files aren’t under version control system. So you can imagine this nightmare. We can’t setup repository on this...
what's your strategy to increase build number?
...
Hello,
We have a batch-based buildprocess and we are using MSBuild only for compiling our project-files from visual studio. We also have integrated wix into our build-process. To set the version of our software we specify in the main-build-script some environment variables, that we use during the build-process.
My problem is, that i hav...
Hi guys,
We created an ADO.NET Services on top of our EDMX file as the main entry point for our central application. In the near future a lot of distinct applications will show up and consume our REST Service.
So far, so good but there is one thing I'm missing. I don't want to update all my consumers each time a new version of the ADO....
With this code I am iterating through an object.
Works:
Windows with WAMP and PHP 5.2.9
Linux web server with PHP 5.2.10
It is not working on my desktop:
Ubuntu 9.10 with PHP 5.2.10-2 from
the repo's
$incomingData = json_decode($_POST['data']);
foreach($incomingData as $key => $action)
{
}
Invalid argument supplied for
...
Hi,
Suppose I have a web application with some basic functions. I want to market it. So I would like to assign a version number - something like 0.0.1. What I want to know is are there any constraints that should apply to that numbering system?
Hope you understood my question, thanks in advance.
...
This is a general question but I'll illustrate it with Eclipse. I recently reinstalled Eclipse and find that the distribs are called
eclipse-java-galileo-SR1-win32
and
eclipse-java-ganymede-SR2-win32
(I also have a "europa" from the past - what happens when we run out of Jupiter's moons?)
I find this very confusing as there is n...
I'm writing a plug-in for another program through an API. To save it's current state, my plugin stores an instance of a Project object to the file by serializing it to XML and storing it in a user string, a feature provided by the API. It also stores a separate string that contains the version number of the plug-in currently being used.
...
We need to update our Air app to use the Air 1.5.3 namespace to take advantage of it's improved certificate handling. We've specified that namespace application descriptor XML. However, it's not forcing the user to upgrade to 1.5.3 when it's installed like I expected. Instead we're getting this error:
This application cannot be ins...
hi guys,
i have to deploy few assembly to GAC.
I just had a few questions about (my) understanding of GAC.
really confuses me.
I want to know which versions to change assembly and file version.
What are possible combinations in which GAC dll will be replaced by installing application.
and basic management for GAC files.
I will ex...
I am looking for a SQL Query which will help me differentiate between the various versions of SQL Server:
2000/2005/2008
Development/Standard/EE.
...
We've got a few common libraries (C# but I guess this isn't platform- or language-specific), let's call them A, B, and C. Library A has references to B and C, library B has a reference to a 3rd-party DLL, and library C stands alone. The idea behind three separate projects was that each library had distinct functionality, but library A ha...
First the basic facts: Java webapp, Spring, Hibernate, MySQL.
The situation is that I have a complex object model of e.g. a Car. It's
composed of many objects (Engine, Tires, ...) with many-to-one and one-to-many relationships between them.
Now there are many cars, and every now and then someone inspects a car and creates a Report of...
Sharepoint document libraries used for policies and procedures, both administrative and clinical (health care).
version control and approval workflows support legislative requirements and protect against liability issues.
Unfortunately, deleting a document removes all record that it ever existed--all the history goes with it.
I don't ...
Hi Guys,
I'm looking at versioning databases and came across the usual articles regarding how to do this (coding horror, ode to code, etc). This all make perfect sense to me, however I'm trying to find a script runner that will run the sql scripts for me. All these articles mention having something to run them automaticaly, but none of ...