Search:

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

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    1,002

    Consuming Spring Web Service in .net

    Hi

    We are running into an issue consuming spring web service in .net. We can consume it in Java with no problem.

    The problem it reports is that it can not connect to remote. The web service...
  2. Replies
    6
    Views
    1,253

    We did something like this public class...

    We did something like this

    public class StartupLoader implements ServletContextAware {

    public void service(HttpServletRequest request, HttpServletResponse response)
    throws...
  3. Replies
    3
    Views
    1,190

    I will look at the util.map In the case that I...

    I will look at the util.map

    In the case that I want to plug in my own implementation (such as in my case), what is the best way to approach this? I was under the impression initially that Spring...
  4. Replies
    3
    Views
    1,190

    Custom Map implementation

    I was wondering if there is a way to notify the Spring that I am using a custom Map implementation. I am looking for a simple way of building a map whose key is case insensitive string. To do that I...
  5. Replies
    0
    Views
    5,109

    A more JAXB related question

    I have not used JAXB in the past, and while using it with Spring-WS I ran into an issue and wondering if someone can clarify this for me.

    First here is the exception that I am seeing
    There's no...
  6. Replies
    13
    Views
    13,767

    I found the problem. It had to do with case...

    I found the problem. It had to do with case sensitivity in localPart + an issue with my compile setting.

    Please ignore this issue. Sorry for confusion. I still have some other issues that I am...
  7. Replies
    13
    Views
    13,767

    Actually I did have @Endpoint annotation in...

    Actually I did have @Endpoint annotation in CaseSearchEndpoint. I made a mistake not copying/pasting correctly. Any other clues?
  8. Replies
    13
    Views
    13,767

    No endpoint mapping found

    I get this error message on the server when trying to access a service (and as a result http 404 error on client side)
    WARNING: No endpoint mapping found for [SaajSoapMessage...
  9. Thread: SAAJ library

    by ssquare
    Replies
    1
    Views
    1,149

    SAAJ library

    I am trying to get my first prototype app up and running on Spring WS. I have the server side deployed, but had a quick question regarding client side. When I run the client side (using JAXB for...
  10. Which JAXB implementation is currently...

    Which JAXB implementation is currently recommended? Reference Implemenation or JaxMeAPI or ?
  11. Replies
    4
    Views
    2,017

    We were using Cisco's Content Switch Balancing...

    We were using Cisco's Content Switch Balancing and ran into the same issue. There is nothing Spring Can do about it, as the Switch was turning an SSL request to non ssl request before forwarding it...
  12. Single Session multiple transaction Hibernate/Spring

    Despite trying to understand the issue for a long time, I am still not sure how running multiple transactions in a single session behave. A really good thread on this discussion here
    does shed some...
  13. Replies
    6
    Views
    1,253

    WebApplicationContext issue

    I am kind of confused on the context hierarchy. I have a setup where my applicationContext.xml exist under Web-INF, and so does myapp-servlet.xml. When the system starts, these files are picked up...
  14. Replies
    6
    Views
    1,641

    You would have to define a key in your message...

    You would have to define a key in your message source file
    something like

    typemismatch.formname.attrname=Date could not be converted
  15. Replies
    6
    Views
    1,291

    Check this thread...

    Check this thread
    http://forum.springframework.org/showthread.php?t=13627&highlight=redirectinterceptor

    This is exactly the problem you are referrring to.
  16. Replies
    7
    Views
    4,556

    You are right. I did not think about that part....

    You are right. I did not think about that part. Looking at the source cod of the tag here is what it says while writing out the value attribute
    /**
    * Writes the '<code>value</code>' attribute to...
  17. Replies
    6
    Views
    1,291

    I think that sessionForm property is not used for...

    I think that sessionForm property is not used for the objects that you save in the ModelAndView inside onsubmit method call. I had to resort to webutils approach that I described. I am very new to...
  18. Replies
    7
    Views
    4,556

    Well it should be done in your formBackingObject...

    Well it should be done in your formBackingObject method implementation. Whichever object has this nazwisko attribute, that object should be instsantiated in the form backing object method, and then...
  19. Replies
    6
    Views
    1,291

    My understanding is that when you are setting the...

    My understanding is that when you are setting the value in the onSubmit (I'm assuming use ModelAndView), you are setting it in the request scope (that's what I figured out when I stepped through the...
  20. Replies
    1
    Views
    1,052

    I am not sure how to solve the complete issue,...

    I am not sure how to solve the complete issue, but the exception itself is pretty clear. The class org.springframework.web.servlet.view.InternalResourceViewResolver has the prefix property, the JSTL...
  21. Replies
    2
    Views
    1,269

    There could only be two scenarios that is causing...

    There could only be two scenarios that is causing this.

    1. The request is coming in as a GET. All get requests are consdiered a request for a new form, rather than submitting a form

    2. The form...
  22. Replies
    8
    Views
    1,648

    I had a similiar problem. The way I overcame this...

    I had a similiar problem. The way I overcame this problem was using ServletContextAttributeExporter

    <bean class="org.springframework.web.context.support.ServletContextAttributeExporter">
    ...
  23. Replies
    2
    Views
    1,730

    May be I don't quite understand the question, but...

    May be I don't quite understand the question, but I generally use Spring's built in bindging mechanism, so that I don't have to write the code. If you are either using spring bind tag or spring form...
  24. Replies
    2
    Views
    929

    Well, when I saw code in of the turorial like...

    Well, when I saw code in of the turorial like this


    Map myModel = new HashMap();
    myModel.put("now", now);
    myModel.put("products", getProductManager().getProducts());
    ...
  25. Replies
    1
    Views
    956

    Any Table tag available?

    I was wondering if any of you knew of existing table tag? I am not necessariliy looking for display value kind of table, I am looking more for data entry table where I have multiple rows and multiple...
Results 1 to 25 of 27
Page 1 of 2 1 2