also i am unable to import the wsdl as a project directly supplying the url
Wed May 04 15:35:44 NZST 2011:DEBUG:Getting wsdl component from...
Type: Posts; User: tct787; Keyword(s):
also i am unable to import the wsdl as a project directly supplying the url
Wed May 04 15:35:44 NZST 2011:DEBUG:Getting wsdl component from...
hi changing the location uri didnt fix it
Wed May 04 10:21:33 NZST 2011:DEBUG:>> "POST /tutorial-0.0.1-SNAPSHOT/holidayService/ HTTP/1.1[\r][\n]"
Wed May 04 10:21:33 NZST 2011:DEBUG:>>...
just to add quickly i tried without
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-ws-servlet.xml</param-value>
</context-param>
in the...
thanks for the response here are the files
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2007 the original author or authors.
~
~ Licensed under the Apache License, Version...
Hi all,
I am kinda stuck with getting spring ws to work
I am able to access the wsdl in the url
http://localhost:8080/tutorial-0.0.1-SNAPSHOT/holiday.wsdl
In soap UI i am using the...
I was wondering it has anything to do with the transformLocation property set to true
location in wsdl
<wsdl:service name="HumanResourceService">
<wsdl:port...
Hi
I did the same and still having issues. I see the dynamically generated WSDL when i try the url
http://localhost:8080/tutorial-0.0.1-SNAPSHOT/holiday.wsdl
but when i try to access the...
I am trying to get partial rendering to work for one major reason. I am using style overlay and when i try to reload the entire page with error i am loosing the overlay style. (using...
thanks for that , can you paste some code to show how u render fragments.
All i know is that JSF follows component based paradigm , but fragment rendering should behave same in both i suppose....
Hi
Thanks for that, I am a bit new to the spring framework. Can you also tell me how the JSP gets updated on submit.Is it refreshing the entire page or just the error fragment. If it is just the...
Hi all
I need to render the error as a fragment in flow. what do i need to update in the jsp so that only the error div get updated.
do i need to make any ajax type calls or spring...
Hi All,
I want to force a logout inside a flow. how can achieve this.
i tried some thing like
<end-state id="cancel" view="/logout"/>
also tried
Hi All
I was over complicating by using a sub flow where i could have achieved the same within the current flow..
I just had to pass to another view state instead of a sub flow
...
Hi All,
I have a simple flow to render just wondering what is the correct approach.
I have a customer form to update. When i click save (before the actual save process) I need to ask the user...
Hi
I am newbie to spring but this worked for me
<beans:bean id="passwordEncoder" class="org.springframework.security.authentication.encoding.ShaPasswordEncoder">
...
Thanks Winch & Taylor,
I have got it to work the way i want it.
I will just paste the redirection code i modified just in case someone else wants to use the same logic .
<beans:bean...
Hi All,
I am missing some pieces in adding another Filter that checks to see if the current users credentials are expired.
I added the custom-filter and the corresponding bean
I have two...
Hi
Thanks for that, but I am afraid when i tried it out its not working . It seems to me like
throwing of the exception is clearing out the authentication object in the context
###...
Hi all,
I am trying to figure out the proper logic to implement the force/reset/renew password on successful login. I am novice to spring.
I am using spring 3.0.5 release.
I am copying the...