HI , thanks for replying. I can query the xml files using some XQuery or other frameworks like Basex.
Type: Posts; User: sureshm; Keyword(s):
HI , thanks for replying. I can query the xml files using some XQuery or other frameworks like Basex.
Hi all,
I want to store the incomming data from web requests to an xml, instead of storing it in a database.
So, I just want to know if there is a way that spring handles such xml...
any replies?
Also when I send multiple requests in a short span of time , it is giving me an errro like "404: Network error "...
Please help
I need to send large user activity log data(this data is a multi line strings) from UI to spring(mvc) controller's method
currently I am doing it like this
@RequestMapping(value =...
Thanks for your reply.
Is there any way that we can do this functionality in spring 3.0.5 , because now i am not in a position to upgrade to 3.1
Thanks
Also when i declare the method as
String logReport(@RequestBody("byteArray") byte[] data) {
...
it incorrectly gives the data back
Please let me know how to declare the method signature...
Hi I want to send a byte[] to the controller and create a string back from that byte[] .
By default spring's httpbytearrayconverter incorrectly converts the byte[] ( when i send a byte[] of size...
to be more clear, 2 methods in my controller class are like this :
@RequestMapping("/registerAccountStep2")
public String registerAccountStep2(
@ModelAttribute("acBean")...
HI , I am implementing user registration for a website where the registration process is a 5 step process each I need to get a form from client.
For ex. in 1st stage only username and password ,...
hi Abhi, thanks for replying.. after struggling a lot , i have found it works in that way .
thanks
suresh
my java file :
@Controller
public class LoginController {
@RequestMapping("/1")
public String doLogin1(HttpServletRequest req, @ModelAttribute("command") LoginBean bean, BindingResult...
Hi Abhi, thanks for replying.
Actually I did the same thing..
Finally I made it to work.
the thing is i was in an opinion that , if the servlet mapping is like this :
servlet-mapping>...
I dont have any class level annotationa
Hi could any one of please help here why it is giving the error ?
url invoked : http://localhost:8080/springmvc3/login/1/
Tomcat Log:
INFO: Initializing Spring FrameworkServlet 'appServlet'
20...
Hi, is there any way that spring populates all the request parameters in a specified bean ?
I have lot of parameters coming from a request and i dont want to read them from request object one by...
hi .. i have a requirement that my request url is same always same but with different parameters(some are hidden) ....so depending on each parameter i have to handle it in a differ request method
...
Hi , between these two MVCs which one do we prefer and why ?
This question I got in many interviews which I could not answer properly
Any replies are highlt appreciated .
Thanks
Suresh