Search:

Type: Posts; User: kanonmicke; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    0
    Views
    292

    RESTful double methodcall.

    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...
  2. Replies
    3
    Views
    1,696

    Hi, My client method looks like this. ...

    Hi,

    My client method looks like this.



    @RequestMapping(value = "/{userId}", method = RequestMethod.GET)
    public void testClient(@PathVariable String userId) {
    try{
    ...
  3. Replies
    3
    Views
    1,696

    PDF RESTful or webservice

    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...
  4. Replies
    2
    Views
    1,013

    So, the DataAccessException is hidden in the...

    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...
  5. Replies
    2
    Views
    1,013

    WHY....... DataAccessException

    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...
  6. Replies
    0
    Views
    517

    excel export problem help...

    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...
  7. Replies
    0
    Views
    1,723

    generate server and client stubs

    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...
  8. Replies
    4
    Views
    3,306

    Thanks you made my day :-) putting all...

    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)...
  9. Replies
    4
    Views
    3,306

    petclinic test in maven2

    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...
  10. Replies
    3
    Views
    1,790

    finally

    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">...
  11. Replies
    3
    Views
    1,790

    continue...

    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>...
  12. Replies
    3
    Views
    1,790

    HELP simple http authentication

    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...
  13. Replies
    2
    Views
    2,140

    UrlHandlerMapping

    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>
    ...
  14. Replies
    1
    Views
    1,605

    If there's any interest in how I solved it! ...

    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"...
  15. Replies
    1
    Views
    1,605

    simpleformcontroller displaytag paging

    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...
  16. Replies
    7
    Views
    4,025

    ok, I found my 'problem' !! The code:...

    ok, I found my 'problem' !!

    The code:
    <display:table name="command.stationList" class="displaytag" id="row">
    <display:column title="Short">
    <form:input...
  17. Replies
    7
    Views
    4,025

    Hi, Yes that is also something I tried with the...

    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...
  18. Replies
    7
    Views
    4,025

    ok, I understand ! The problem here is that I...

    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...
  19. Replies
    7
    Views
    4,025

    form:input in displaytag

    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...
  20. Thanks Peter, it did the trick, When I changed...

    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...
  21. CustomCollectionEditor and date formatting

    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...
  22. Replies
    3
    Views
    1,119

    Solved it, Instead of going towards the jsp I...

    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...
  23. Replies
    3
    Views
    1,119

    I thought I just made my user_changePassword.jsp...

    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>...
  24. Replies
    3
    Views
    1,119

    routing error login - exceptionMapping

    Hi,

    Im trying to route my users to different jsp pages depending on the exception thrown by acegi.
    My authenticationProcessingFilter looks like this.


    <bean...
  25. Replies
    0
    Views
    697

    custom property editor query

    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...
Results 1 to 25 of 55
Page 1 of 3 1 2 3