646 reputation
21643
bio website
location
age
visits member for 1 year, 11 months
seen 2 days ago
stats profile views 129

May
8
revised Batch script to loop over files while renaming them
added 427 characters in body
May
8
comment Batch script to loop over files while renaming them
Thanks a lot, that's even better.
May
8
revised Batch script to loop over files while renaming them
deleted 2 characters in body
May
8
accepted Batch script to loop over files while renaming them
May
8
revised Batch script to loop over files while renaming them
added 465 characters in body
May
8
comment Batch script to loop over files while renaming them
Ok, I figured out the manual was somewhat misleading. By directories they meant subdirectories... I've updated my question above with the solution. Thanks Endoro.
May
8
comment Batch script to loop over files while renaming them
Even in command line, if I try dir /b /ad "J:\Temp\*.jpg" I get File Not Found, but if I try dir /b "J:\Temp\*.jpg" files are listed... why is that?
May
8
comment Batch script to loop over files while renaming them
Thanks.. I actually didn't call it rename in actual code, but thanks for mentioning this. I think what prevents your code from fully working is that I want the dir to output full path as well, otherwise %%a takes the path of batch file (which is wrong). I tried changing the switch /a-d to /ad as shown here: helgeklein.com/blog/2010/08/… however I only suddenly got File Not Found...
May
8
asked Batch script to loop over files while renaming them
May
2
awarded  Popular Question
Apr
22
asked Changing “targeted runtime” for multiple projects
Apr
19
awarded  Popular Question
Apr
18
revised Forwarding a request from a JSF managed bean to a Struts 2 action does not work
edited title
Apr
18
answered Forwarding a request from a JSF managed bean to a Struts 2 action does not work
Apr
18
comment Forwarding a request from a JSF managed bean to a Struts 2 action does not work
I have seen in the following thread forums.oracle.com/forums/message.jspa?messageID=7185500#7185500 they suggest doing what I originally did: forward to the struts action from a managed bean (the guy seems to have a mistake in his 2nd code snippet). However I am not sure he actually tested it. It seems very "reasonable" for it to work, but it does not for me.
Apr
18
revised Forwarding a request from a JSF managed bean to a Struts 2 action does not work
edited tags
Apr
18
awarded  Notable Question
Apr
18
comment Forwarding a request from a JSF managed bean to a Struts 2 action does not work
I believe redirect wold work, since under the hood it's just two separate requests, the second is launched by the browser. The problem is that after the redirection, I lose the previous request & response data. Any trick how I get out of this deadlock? When I submit a form, I must first let the request pass thru the (legacy) Struts action - then I need to somehow forward it to a JSF managed bean, in order to let JSF create the result view. I should submit the form by POST, not GET, unfortunately.
Apr
17
comment Forwarding a request from a JSF managed bean to a Struts 2 action does not work
For some reason, I thought the source of the problem is that the JSF managed bean lives within a servlet (the JSF servlet), while the Struts action lives within a filter (the Struts 2 filter). And filters are called after all the servlets are completed. So it seems like if I forward from a JSF bean to a framework that is built around a filter, it cannot just work... since there is no filter yet as long as the JSF bean is alive. Or do I misunderstand the life cycle?
Apr
17
comment Forwarding a request from a JSF managed bean to a Struts 2 action does not work
Why does it look to you like the url I used (/myAction), in order for it to work, should be relative to the webserver root folder (http://mydomain.com)? It should be relative to the application context (http://mydomain.com/MyApp). And as you said, it is. So it should have worked, if I get you right. It does work with xhtml files, that are also found at the root of the application context, such as /welcome.xhtml. Did I misunderstand what you meant?