active questions tagged enterprise - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T14:49:37Zhttp://stackoverflow.com/feeds/tag/enterprisehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1879113/a-business-case-for-enterprise-python5A business Case for Enterprise PythonSrirangan2009-12-10T06:52:03Z2009-12-10T11:37:23Z
<p>Hi all,</p>
<p>This will not be a "programming" question but more technology / platform related question. I'm trying to figure out whether Python can be a suitable Java alternative for enterprise / web applications. </p>
<p>Which are the ideal cases where you would prefer to use Python instead of Java? How would a typical Python web application (databases/sessions/concurrency) perform as compared to a typical Java application? How do specific Python frameworks square up against Java based frameworks (Spring, SEAM, Grails etc.)?</p>
<p>For businesses, switching from the Java infrastructure to a Python infrastructure .. is it too hard/expensive/resource intensive/not viable? Also shed some light on the business case for providing a Python + Google AppEngine based solution to the end customer. Will it be cost effective in an typical scenario?</p>
<p>Sorry if I am asking too wide a question, I would have liked to keep it specific, but I need your help to evaluate Python as a whole from the perspectives of the programmers, service providing company and end business customer.</p>
<p>For an SME, a Python/GoogleAppEngine based technology stack is a clear scalable and affordable platform. But what about a large MNC that already has a lot invested in Java.</p>
<p>Thank you so much. I am researching this myself and will gladly share my conclusions here!</p>
<p>Thank you,
Srirangan</p>
http://stackoverflow.com/questions/1873057/how-to-pass-dirty-values-only-from-client-side-data-transfer-object-to-server-sid0How to pass dirty values only from client side data transfer object to server side domain model codegoblin2009-12-09T10:44:28Z2009-12-09T20:09:50Z
<p><strong>Application Type:</strong>
3-Tier web application with RDBMS at backend</p>
<p><strong>Development Platform</strong></p>
<p>Client : Silverlight 3/ WPF
Services: WCF web services with Basic Http binding</p>
<p><strong>Problem Definition:</strong>
Trying to develop a application that has a client side business handling and data intensive objects being passed to client. Once the objects are viewed and edited in client screen they should be passed to services on server side for save. The issue being since that data is in sizable amount I dont want to pass the entire object back again to the services. E.g:- If I have a collection of 10 rows and 10 columns for each row and only 2 columns are updated. I should be able to pas only the data.</p>
<p><strong>Question:</strong>
Is this a good practise and if yes whats the best way to achieve </p>
<p><strong>Tried out solutions</strong>
I have tried two solutions
1: Have setters with event delegate that do change notification
2: Use custom data type</p>
http://stackoverflow.com/questions/1872901/regarding-catching-faultexceptiont-ex0Regarding Catching FaultException<T> exVikram I Code2009-12-09T10:11:16Z2009-12-09T10:50:18Z
<p>Hi </p>
<p>I am using Enterprise application block on my application' server side to handle exceptions. </p>
<p>I am able to successfully handle exception. I have created a custom service fault class to handle exceptions. </p>
<p>Here are my web config enteries...</p>
<pre><code><exceptionPolicies>
<add name="WCF Exception Shielding">
<exceptionTypes>
<add type="TEST.Infrastructure.ExceptionHandling.Exceptions.TESTBusinessException, Pluto.Infrastructure.ExceptionHandling, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
postHandlingAction="ThrowNewException" name="TESTBusinessException">
<exceptionHandlers>
<add logCategory="BusinessLoggingCategory" eventId="501" severity="Error"
title="Pluto Service Exception" formatterType="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.TextExceptionFormatter, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling"
priority="0" useDefaultLogger="false" type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging.LoggingExceptionHandler, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
name="Logging Handler" />
<add
type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WCF.FaultContractExceptionHandler, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WCF, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
name="DefaultFaultContract Handler"
faultContractType="TEST.Infrastructure.ExceptionHandling.Exceptions.TESTServiceException, Pluto.Infrastructure.ExceptionHandling"
exceptionMessage="Pluto.Infrastructure.ExceptionHandling.Exceptions.TESTBusinessException {handlingInstanceID}">
<mappings>
<add name="Id" source="{Guid}"/>
<add name="MessageText" source="{Message}"/>
</mappings>
</add>
</exceptionHandlers>
</add>
</code></pre>
<p>But on the client side when i try to catch this exception as </p>
<pre><code> catch (FaultException<TESTServiceException> fex)
{
}
</code></pre>
<p>this exception is not caught.
I am able to get the exception message on the client side which i have writen in app.config on server side.</p>
<p>Can any one please help me figure out the problem.</p>
<p>Thanks in advance</p>
<p>Vikram</p>
http://stackoverflow.com/questions/1859337/ubuntu-enterprise-cloud-vm-is-pending-and-then-terminating-why0Ubuntu Enterprise Cloud. VM is pending and then terminating. Why?Roberto Aloi2009-12-07T11:06:21Z2009-12-07T17:48:54Z
<p>I'm trying to setup a private cloud.
I followed the tutorial from:</p>
<p><a href="https://help.ubuntu.com/community/UEC/CDInstall" rel="nofollow">https://help.ubuntu.com/community/UEC/CDInstall</a></p>
<p>But I'm not able to run a new image. Every time I try to start an image, the VM goes into the <em>pending</em> state and after a while it moves into <em>shutting down</em> mode and finally it terminates.</p>
<p>This behaviour is reported in the official doc for Eucalyptus, where it suggests to have a look to *httpd-nc_error_log* (the one for the node controller):</p>
<p><a href="http://open.eucalyptus.com/wiki/EucalyptusTroubleshooting%5Fv1.5.2" rel="nofollow">http://open.eucalyptus.com/wiki/EucalyptusTroubleshooting%5Fv1.5.2</a></p>
<p>I would really like to have a look to this file, but I can't, since nodes are managed by the controller and apparently I don't have ssh access to them (I tried to connect from the controller, but it prompts for a passphrase).</p>
<p>In all other log files (in the controller), I didn't notice anything special.</p>
<p>When I start a VM instance with the following:</p>
<pre><code>euca-run-instances -k mykey emi-**********
</code></pre>
<p>The httpd-cc_error_log says:</p>
<pre><code>> RTNETLINK answers: File exists
> Internet Systems Consortium DHCP
> Server V3.1.2 [...] WARNING: Host
> declarations are global. They are not
> limited to the scope you declared them
> in. Wrote 0 deleted host decls to
> leases file. Wrote 0 new dynamic host
> decls to leases file. Wrote 0 leases
> to leases file. Listening on
> LPF/eth0/**:**:**:**:**:**/euca
> Sending on
> LPF/eth0/**:**:**:**:**:**/euca
> Sending on
> Socket/fallback/fallback-net Using
> intrapositioned negation (`--option !
> this`) is deprecated in favor of
> extrapositioned (`! --option this`).
> Using intrapositioned negation
> (`--option ! this`) is deprecated in
> favor of extrapositioned (`! --option
> this`).
</code></pre>
<p>Any ideas? Any place where I should look?</p>
http://stackoverflow.com/questions/1090730/looking-for-a-free-e-book-related-to-architecting-enterprise-applications-using0Looking for a free e-book related to Architecting Enterprise Applications using .NETodiseh2009-07-07T06:47:52Z2009-12-05T16:43:04Z
<p>Hi </p>
<p>Could you please suggest me some good free e-books related to Architecting Enterprise Applications using .NET ?</p>
http://stackoverflow.com/questions/1838032/obscure-your-ruby-code0Obscure your Ruby code?hashpipe2009-12-03T06:24:21Z2009-12-03T09:51:31Z
<p>I am in the middle of developing an enterprise application using RoR (first time for us to build an enterprise app on RoR instead of Java), and while we do not have that much problem of obscuring the source code, I was still wondering if this was possible. Whether we could somehow just have a simple EXE or something else, such that our code base remains hidden from the client.</p>
<p>Has anybody done anything like this or any way whether something like this could be achieved?</p>
http://stackoverflow.com/questions/565509/which-enterprise-scheduling-to-use1Which enterprise scheduling to use?Squirrel2009-02-19T14:21:01Z2009-12-03T02:33:24Z
<p>If you had to choose an enterprise scheduling system which would you choose and why?</p>
<p>The current contenders are: UC4 v CA AutoSys.</p>
http://stackoverflow.com/questions/1835695/is-enterprise-library-4-1-supported-for-windows-70Is Enterprise Library 4.1 supported for Windows 7?Jay Clarke2009-12-02T20:47:40Z2009-12-02T20:54:18Z
<p>I was trying to run an application locally with Enterprise Library 4.1 and do logging to the event viewer. I didn't see Windows 7 under the supported operating systems. Does anyone know of a workaround or if this will not work at all? Also does anyone know if any other logging such as email or DB through Enterprise Library is available on Windows 7?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1819857/howto-model-an-information-system-in-uml0Howto model an information system in uml?martin2009-11-30T13:34:14Z2009-12-01T07:32:33Z
<p>Hello,</p>
<p>i have written a software that is generating a data output based on the communication protocol HL7, but this isn't really important for my question. I have to develop an integration concept to integrate my software as a subsystem into an enterprise information system.
I want to show a diagram which explains how the several subsystems work together and which data is communicated between the subsystems. My problem is that i'm not sure if there is in the uml language a diagram-type that supports modeling of complete information systems.</p>
<p>I thought about the deployment diagram, but I am not sure if it is the right. I don't want to start an then recognize that it is the wrong way.</p>
<p>Are there any advices which diagram should be used or if there is an alternative modeling language für complex information systems?</p>
<p>Thanks in advance,
Martin</p>
http://stackoverflow.com/questions/1815734/what-does-the-enterprise-ready-mean1What does the 'Enterprise Ready' mean?Simon2009-11-29T15:00:03Z2009-11-29T15:57:00Z
<p>What do you mean by saying that something is 'Enterprise Ready'?</p>
http://stackoverflow.com/questions/1417997/enterprise-sso-identity-management-recommendations1Enterprise SSO & Identity management / recommendationsMaxim Veksler2009-09-13T15:29:30Z2009-11-29T08:00:06Z
<p>Hello Friends,</p>
<p>We've <a href="http://stackoverflow.com/questions/780490/identity-management-sso-solution">discussed</a> SSO before. I would like to re-enhance the conversation with defined requirements, taking into consideration recent new developments.</p>
<p>In the past week I've been doing market research looking for answers to the following key issues:</p>
<p>The project should should be:</p>
<h3>Requirements</h3>
<ul>
<li>SSO solution for web applications.</li>
<li>Integrates into existing developed products.</li>
<li>has Policy based password security (Length, Complexity, Duration and co)</li>
<li>Security Policy can be managed using a web interface.</li>
<li>Customizable user interface (the password prompt and co. screens).</li>
<li>Highly available (99.9%)</li>
<li>Scalable.</li>
<li>Runs on Red Hat Linux.</li>
</ul>
<h3>Nice to have</h3>
<ul>
<li>Contains user Groups & Roles.</li>
<li>Written in Java.</li>
<li>Free Software (open source) solution.</li>
</ul>
<p>None of the solutions came up so far are "killer choice" which leads me to think I will be tooling several projects (OWASP, AcegiSecurity + X??) hence this discussion.</p>
<p>We are ISV delivering front-end & backend application suite. The frontend is broken into several modules which should act as autonomous unit, from client point of view he uses the "application" - which leads to this discussion regrading SSO.</p>
<p>I would appreciate people sharing their experience & ideas regarding the appropriete solutions.</p>
<p>Some solutions are interesting</p>
<ul>
<li><a href="http://www.jasig.org/cas" rel="nofollow">CAS</a></li>
<li><a href="http://www.sun.com/software/products/opensso%5Fenterprise/index.xml" rel="nofollow">Sun OpenSSO Enterprise</a></li>
<li><a href="http://www.jboss.org/community/wiki/JBossIdentityIDM" rel="nofollow">JBoss Identity IDM</a></li>
<li><a href="http://www.josso.org" rel="nofollow">JOSSO</a></li>
<li><a href="http://www-01.ibm.com/software/tivoli/products/access-mgr-esso/" rel="nofollow">Tivoli Access Manager for Enterprise Single Sign-On</a></li>
</ul>
<p>Or more generally speaking <a href="http://www.manageability.org/blog/stuff/single-sign-on-in-java" rel="nofollow">this list</a></p>
<p>Thank you,
Maxim.</p>
http://stackoverflow.com/questions/1806110/which-approach-to-create-the-data-access-layer-has-the-highest-performance-1Which approach to create the data access layer has the highest performance?pooyakhamooshi2009-11-26T23:29:06Z2009-11-26T23:38:09Z
<p>I have to create a very high performance application. Currently, I am using Entity Framework for my data access layer. My application has to insert some communication data almost every second. I found that Entity Framework is slow; it has about 2 seconds delay to finish the SaveChanges() method.</p>
<p>I was thinking I have the following options:
1. Create the data access layer myself using ADO.NET; using stored procedures or ad-hoc queries
2. Use Enterprise Library Data access Layer
3. Use NHibernate
4. Use Repository Factory: <a href="http://pooyakhamooshi.blogspot.com/search?q=repository" rel="nofollow">http://pooyakhamooshi.blogspot.com/search?q=repository</a></p>
<p>What do you think? which one is quicker for inserting data? Which one is quicker to set up?</p>
http://stackoverflow.com/questions/1801926/integrating-with-sage-pro-erp-software0Integrating with SAGE PRO ERP softwarePawel2009-11-26T06:42:53Z2009-11-26T06:42:53Z
<p>Can anyone provide me with a high-level description of what the SAGE PRO erp SDK is like (XML? ODBC? etc..)</p>
<p>Also, any experience with the SAGE "developer program" would be welcome (<a href="http://www.sagebusinessworks.com/partners/become-dev-partner.aspx" rel="nofollow">http://www.sagebusinessworks.com/partners/become-dev-partner.aspx</a>)</p>
http://stackoverflow.com/questions/1793811/what-db-extension-php-has-mysqli-pdo-etc-is-the-best-for-enterprise-level-appl0What DB extension PHP has (mysqli, PDO etc) is the best for enterprise level application?Itay Moav2009-11-24T23:57:19Z2009-11-25T04:28:22Z
<p>What DB extension PHP has (mysqli, PDO etc) is the best for enterprise level application?
The important features that comes to my mind are:</p>
<ol>
<li>under active maintenance</li>
<li>A lot of documentation and examples.</li>
<li>Probably endorsed by the Mysql people themselves.</li>
<li>Robust</li>
<li>scalable</li>
</ol>
http://stackoverflow.com/questions/1186741/enterprise-search-engine-development-asking-for-advice1enterprise search engine development asking for adviceGeorge22009-07-27T06:38:48Z2009-11-24T20:22:56Z
<p>Hello everyone,</p>
<p>I am asked to either deploy or develop an enterprise (intranet) search engine which could index all web pages of a couple of internal servers, and have a search portal to display all related content, like what Google is doing but for intranet.</p>
<p>Any advice how to develop or deploy quickly? I have heard of Microsoft FAST product, not sure whether it is for this purpose?</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/1242412/how-to-balance-dry-principle-with-minimizing-dependencies4How to balance DRY principle with minimizing dependencies?duffymo2009-08-07T01:19:40Z2009-11-24T18:50:44Z
<p>I'm having a problem with the DRY principle (Don't Repeat Yourself) and minimizing dependencies that revolves around Rete rules engines.</p>
<p>Rules engines in large IT organizations tend to be Enterprise (note the capital "E" - that's serious business). All rules must be expressed once, nice and DRY, and centralized in an expensive rules engine. A group maintains the rules engine and are the keepers of the rules sets.</p>
<p>When that IT organization is part of an American insurance company, there tend to be lots of rules. There are rules that apply to all states and products, but each state tends to evolve its own laws for different products, so the rules need to reflect these quirks. The categories are many: actuarial, underwriting, even for ordering credit and motor vehicle reports from 3rd party bureaus. </p>
<p>The problem that I have from a design standpoint is that centralizing rules and processing is certainly nice and DRY, but there are costs: </p>
<ol>
<li>Additional network hops to access the centrally located rules service and return results; </li>
<li>Additional complexity if the rules engine is exposed as a SOAP web service - consumers have to package up SOAP requests and OXM the response back to their own domain;</li>
<li>Additional interfaces between the enterprise group that maintains the rules engine, the business that sets and maintains the rules, and the developers that consume them;</li>
<li>Additional complexity - sometimes a data-driven solution might be enough.</li>
<li>Additional dependencies - components who don't have control of their own rules have to worry about external dependencies on the rules engine for testing, deployment, releases, etc.</li>
</ol>
<p>These problems crop up with lots of other Enterprise technologies (e.g., B2B gateways, ESBs, etc.)</p>
<p>The same Enterprise groups also tout SOA as a foundational principle. But my understanding of proper service design is that they should tile the business space and be idempotent, independent, and isolated. How can a service be independent and isolated if its rules are maintained somewhere else?</p>
<p>I'd like to err on the side of simplicity, arguing that eliminating dependencies should take precedence over centralization if the rules can be shown to apply only in isolated circumstances. I'm not sure the argument will win the day.</p>
<p>So my questions are:</p>
<ol>
<li>Where do you fall on the centralization versus independence argument? </li>
<li>What's your experience with Enterprise tools like rules engines? </li>
<li>How can I make the argument for isolation stronger?</li>
<li>If my view is incorrect, what argument would you make in favor of centralization? </li>
</ol>
http://stackoverflow.com/questions/1771149/debugging-customer-firewall-issues1Debugging customer firewall issuesPatrick2009-11-20T15:19:32Z2009-11-20T16:23:48Z
<p>How do you debug a firewall issue with your application at a customer site? Currently we have an issue where Apache and Tomcat (part of the application) throw errors that sound like the firewall is blocking our attempt to accept or bind to ports on the machine.</p>
<p>The problem for us is we can't see what the firewall is doing, because it is managed at a corporate level. Is there even a way to figure out if we are getting blocked or if it is an application specific issue. This is a java application.</p>
http://stackoverflow.com/questions/105515/f-and-enterprise-software3F# and Enterprise SoftwareAlexandre Brisebois2008-09-19T20:49:11Z2009-11-17T04:14:01Z
<p>Being a C# developer since version 1.0, F# has captured my free time for the past few weeks. Computers are now sold with 2, 4 .. Cores and multi-threading is not always simple to accomplish. </p>
<p>At the moment I see that F# has great potential for complicated and or heavy workloads.
Do you think that F# will (once RTM) become an important player in the Enterprise Software market?</p>
http://stackoverflow.com/questions/14823/is-ruby-on-rails-ready-for-the-enterprise16Is Ruby On Rails ready for the Enterprise?Mike Deck2008-08-18T15:53:49Z2009-11-15T21:53:05Z
<p>Is anyone out there using RoR for large scale, business critical enterprise applications?</p>
<p>Are there any other lightweight web-frameworks based on dynamic languages that people are using for these types of apps?</p>
<p>If you're not using these types of application frameworks what's stopping you? Is it simply the inertia associated with any large IT organization. Are the speed and stability issues of these frameworks enough of a problem that they offset the improvements in development cycle times?</p>
http://stackoverflow.com/questions/1727138/an-enterprise-scheduler-for-python-like-quartz1An enterprise scheduler for python (like quartz)flybywire2009-11-13T04:31:57Z2009-11-15T11:37:33Z
<p>I am looking for an enterprise tasks scheduler for python, like quartz is for Java.
Requirements:</p>
<ul>
<li>Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and must be fired after restarting.</li>
<li>Jobs must enter and exit the scheduler in a transaction (i.e. if some database operation fail, in a database unrelated to the scheduler, then the job must not have exited or entered the scheduler).</li>
<li>Scalability. Depends on the measure of success of the project, but I would prefer to know from the beggining that I am not starting from a dead end.</li>
<li>Configurability: when tasks expire, how many can be fired simultaneously, etc.</li>
</ul>
<p>Any recommendations? Is there something python specific, or is it possible (or even good) to interface to Quartz from python.</p>
http://stackoverflow.com/questions/1727496/how-to-remove-unwanted-blocks-from-ms-enterprise-library0How to remove unwanted blocks from MS enterprise Library?Lalit Dhake2009-11-13T06:28:47Z2009-11-13T06:28:47Z
<p>Hi,
I installed MS enterprise Library in my system. Out of all blocks i want to use only
Exception Handling block. How to use it in my application.Also i want to remove all the other block from my system. How to do that. ?? please guide</p>
http://stackoverflow.com/questions/1722560/how-to-implement-an-enterprise-grade-javascript-framework-for-web-designers1How to implement an Enterprise-grade JavaScript "framework" for web designers?Lenni2009-11-12T14:31:36Z2009-11-12T14:58:49Z
<p>I have been tasked with improving the current mess that is our JavaScript "strategy"; we're an online shopping company and my boss has given me time to do this properly. He is very keen on keepin this modular and increase the reusability of the components.</p>
<p>Our HTML is being rendered with JSP and we have lots of custom tags writing out, for example, information about products without the web designers needing to worry about it.</p>
<p>Now, we want to do similar things with JavaScript. The web designers should be given a set of custom tags, like, say, </p>
<pre><code><foo:draggable>
... some HTML here ...
</foo:draggable>
</code></pre>
<p>that will wrap the HTML in a <code><div></code> with a drag bar at the top and a close button. </p>
<p>My idea is to mark the div with a unique namespaced CSS class name, like <code>foo_draggable</code>, and then put all my functions in a single JS file. That JS file then sees if there are elements with the CSS class <code>foo_draggable</code> in the DOM and if it finds any it will attach the required event handlers.</p>
<p>However, I am worried about scaling problems, and wondering whether it is a good idea to have lots of selector queries running when they quite often aren't going to be used. </p>
<p>The first alternative would be to initiate each draggable item explicitly but that would mean putting <code><script></code> tags all over the place. The second approach would be to not put all UI function in one file but rather just download the ones I need, but that would mean lots more HTTP requests and slower page load speed.</p>
<p>Has anyone got experience with this?</p>
http://stackoverflow.com/questions/716532/hibernate-ibatis-jee-or-other-java-orm-tool5Hibernate, iBatis, JEE or other Java ORM toolKevin Williams2009-04-04T04:57:35Z2009-11-11T10:48:15Z
<p>We're in the process of planning a large, enterprise application. We're focusing our efforts on evaluating hibernate after experiencing the pains of J2EE.</p>
<p>It looks like the new JEE API is simpler. I've also read some good things about Hibernate and iBatis. Our team has little experience with any of the frameworks.</p>
<p>There are 5 main comparisong points I'd like to determine</p>
<ul>
<li>Learning Curve/Ease of Use</li>
<li>Productivity</li>
<li>Maintainability/Stability</li>
<li>Performance/Scalability</li>
<li>Ease of Troubleshooting </li>
</ul>
<p>If you were to manage a team of ~6 developers with J2EE experience which ORM tool would you use and why?</p>
http://stackoverflow.com/questions/1614194/nhibernate-configuration-for-sql-server-enterprise-edition0NHibernate configuration for Sql Server Enterprise EditionSaurabh Lalwani2009-10-23T15:25:16Z2009-11-10T14:20:38Z
<p>I know the configuration for SQL Server Compact edition that Nhibernate (using FluentNhibernate) uses is:</p>
<pre><code>var cfg = Fluently.Configure() .Database(MsSqlCeConfiguration.Standard.Provider("NHibernate.Connection.DriverConnectionProvider")
.Dialect("NHibernate.Dialect.MsSqlCeDialect")
.Driver("NHibernate.Driver.SqlServerCeDriver")
.ConnectionString("Data Source=TestDB.sdf")
.ProxyFactoryFactory("NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle"));
</code></pre>
<p>Can anybody tell me or give me a link where I can find the same information for SQL Server Enterprise Edition.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1706345/java-ee6-over-ee53Java EE6 over EE5 ?!devdude2009-11-10T08:19:13Z2009-11-10T09:59:05Z
<p>We are at the edge of getting <strong>Java EE6</strong> (with Glassfish v3 as reference implementation). Planned release is December 09. While still quite a number of companies are struggling to move their codebase to EE5 (from earlier versions), we are in the luxurious situation to start development of a new product and could choose to do it with EE6 as platform. That potentially avoids the migration effort at a later stage and benefit from all the rightsized features in EE6. </p>
<p>Contra or few of the problems (when doing things at the bleeding edge, aka using EE6):</p>
<ul>
<li>not much expertise around yet (blogs, books, forums, yourself,..)</li>
<li>there wont be any other EE6 application server soon (beta's maybe early/mid next year ?)</li>
<li>3rd party libraries/frameworks are maybe not verified or tested against EE6 yet.</li>
</ul>
<p>A generic question that would not result in a specific answer, but maybe your take on the topic ?</p>
<p>Sven</p>
http://stackoverflow.com/questions/1074701/will-ruby-on-rails-grails-ever-catch-on-in-the-enterprise1Will Ruby on Rails/Grails ever catch on in the enterprise?Owen2009-07-02T14:24:22Z2009-11-05T13:09:42Z
<p>My question is related to <a href="http://stackoverflow.com/questions/14823/is-ruby-on-rails-ready-for-the-enterprise">"Is Ruby on Rails ready for the Enterprise?"</a> My question is not about IF Ruby on Rails/Grails is ready for the enterprise - my question is will they ever catch on in the enterprise?</p>
<p>J2EE applications have such a strong foothold right now and a lot of investment from the giants (IBM, Oracle, etc) and those giants make a lot of money from building and selling J2EE applications. It's hard to imagine a world where that cash cow would get overshadowed by something else. If RoR/Grails isn't going to catch on - what will? Or will we just see a continual evolution of J2EE?</p>
<p>Is it worth it to learn these technologies from a career/working perspective or is it solely an academic pursuit?</p>
http://stackoverflow.com/questions/1676147/anyone-using-spring-dm-server-for-critical-corporate-applications0Anyone using Spring dm Server for critical corporate applications?KCro2009-11-04T19:46:45Z2009-11-04T19:46:45Z
<p>Just wondering if dm Server is running any large enterprise apps yet. My Big Company is reluctant to use it until other Big Companies do.</p>
http://stackoverflow.com/questions/1585468/what-are-good-resources-books-podcasts-on-enterprise-portal-development1What are good resources/books/podcasts on Enterprise Portal Development ?Rachel2009-10-18T17:17:04Z2009-11-03T17:43:36Z
<p>What are some of the very good online resources/books/pod casts/tutorials/blogs/articles etc for learning and understanding different areas of Enterprise Portal Development ?</p>
http://stackoverflow.com/questions/258554/how-would-you-display-layout-data-flow-between-enterprise-applications1How would you display/layout Data-Flow between Enterprise Applications? lexu2008-11-03T12:59:39Z2009-11-03T10:31:21Z
<p>My employer is a large Swiss Telco. We have many Systems used to transfer data for different tasks, e.g. Performance Management, Fault Management, Configuration Management etc.</p>
<p>In order explain to "Management" (pointy haired, and other) how these systems interact, I collected information about data flow/formats/protocols into a "database" ( of the comma delimited persuason) and then generated code for Graphviz (<a href="http://www.graphviz.org/" rel="nofollow">http://www.graphviz.org/</a>) and Yed (<a href="http://www.yworks.com/en/products_yed_about.html" rel="nofollow">http://www.yworks.com/en/products_yed_about.html</a>) to visualize these Graphs.</p>
<p>Showing these graphs generated from my DB was rather effective at first ..
but adding new systems/data flows causes both Graphviz and Yed to re-layout the graphs, since that is how they work ...
Naturally this really confuses anyone trying to match that graph seen yesterday, to the graph shown today.</p>
<p>How would you display/layout Data-Flow between Enterprise Applications? </p>
http://stackoverflow.com/questions/1641112/is-php-suited-for-enterprise-application-development3Is PHP suited for Enterprise Application development ?Rachel2009-10-29T01:13:48Z2009-10-29T01:39:28Z
<p>Is PHP suitable for Enterprise Application Development ?</p>