Okay, then I'm not using staged deployment. I think the actual verbiage on the admin console is the opposite, it asks if I want to run from the current location. Any way, you wouldn't happen to...
Type: Posts; User: spencermatthewp; Keyword(s):
Okay, then I'm not using staged deployment. I think the actual verbiage on the admin console is the opposite, it asks if I want to run from the current location. Any way, you wouldn't happen to...
I've deployed it from the admin console in weblogic, I've also deployed from Jdeveloper. To be honest I don't know what staged mode means. I've checked that there are no duplicate libraries (My...
I'm using weblogic 10.3.5. I've deployed this application to weblogic servers before without a problem, but all of the sudden, it's not working on one particular machine. I'm getting the dreaded...
Well, I did find the directory. Unfortunately it looks like Autodeploy does overwrite the files when they are deployed. The date created on all the file in the lib directory have the same timestamp...
Is that true even when I'm using auto deploy and non-expanded war files?
My weblogic is 10(something) it is the version that comes bundled with Oracle Jdeveloper 11.1.1.3
I'm sorry but I never did find the root of the problem. I ended up going back to 2.5.6. Honestly, I don't remember why I tried to go to 3 in the first place.
Fortunately, because this was new...
First the basics: MVC 2.5.6, Tiles 2, Webflow 2.0.9.
Production Server Weblogic 9, Test server Weblogic 10 (don't ask).
Originally, I was allowing my IDE to put the packages in the war file, but...
I figured it out. Here's what's going on
Class ZZZ in an extention of JJJ which is an extention of AAA.
AAA is class that defines all of the string attributes of ZZZ (At least the ones I need...
Here are the essentials: Spring MVC 2.5.6, Spring Webflow 2.0.9
Here's what I have
A Service Object (defined in as a Spring Bean) which has a DAO (Also defined as a spring bean and injected to...
The code I put above was edited. I changed the variable names and package names. In my actual code, I had a typo. I was attempting to use a variable that did not exist. (I dropped a letter out of...
I found the problem, it was a type mismatch.
In frustration I hit the submit button about 100 times, and then I noticed something. The tracer showed a type mismatch on the request.
The Objects...
Using MVC 2.5.6 & Flow 2.0.9 Here is the relevant code
WebFlowConfig in MVC config
<!-- Executes flows: the entry point into the Spring Web Flow system -->
<webflow:flow-executor...
I upgraded from Spring 2.5.6 to Spring 3.0.3 because I was getting an error about my AOP scoped beans not being serializable in Spring Webflow 2.0.8. (Also upgraded to 2.1.0)
Now: I'm getting...
I actually found a solution, I just got too busy to post a reply. It's actually none of the above.
<c:if test"${exists error in fieldA || exists error in fieldB}">
becomes this (Assuming...
I'm wondering if someone can explain to me the relation ship between
<spring:hasBindErrors name="commandName"> and
<form:form commandName="commandName">
specifically, when I use the form tag...
It's pretty obvious from the error what the problem is. Perhaps I was not clear in that I understood the error, I just wanted to know if there was a way around it.
Method injection was/is not an...
I'm building an application in which I'd like to declare string beans, and scope them to session. This way, I can have a single string object I pass to all the controllers for each session. I want...
At this point, this application is a very small demo/proof-of-concept application. Since everything was already in the SimpleUrlHandlerMapping, everything will be fine. (I didn't even realize I had...
Hmm, interesting. I removed this
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
And everything is hunky dory. I was defining everything in...
I took a look at the handler interceptor. It looks to me like the interceptor is applied on every request. Is that correct? It's a good idea, except for the fact that there are only a few...
I'm sure there are other ways to do this, but here is what I do.
I have my properties files in the class path for the languages I may need:
props_en_US.properties
props_es_US.properties...
I've been looking for this answer for days. Maybe I'm trying to do something I shouldn't, but I don't see why it can't work. I'm working on an application that has a web side and an IVR side. In...