User diega - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:43:52Z http://stackoverflow.com/feeds/user/127046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1782595/creating-a-queue-in-jboss-mq/1783864#1783864 0 Answer by diega for creating a queue in JBoss MQ diega 2009-11-23T15:29:14Z 2009-11-23T15:38:21Z <p>You also have to add the destinationManager to the queue declaration. Try this:</p> <pre><code>&lt;mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.mq.destination:service=Queue,name=MyQueue"&gt; &lt;depends optional-attribute-name="DestinationManager"&gt;jboss.mq:service=DestinationManager&lt;/depends&gt; &lt;/mbean&gt; </code></pre> <p>Which defines where jboss will persist your queue (by default it uses the one defined in hsqldb-jdbc2-service.xml).</p> <p>I think that you are having that exception because you are looking with a wrong JNDI name. I think you have to do</p> <p><code>Queue queue = (Queue) ctx.lookup("queue/MyQueue");</code></p> <p>pay attention that it's <em>queue</em> (lowercase) plus the name you gave to the queue in the xml file "name=MyQueue"</p> http://stackoverflow.com/questions/1602931/ejb-into-seam-component-different-projects-and-same-jboss/1618384#1618384 1 Answer by diega for EJB into SEAM Component (Different projects and same JBoss) diega 2009-10-24T16:06:02Z 2009-10-24T16:06:02Z <p>Your ComponentX class is not an EJB, so you cannot use the @EJB annotation to inject them. You have a few options. Convert your ComponentX to EJB adding @Stateless or @Statefull and an interface @Local or @Remote, in this way the AS will notice ComponentX is an EJB and will know what to do with the desired injection. The other option is let the ComponentX as simply a component and use InitialContext#lookup for obtaining the reference to "beanA/remote" by hand. </p> http://stackoverflow.com/questions/1115577/drools-flow-persistence-with-mysql-jpa-hibernate/1116054#1116054 0 Answer by diega for Drools Flow Persistence with MySQL (jpa, hibernate) diega 2009-07-12T13:31:46Z 2009-07-12T13:31:46Z <p>It looks like you have to configure your Datasource as XA. Here you have an example</p> <pre><code>&lt;datasources&gt; &lt;xa-datasource&gt; &lt;jndi-name&gt;jdbc/my_ds&lt;/jndi-name&gt; &lt;xa-datasource-property name="URL"&gt;jdbc:mysql://localhost:3306/my_db&lt;/xa-datasource-property&gt; &lt;xa-datasource-class&gt;com.mysql.jdbc.jdbc2.optional.MysqlXADataSource&lt;/xa-datasource-class&gt; &lt;user-name&gt;root&lt;/user-name&gt; &lt;password&gt;password&lt;/password&gt; &lt;track-connection-by-tx&gt;true&lt;/track-connection-by-tx&gt; &lt;exception-sorter-class-name&gt;org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter&lt;/exception-sorter-class-name&gt; &lt;valid-connection-checker-class-name&gt;org.jboss.resource.adapter.jdbc.vendor.MySQLValidConnectionChecker&lt;/valid-connection-chec ker-class-name&gt; &lt;min-pool-size&gt;1&lt;/min-pool-size&gt; &lt;max-pool-size&gt;10&lt;/max-pool-size&gt; &lt;idle-timeout-minutes&gt;10&lt;/idle-timeout-minutes&gt; &lt;metadata&gt; &lt;type-mapping&gt;mySQL&lt;/type-mapping&gt; &lt;/metadata&gt; &lt;/xa-datasource&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1112173/spring-daosupport-and-persistancecontext-entitymanager/1113044#1113044 1 Answer by diega for Spring DaoSupport and @PersistanceContext EntityManager? diega 2009-07-11T05:48:17Z 2009-07-11T05:48:17Z <p>For injecting the EntityManager you just need to add the next definition</p> <pre><code>&lt;bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" /&gt; </code></pre> <p>you can get more information about this topic in <a href="http://blog.springsource.com/2006/08/07/using-jpa-in-spring-without-referencing-spring/" rel="nofollow">this post</a> from the oficial blog</p> http://stackoverflow.com/questions/1089388/best-api-lib-for-encoding-decoding-base64-quoted-printable-in-java/1089476#1089476 0 Answer by diega for Best API/LIB for encoding/decoding base64/quoted-printable in Java diega 2009-07-06T22:20:36Z 2009-07-06T22:20:36Z <p>if you use Sun's jvm you can use sun.misc.BASE64Encoder/Decoder but it's not Open Source</p> http://stackoverflow.com/questions/1086204/is-using-data-transfer-objects-in-ejb3-considered-best-practice/1087369#1087369 0 Answer by diega for Is using data transfer objects in ejb3 considered best practice diega 2009-07-06T14:45:44Z 2009-07-06T14:45:44Z <p>I think DTOs existence is related to JPA/Hibernate <em>flaws</em>. If you could always do transparently lazy initialization you will never use them. So using DTOs is a contract where my domain/workspace always lose (duplication everywhere). Summing up, you can use them but you have to hate them :)</p> http://stackoverflow.com/questions/98220/what-is-your-favorite-hot-key-in-eclipse/1071489#1071489 0 Answer by diega for What is your favorite hot-key in Eclipse? diega 2009-07-01T21:30:15Z 2009-07-01T21:30:15Z <p><strong>alt+shift+S, then r</strong> is for generate getters and setters. It looks tricky but once you get used to this combination you cannot live without it.</p> http://stackoverflow.com/questions/1065245/how-to-mark-some-code-that-must-be-removed-before-production/1065412#1065412 0 Answer by diega for How to mark some code that must be removed before production? diega 2009-06-30T19:06:09Z 2009-06-30T19:06:09Z <p>I use the //FIXME keyword that eclipse displays, together with //TODO, in the Tasks View (you can filter what to see on it). You shouldn't go out to production if there is some //FIXME around :)</p> http://stackoverflow.com/questions/1059193/maven-dependencies-jar-not-usable/1061053#1061053 0 Answer by diega for Maven dependencies jar not usable diega 2009-06-29T23:20:34Z 2009-06-29T23:20:34Z <p>Had you take a look at <a href="http://code.google.com/p/onejar-maven-plugin/" rel="nofollow">onejar-maven-plugin</a>. It does what you want in a straightforward way.</p> http://stackoverflow.com/questions/1058119/google-app-engine-redirect-all-urls/1058839#1058839 3 Answer by diega for Google App Engine: Redirect All URLs diega 2009-06-29T15:09:23Z 2009-06-29T15:09:23Z <p>you can redirect all requests easily with a python handler. Something like</p> <pre><code>class FormHandler(webapp.RequestHandler): def post(self): if processFormData(self.request): self.redirect("http://domain.com") </code></pre> http://stackoverflow.com/questions/1037531/is-there-a-way-to-declare-an-annotation-attribute-for-any-enum/1056465#1056465 1 Answer by diega for Is there a way to declare an annotation attribute for *any* enum? diega 2009-06-29T03:36:42Z 2009-06-29T03:36:42Z <p>If your enums can implement all the same interface, you may find useful this question "<a href="http://stackoverflow.com/questions/574529/coding-tip-intersection-types-and-java-enums">Coding tip - intersection types and java enums</a>"</p> http://stackoverflow.com/questions/1054777/java-reflection-how-do-i-override-or-generate-methods-at-runtime/1055061#1055061 1 Answer by diega for Java reflection: How do I override or generate methods at runtime? diega 2009-06-28T14:56:58Z 2009-06-28T14:56:58Z <p>In java6 has been added the possibility to transform any already loaded class. Take a look at the <a href="http://java.sun.com/javase/6/docs/technotes/guides/instrumentation/changes6.html" rel="nofollow">changes</a> in the java.lang.instrument package</p> http://stackoverflow.com/questions/296872/simple-workflow-management-with-jee/1053840#1053840 1 Answer by diega for Simple Workflow Management with JEE diega 2009-06-27T23:13:37Z 2009-06-27T23:13:37Z <p>Yes, I absolutely think what you are doing in that scenario is starting different <em>business</em> processes. Using tools like JBPM or <a href="http://downloads.jboss.com/drools/docs/5.0.1.26597.FINAL/drools-flow/html/index.html" rel="nofollow">drools-flow</a> (which you should take a look) not only express exactly your problem but lets you have a visual approach of the flow of your application through the designers they provide. You can use what makes your application work as documentation directly. </p> http://stackoverflow.com/questions/1051458/java-ee-jar-file-sharing/1051832#1051832 1 Answer by diega for Java EE Jar file sharing diega 2009-06-27T00:36:35Z 2009-06-27T00:36:35Z <p>I really don't think putting libraries in common/lib is a good idea. The idea behind the use of war files as applications into a servlet container, is to have a real idea of isolation between your webapps. You could face errors like deploy some third party WAR (with it own libraries inside WEB-INF/lib) and it behave unexpectedly because it loaded other version of one of it libraries from the common one (remember that the regular behavior for load classes is first look at the common classloader and if you don't find the class look into the one for your webapp). Don't even mention how painful could be to move some application to other servlet container or an Application Server. As mentioned before, you could use maven to deal with jar dependencies, and if you like the homogeneous use of libraries, define a POM parent (maven jargon) across all your applications.</p> http://stackoverflow.com/questions/1044626/can-drools-flow-scale-to-executing-hundreds-of-thousands-of-process-instances-per/1046835#1046835 2 Answer by diega for Can Drools Flow scale to executing hundreds of thousands of process instances per day? diega 2009-06-26T00:25:53Z 2009-06-26T00:25:53Z <p>Just appear an official post about this <a href="http://blog.athico.com/2009/06/drools-flow-performance.html" rel="nofollow">here</a></p> http://stackoverflow.com/questions/933823/drools-related-problem/1045029#1045029 0 Answer by diega for Drools related problem... diega 2009-06-25T16:57:38Z 2009-06-25T16:57:38Z <p>Hi, when you have your abc object, this will be the fact that you insert into the Working Memory. For example:</p> <pre><code>KnowledgeBuilder kbuilder = KnowledgeBuilderFactory.newKnowledgeBuilder(); kbuilder.add( ResourceFactory.newFileSystemResource( fileName ), ResourceType.DRL ); if (kbuilder.hasErrors() ) { System.out.println( kbuilder.getErrors() ); } else { KnowledgeBase kbase = KnowledgeBaseFactory.newKnowledgeBase(); kbase.addKnowledgePackages( kbuilder.getKnowledgePackages() ); StatelessKnowledgeSession ksession = kbase.newStatelessKnowledgeSession(); ksession.execute( abc ); } </code></pre> <p>Then you will have your modified abc object when the execute finishes. Take a look at <a href="http://downloads.jboss.com/drools/docs/5.0.1.26597.FINAL/drools-expert/html/ch03.html#d0e1797" rel="nofollow">here</a></p> <p>You probably dont't want the rules being build everytime (this is really time consumer), so you can use or KnowledgeAgent or have an static KnowledgeBase and recreate it whenever your rules files change.</p> http://stackoverflow.com/questions/1040559/jboss-4-2-swallows-the-stacktrace-on-causes-of-ejb-exceptions-how-can-that-be-pr/1044258#1044258 2 Answer by diega for Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented? diega 2009-06-25T14:26:21Z 2009-06-25T14:26:21Z <p>It's an implementation decision, they don't set the original cause as the cause of the ejbException. You can access to that looking the method getCausedByException(). You have a JIRA[1] about that (take a look at this because there's a painful workaround), and you can take a look to the JBoss AS implementation[2].</p> <p>[1]: https://jira.jboss.org/jira/browse/EJBTHREE-337</p> <p>[2]: <a href="http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/trunk/jboss-j2ee/src/main/javax/ejb/EJBException.java?revision=39121&amp;view=markup&amp;sortby=rev&amp;pathrev=39121" rel="nofollow">http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/trunk/jboss-j2ee/src/main/javax/ejb/EJBException.java?revision=39121&amp;view=markup&amp;sortby=rev&amp;pathrev=39121</a></p> http://stackoverflow.com/questions/948195/application-server-to-use-or-not-use/1044138#1044138 0 Answer by diega for Application server - to use or not use? diega 2009-06-25T14:03:53Z 2009-06-25T14:03:53Z <p>An application server is an architectural solution. You have to use it if you are going to think different reusable modules of your application. If you don't mind that your services should be implemented over the HTTP stack so EJB must be your default option. With an AS you have an already packed solution for solve <em>good practices</em> in architectural way. You can use queues, topics, jms, etc out of the box, and those are all JEE standards. But I think that you have to think all your application in this architectural <em>buzz</em>-way to be able to judge the AS decision.</p> http://stackoverflow.com/questions/1035643/ejb-injection-and-the-enterprise-naming-context-relation-between-the-two/1042688#1042688 0 Answer by diega for @EJB injection and the Enterprise Naming Context - relation between the two. diega 2009-06-25T07:57:46Z 2009-06-25T07:57:46Z <p>I think if you need to inject an Stateful Session Bean you gonna need some context that knows the relation between your EJB instance and some previously injected EJB dependency (to that instance).</p> http://stackoverflow.com/questions/1113888/passing-php-output-stream-to-java Comment by diega on Passing PHP output stream to Java diega 2009-07-11T17:41:17Z 2009-07-11T17:41:17Z what SOAP/WS stack are you using (i.e. Axis, Axis2, JBoss-WS, Metro, CXF, etc)? http://stackoverflow.com/questions/1112173/spring-daosupport-and-persistancecontext-entitymanager/1113044#1113044 Comment by diega on Spring DaoSupport and @PersistanceContext EntityManager? diega 2009-07-11T13:17:30Z 2009-07-11T13:17:30Z I think that if you use JPA as an standard approach, forcing you to a Spring solution (i.e. extending JpaSupport) is a no sense. If you keep tied to JPA+EJB3 injection you can migrate your jars to an Application Server whenever you want. My 2 micro cents :) http://stackoverflow.com/questions/1106023/how-to-use-classes-from-another-project Comment by diega on How to use classes from another project? diega 2009-07-09T20:56:10Z 2009-07-09T20:56:10Z Sorry but using the default package never solves anything. Probably you just touched another thing to get it work. Now that's everything working, try to refactor some of your classes on project A putting them into a package. http://stackoverflow.com/questions/1063543/how-to-get-variable-names-at-runtime/1063563#1063563 Comment by diega on how to get variable names at runtime? diega 2009-06-30T13:10:40Z 2009-06-30T13:10:40Z With this approach you should assure that the parameter checking is not part of needed logic of your application (I think you don't want your application works in a different way according a JVM parameter) http://stackoverflow.com/questions/1040559/jboss-4-2-swallows-the-stacktrace-on-causes-of-ejb-exceptions-how-can-that-be-pr/1044258#1044258 Comment by diega on Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented? diega 2009-06-25T15:56:09Z 2009-06-25T15:56:09Z I think they put it as fixed because is the way they want this to behave :-/