Im frustrated after looking everywhere why this behaviour occurs.
I have set up a restful ws(server) with spring-3.0.5 and deployed on a websphere 6.1 server.
I call the restful service by...
Type: Posts; User: kanonmicke; Keyword(s):
Im frustrated after looking everywhere why this behaviour occurs.
I have set up a restful ws(server) with spring-3.0.5 and deployed on a websphere 6.1 server.
I call the restful service by...
Hi,
My client method looks like this.
@RequestMapping(value = "/{userId}", method = RequestMethod.GET)
public void testClient(@PathVariable String userId) {
try{
...
Hi,
Maybe not a spring query but... using spring-3.0.5 REST api.
Im trying to transfer a pdf document from server to client.
I want to return a byte[] or similar, I want the client to tranform...
So, the DataAccessException is hidden in the transactions jar, Thanks alot...
Yes, offcause, I should use interfaces...
Yes, Im a maven-fan, jumping into a maintainance project for a couple of...
So Im using spring-3.0.1. Websphere 6.1
Im using JDBCTemplate class.
I get an exception thrown
Have my datasource set up in websphere,
in my spring servlet I have
<jee:jndi-lookup...
I have read the spring doc and other online examples but is probabley missing an importent configuration...
My export of the a file get exported, but as an "exportExcel.do" instead of...
Hi,
I have a project with a webservice server and client.
Now Im generating the server .java ws files with maven expression below.
I would like to generate client .java ws files by maven...
Thanks you made my day :-)
putting all xxx-context.xml and xxx.properties files in src/test/resources and annotate the test class with:
@RunWith(SpringJUnit4ClassRunner.class)...
Hi,
Have problems getting the petclinic tests (hibernate) to work with maven.
I have renamed the test classes to end with Test and not Tests.
The Test classes run perfectly in eclipse but trying...
The coin fell down...
My request from soupUI looks like this
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sch="http://mycompany.com/ws/schemas">...
I changed my soupUI call to look like this...
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sch="http://minuc.se/ws/schemas">
<soapenv:Header>...
Hi!
Have been struggling for a loong time to get the most simple example with http authentincation to work, my purpose is to make a webservice available for customers to call.
Im pretty sure I...
Hi,
In my application I have urlmappings like searchCar.action and editCar.action.
<prop key="/searchCar.action">searchCarController</prop>
<prop key="/editCar.action">editCarController</prop>
...
If there's any interest in how I solved it!
JSP.searchform
<form:form method="GET">
searchParams...
</form:form>
JSP.displaytable:
<display:table name="command.ticketList" pagesize="20"...
Hi, have searched and read the hole forum for ideas but suggested solutions haven't helped...
This is a simple and straightforward form that many people must have come across.
I want to show a...
ok, I found my 'problem' !!
The code:
<display:table name="command.stationList" class="displaytag" id="row">
<display:column title="Short">
<form:input...
Hi,
Yes that is also something I tried with the following result:
ERROR [InputTag] Parsing of JSP EL expression "${row_rowNum)].shortName" failed
javax.servlet.jsp.JspException: Parsing of JSP...
ok, I understand !
The problem here is that I cannot index the parameter inside the form:input declaration.
This code write the number of row:
<%= pageContext.getAttribute("row_rowNum") %>
So...
Hi!
Maybe this is not the right forum but does anyone know how to create editable, binded rows in displaytag with springs form el-language?
what I want to do is:
<display:table...
Thanks Peter, it did the trick,
When I changed my return statement from my onSubmit method in the controller class it all works fine.
Cannot use the fmt in the jsp because then it will not bind...
Hi.
I have a List witch holds Car classes with two Date variables
class Car{
Date dateOne;
Date dateTwo;
...
}
Formatting dates in the gui works fine with the customDateEditor in my...
Solved it,
Instead of going towards the jsp I should go towards my action and point that out in the objectDefinitionSource and my exceptionMapping. In the objectDefinitionSource I make it avaliable...
I thought I just made my user_changePassword.jsp free of any authority by specifiying it in my objectDefinitionSource like this
<property name="objectDefinitionSource">
<value>...
Hi,
Im trying to route my users to different jsp pages depending on the exception thrown by acegi.
My authenticationProcessingFilter looks like this.
<bean...
Im a little bit confused after reading the docs and is challanged with a problem...
I have a "Class One" with variable "Class B".
The "Class B" is choosen from a dropdown in the gui to be bind to...