Rajesha Acharya

Greenhorn
+ Follow
since Mar 18, 2013
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
2
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Rajesha Acharya

I have been using oracle customer care and billing(cc&b) for a while in my desktop. Now I am just wondering is it possible to integrate cc&b in mobile?
I have developed one application, where if i enter my email id, which is registered with amazon website then i should be able to view my activities in my application which i did in amazon website. Is this possible to do, if so how?.. any help is greatly appreciated.
10 years ago


How to login to my struts2 application using facebook login credentials?

I have created struts2 file upload application which has username and password to upload any files. now i want to use facebook userid and password to login to my struts2 application, how can i achieve this, any help is greatly appreciated.
10 years ago
I am customizing opentaps-1.5.0. I want to change the favicon symbol to the one which i like but i am not able to locate the code related to favicon change, can anyone please help me to change the favicon.
I downloaded opentaps from the website http://www.opentaps.org/products/download. after that i am trying to install it but with no success, so please anyone tell me how can i go about that. I am using Mysql as a database.
10 years ago
as far my knowledge enterprise application deals with 2 different organization. Example if we are using Axis Bank atm machine to use our HDFC account, this time we need enterprise level application. Web application is just like taking information from web server.
thank you so much dear sweetheart,,, you have been helping me from 1 month now...thanks for everything.. now my last question on this topic. think like i am your student, my first question to you, 1) if i learn struts2 can i develop any application including desktop, web application and enterprise application?
because my team leader said, we can not develop enterprise application using struts2, we can only develop web application and stand alone application, to develop enterprise application we have to use Springs and EJB, this is what he said. So you are telling that he is wrong, am I right?
can we develop enterprice application using struts2?? please anyone tell me, i have been searching in Google a lot for this. and my other question is if i know struts2, do i have to learn EJB or Springs?. These questions may look silly but i am new to java and its stuffs so i am asking for the help.
Hi
I just want to call jsp page from simple java class where i don' t have any request objects. without using any servlet. Just forward to jsp page from java class.
i have succefully inserted data inside the mysql using xml dom parsing now i want to display the mysql data on my bar chart, so please help with the proper code.

my database has 4 columns, namely "name", "college", "grade", "nature"

so i have inserted 4 different names and out of 4 names, 2 are sharing the same college. each one are having different grade like good bad and medium. same goes with the grade as well, like first, second, third. So now i need to write the bar chart for this. please help me out.
10 years ago
i solved it sir,,,my friend helped me anyway, thanks in advance for future helps... and sorry if my "love you" in case hurt u... ;) but after all i irritated you and still you were answering me so i felt like you are really caring me, so i said love you...
11 years ago
hello sir. i recently started to learn struts2 directly without having any knowledge on struts1. i already started up with my first project to upload files using struts2. i have completed this project by my own, so functionality works very fine but i have an issue with the design. struts2 framework unwantedly produce tr and td tags so when output is displayed on the jsp page, it will sit in different blocks, so please help me out with this design issue with the struts2.
here is my code.



<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">@import url("menu.css");</style>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>

<script language="javascript" type="text/javascript">
var x = 0;
function submitFunction1(y){
x = y;
}

function submitFunction(i)
{
if(i == x){
document.forms["theForm"].action="submitpendingreport?userid="+i;
document.forms["theForm"].submit();
return true;
}else{alert("Press correct Button");
return false;
}
}
</script>
</head>

<body background="images/bg27.jpg">
<s:form id="theForm" method="post" enctype="multipart/form-data" >
<h2><font sytle="text-align:left" color="red"> <strong>Welcome <s:property value="#session.a" />

<p align="left" > Admin Page<p>

<center><strong><p style="font-family:verdana;color:red;">Welcome To Student Assignment/Report Submission form</p></center></strong>
<table width='100%' height='90%' border='1'>
<tr align='center'>
<td height='39' colspan='2'>
<strong><a href="user.jsp">Home</a>         
<a href="AboutUs.jsp">AboutUs</a>         
<a href="Geneology.jsp">Geneology</a>         
<a href="Clients.jsp">Clients</a>         
<a href="ContactUs.jsp">ContactUs</a>         
<a href="Logout.jsp">LogOut</a></strong></td>
</tr>
<tr>


<td width='18%' height='500' valign='middle'><p> </p><blockquote>
<a href="pendingreports">View Pending Report</a><br/><br/><br/>
<a href="Submitreport.jsp">Submit Report</a><br><br><br>
<a href="viewsubmit">View Submitted Report</a><br><br><br>
</blockquote></td>

<td width='82%' colspan='2' align="left" >




<TABLE BORDER="1" >
<TR>
<TH width="1px">id</TH>
<TH>Subject</TH>
<TH>Action</TH>
<TH>Status</TH>

</TR>



<s:iterator value="reportList" var="record">
<TR>
<TD> <s:property value="#record.id"/> </TD>
<TD> <s:property value="#record.subject"/> </TD>
//i get here in this line, this line produces unwanted tr and td tags// <TD> <s:file name="pending" onchange="submitFunction1(%{#record.id})"/> <s:submit onclick="submitFunction(%{#record.id})"/> </TD>
<TD> <s:property value="#record.reportStatus"/> </TD>
</TR>

</s:iterator>

</TABLE>
</td>
</tr></table>
</s:form>
</body>
</html>
11 years ago