Sorry, but the answer is No.
That component was take over by another developer and he remade it in different fashion.
I am specializing in server side technologies and, honestly, it was my first...
Type: Posts; User: ggary; Keyword(s):
Sorry, but the answer is No.
That component was take over by another developer and he remade it in different fashion.
I am specializing in server side technologies and, honestly, it was my first...
Apparently there is a jar file lib/jboss-archive-browsing.jar under hibernate-entitymanager that provide that class. I still have no idea what purposes it serves but but adding it to the classpath...
I am trying to unit test my JPA/Hibernate component. So, I created a little test suite and changed my application context file to use LocalEntityManagerFactoryBean like below:
<bean...
Am I asking something so trivial that nobody bothers to reply even with RTFM flame, or it is something that nobody knows? Do I have to dump Spring to work with SLSB? Anyone! Voice your opinion please.
I am trying to develop JAX-WS web service which is suppose to call method of a Spring injected bean. I am struggling with it for almost two weeks without much success. Separately these two things are...
Nobody responded to my previous post and I am still quite confused.
If someone can point me to a complete example, I will greatly appreciate it.
I am not a newbie with Spring, however I am just...
I am trying to rejuvenate some old web service for spam processing that was originally written in AXIS 1.
I decided to try SLSB based web service and created this code based on existing API:
...
I'll try to replicate it but still do you know how the transaction proxy knows when to do commit. I understand that if next intercepted method REQUIRES_NEW, proxy will commit existing one and starts...
I did not say that I am getting deadlock. Deadlock is usually recognized by the DB engine and one of two transactions is aborted. What I am getting is when second user is trying to work with the same...
I do not question if it commit or rollback. I am not clear when it happened.
No, rollback is clear. If exception occur transaction is rolled back.
I have a number of methods that are...
I am using TransactionProxyFactoryBean to handle my transactions.
It kind of working but not satisfactory.
The problem is that I do not see how to commit the transaction.
For both...
Sorry for not being able to help. I am over my head now.
The only thing that I noticed is that you are mixing servlet and portlet classes.
I am not sure that it is acceptable, but as I said, I am...
Hmmm...:confused:
I am also at a loss. Post you complete stack trace. May be that will give me a hint. Otherwise, you'll need to seek help from the front-end expert, which I am not.
<put name="title" value="MBA: Clients"/>
<put name="selected.menu" value="Test >"/>
<put name="selected.menuItem" value="Test"/>
What are these properties mean? It looks to me...
What is in your view.properties file?
I am newbie to tiles myself. I am actually specializing on the back end development.
I am not sure who does it. Probably one of the tiles facade or helper classes. I know that when tile is loaded a...
I kind of make it working, however I cannot say that I am completely satisfied with the solution. Here is what I did:
My tiles-defs.xml looks like
<tiles-definitions>
<definition...
Yeah, this is the line in org.acegisecurity.ui.rememberme.TokenBasedRememberMeServices, however, I am logged in when this happened. Authentication should not be null there.
I did find this issue...
I had this piece working before and I didn't change anything in this area.
However when I click on logout link I am getting NPE in Acegi.
java.lang.NullPointerException...
Thanks, that makes it clear. However it should have been mentioned in the documentation somewhere. IMHO it is a definite flaw of the forms taglib.
I guess, I won't be using <form:options> then.
That was stupid of me. :o
Jsp certainly won't create an object instance for me. I did fix this thing
but now I am having another problem with <form:options> tag
I am passing in a reference object...
Thank you, it works mostly. It failed in the following line
<form:select path="orders[${ordersLoop.index}].shippingMethod.carrier.companyId"
with...
My JSP is displaying a list of sales orders in the table within a form.
<form:form method="post" commandName="orders" action="">
I am passing the list in from the controller as an ArrayList and...
I did my cleaning and some testing too. There are some problems still.
First, when I click on the navigation tile, which does not belong to the same definition as a content tile and does not have...
I got this thing working. Basically in the the ComponentControllerSupport implementation I am dumping model into the request.
for(Iterator i = model.entrySet().iterator(); i.hasNext();)...