Veera Sundar

Greenhorn
+ Follow
since Jun 08, 2007
Merit badge: grant badges
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
1
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Veera Sundar

Hi All,

In my Java web application, the NTLM domain controller name is specified in web.xml like this:



In the above XML, we've hard-coded the domain controller name (DCNAME) in the param-value tag.

Now, is it possible to read this 'DCNAME' from a JNDI variable, instead of hard-coding it in web.xml file?

thanks in advance
15 years ago
Hi All,

We are using JCIFS NTLM authentication, for which we've configured the filter in web.xml like this



the above code specifies a single domain controller SERVER1 for the NTLM authentication. Suppose, I want to give one more server also (i.e. when the SERVER1 down, NTLM should check my backup server SERVER2), how do I give it in the above code? Is it like <param-value>SERVER1, SERVER 2</param-value> ?

Thanks in advance.
15 years ago
Yes. you can implement Ajax functionality with out using any frameworks at all, since both are not dependent.

Have a look at this article: Implementing Ajax in Java web application using JQuery

Originally posted by renu richard:
Rajani,
I am familiar with JSP's. But i dont know anything about AJAX. Could you please refer me to any URL's where i could see similar kind of sample code or where i can learn aout AJAX.
[ December 09, 2008: Message edited by: renu richard ]



I hope this one Implementing Ajax in Java web application using JQuery helps.
Thanks for all your responses Darya, Nachiket and James!
Hi,

I've been using UML modeling tools starUML and argoUML. Here are my observations about these two applications.

Currently I need to evaluate other open source UML model applications also. Can you please suggest some good open source UML modeling applications other than those I've mentioned in my article?
I struggled little bit with Struts 2 initially, but later I could catch up easily. IMO, I think the Struts 2 Hello World example given in Struts2 site is little tricky to understand. So, I wrote my own version of Struts 2 Hello World.
15 years ago

Originally posted by abburi:

both can be combindly used, to take best out of them,



Yes. I prefer to use both frameworks, Struts 2 for the front end and Spring for DB access.
15 years ago
Thanks a lot for your comments.

How about this approach? Struts 2 for the Front end control and Spring for the database operation and IoC. Any comments on this?

Can anybody give some references/links for integrating Spring and Struts 2?
15 years ago
Hi All,

I've been working on a new web project concept for quite some time and now I am thinking to start with the development. I've chosen Struts 2 as my web framework. But lately I am seeing many negative comments (Framework Comparison) about Struts.

So just wanted to know your thoughts on Struts 2. Is it good or bad? If you are asked to suggest a framework for a web project (AJAX enable with back end database actions), which one will you suggest?

Thanks in advance for all your comments.
15 years ago
Hi,

I need to use display tags library in my JBoss portlet. I have added the necessary JARs for display tag library and I have given the taglib directive as .

But I am getting an exception saying that the URI can not be resolved.

Any help on this will be really useful.

Thanks,
15 years ago
I think Integer.parseInt will solve the problem.
15 years ago
Hi All,

I am new person to portal development work. I am using JBoss 2.6.4 as my portal environment. I would like to get clarification on few points.

  • Is it possible to use Struts/Spring/hibernate framework for my portlet development?
  • If possible, which version of Struts/Spring/hibernate could be used for development?


  • Any help on this would be appreciated.

    Thanks.
    15 years ago
    Hi,

    Thanks for the reply.


    the path you are providing to the function is wrong, correct it.



    Just to clarify:

    the path should be "WEB-INF/SedApplication.properties". Is it correct?

    Thanks,
    15 years ago
    Hi All,

    I have a problem with my web application. My requirement is to read a properties file inside my WEB-INF directory. I am using the below code for this:



    But, the above code is printing "Input Stream is null". I am clueless about why is it not reading my properties file.

    Any help will be appreciated.

    Thanks.
    15 years ago