User diega - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:43:52Zhttp://stackoverflow.com/feeds/user/127046http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1782595/creating-a-queue-in-jboss-mq/1783864#17838640Answer by diega for creating a queue in JBoss MQdiega2009-11-23T15:29:14Z2009-11-23T15:38:21Z<p>You also have to add the destinationManager to the queue declaration. Try this:</p>
<pre><code><mbean code="org.jboss.mq.server.jmx.Queue"
name="jboss.mq.destination:service=Queue,name=MyQueue">
<depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
</mbean>
</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#16183841Answer by diega for EJB into SEAM Component (Different projects and same JBoss)diega2009-10-24T16:06:02Z2009-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#11160540Answer by diega for Drools Flow Persistence with MySQL (jpa, hibernate)diega2009-07-12T13:31:46Z2009-07-12T13:31:46Z<p>It looks like you have to configure your Datasource as XA. Here you have an example</p>
<pre><code><datasources>
<xa-datasource>
<jndi-name>jdbc/my_ds</jndi-name>
<xa-datasource-property name="URL">jdbc:mysql://localhost:3306/my_db</xa-datasource-property>
<xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
<user-name>root</user-name>
<password>password</password>
<track-connection-by-tx>true</track-connection-by-tx>
<exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter</exception-sorter-class-name>
<valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.MySQLValidConnectionChecker</valid-connection-chec ker-class-name>
<min-pool-size>1</min-pool-size>
<max-pool-size>10</max-pool-size>
<idle-timeout-minutes>10</idle-timeout-minutes>
<metadata>
<type-mapping>mySQL</type-mapping>
</metadata>
</xa-datasource>
</code></pre>
<p></p>
http://stackoverflow.com/questions/1112173/spring-daosupport-and-persistancecontext-entitymanager/1113044#11130441Answer by diega for Spring DaoSupport and @PersistanceContext EntityManager?diega2009-07-11T05:48:17Z2009-07-11T05:48:17Z<p>For injecting the EntityManager you just need to add the next definition</p>
<pre><code><bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
</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#10894760Answer by diega for Best API/LIB for encoding/decoding base64/quoted-printable in Javadiega2009-07-06T22:20:36Z2009-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#10873690Answer by diega for Is using data transfer objects in ejb3 considered best practicediega2009-07-06T14:45:44Z2009-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#10714890Answer by diega for What is your favorite hot-key in Eclipse?diega2009-07-01T21:30:15Z2009-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#10654120Answer by diega for How to mark some code that must be removed before production?diega2009-06-30T19:06:09Z2009-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#10610530Answer by diega for Maven dependencies jar not usablediega2009-06-29T23:20:34Z2009-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#10588393Answer by diega for Google App Engine: Redirect All URLsdiega2009-06-29T15:09:23Z2009-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#10564651Answer by diega for Is there a way to declare an annotation attribute for *any* enum?diega2009-06-29T03:36:42Z2009-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#10550611Answer by diega for Java reflection: How do I override or generate methods at runtime?diega2009-06-28T14:56:58Z2009-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#10538401Answer by diega for Simple Workflow Management with JEEdiega2009-06-27T23:13:37Z2009-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#10518321Answer by diega for Java EE Jar file sharingdiega2009-06-27T00:36:35Z2009-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#10468352Answer by diega for Can Drools Flow scale to executing hundreds of thousands of process instances per day?diega2009-06-26T00:25:53Z2009-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#10450290Answer by diega for Drools related problem...diega2009-06-25T16:57:38Z2009-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#10442582Answer by diega for Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented?diega2009-06-25T14:26:21Z2009-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&view=markup&sortby=rev&pathrev=39121" rel="nofollow">http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/trunk/jboss-j2ee/src/main/javax/ejb/EJBException.java?revision=39121&view=markup&sortby=rev&pathrev=39121</a></p>
http://stackoverflow.com/questions/948195/application-server-to-use-or-not-use/1044138#10441380Answer by diega for Application server - to use or not use?diega2009-06-25T14:03:53Z2009-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#10426880Answer by diega for @EJB injection and the Enterprise Naming Context - relation between the two.diega2009-06-25T07:57:46Z2009-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-javaComment by diega on Passing PHP output stream to Java diega2009-07-11T17:41:17Z2009-07-11T17:41:17Zwhat 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#1113044Comment by diega on Spring DaoSupport and @PersistanceContext EntityManager?diega2009-07-11T13:17:30Z2009-07-11T13:17:30ZI 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-projectComment by diega on How to use classes from another project?diega2009-07-09T20:56:10Z2009-07-09T20:56:10ZSorry 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#1063563Comment by diega on how to get variable names at runtime?diega2009-06-30T13:10:40Z2009-06-30T13:10:40ZWith 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#1044258Comment by diega on Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented?diega2009-06-25T15:56:09Z2009-06-25T15:56:09ZI think they put it as fixed because is the way they want this to behave :-/