Problem reguardin MAC operating system

Hello,
I have devoloped the menubar of my Project for MAC o.s. It's working fine on firefox version 2.0 but As soon as i upload file the further processing is stops.BUt file is uploaded properly.But after that the next process stops can any body tell whts the problem.

<!--
// Author : Sandip C.
-->
<%@ page language="java" import="com.tattva.pms.employee.*, java.util.*"
session="true"
%>
<%
response.setHeader("Cache-Control","no-cache"); //HTTP 1.1
response.setHeader("ALPS","no-cache"); //HTTP 1.0
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server
%>
<% EmployeeBean anEmployee = (EmployeeBean)session.getAttribute("anEmployee");
     if(!request.isRequestedSessionIdValid() || (EmployeeBean)session.getAttribute("anEmployee") == null) {
          response.sendRedirect("invalidSession.jsp");
     Vector roles               = (Vector)session.getAttribute("myroles");
String userId = anEmployee.getUserId();
     String pwd = anEmployee.getUserPassword();
%>
<html>
<head>
<title>ALPS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<script type="text/javascript" src="scripts/stmenu.js"></script>
<script type="text/javascript" language="JavaScript1.2">
window.onerror=function(m,u,l)
     window.status = "Java Script Error: "+m;
     return true;
<%
     com.tattva.pms.employee.Role temp     = null;
     if(roles != null)
     for(int count=0; count<roles.size(); count++ ) {
     temp = (Role)roles.elementAt(count);
     if(roles != null)
          if(roles.size()==0) {
%>
<% } else { %>
stm_bm(["menu0db7",640,"","blank.gif",0,"","",0,0,0,0,0,1,0,1,"","",0,0,1,2,"default","hand",""],this);
stm_bp("p0",[0,4,0,0,3,4,0,0,100,"",-2,"",-2,90,0,0,"#000000","#F1F2EE","",3,0,0,"#000000"]);
stm_ai("p0i0",[0,"Control Panel ","","",-1,-1,0,"","_self","","","","",0,0,0,"","",0,0,0,0,1,"#F1F2EE",0,"#93A070",0,"","",3,3,0,0,"#FFFFF7","#000000","#000000","#FFFFFF","8pt 'Tahoma','Arial'","8pt 'Tahoma','Arial'",0,0]);
stm_bp("p1",[1,4,0,0,2,3,0,0,100,"progid:DXImageTransform.Microsoft.Fade(overlap=.5,enabled=0,Duration=0.43)",-2,"",-2,67,2,3,"#999999","#FFFFFF","",3,1,1,"#ACA899"]);
<% int cnt = 0;
     int cnt1 = 0;
          for(int count=0; count < roles.size(); count++) {
               temp= (Role)roles.elementAt(count);
                    if(temp.getCode().equals("000030")) {
                         continue;     
                    } %>
<%
if((temp.getType().equalsIgnoreCase("M"))){
%>
stm_aix("p1i<%=cnt%>","p<%=cnt1%>i0",[0,"<%=temp.getDescription()%>","","",-1,-1,0,'<%=temp.getDescription() + ".jsp"                                              %>',"data","","","","",6,0,0,"","",0,0,0,0,1,"#FFFFFF"]);
<%
cnt1 = 1;
cnt = cnt+1;
%>
stm_ep();
stm_aix("p0i1","p0i0",[0,"Transaction"]);
stm_bpx("p2","p1",[]);
<%
     int cnt2=0;
     int cnt21=0;
          for(int count=0; count < roles.size(); count++) {
               temp= (Role)roles.elementAt(count);
                    if(temp.getCode().equals("000030")) {
                         continue;     
                    } %>
<%
if((temp.getType().equalsIgnoreCase("T"))){
%>
stm_aix("p2i<%=cnt2%>","p<%=cnt21%>i0",[0,"<%=temp.getDescription()%>","","",-1,-1,0,'<%=temp.getDescription() + ".jsp"                                              %>',"data","","","","",6,0,0,"","",0,0,0,0,1,"#FFFFFF"]);
<%
cnt21 = 1;
cnt2 = cnt2+1;
}//if
}//fors
%>
stm_ep();
stm_aix("p0i2","p0i0",[0,"Tools"]);
stm_bpx("p3","p1",[]);
<%
     int cnt3=0;
     int cnt31=0;
          for(int count=0; count < roles.size(); count++) {
               temp= (Role)roles.elementAt(count);
                    if(temp.getCode().equals("000030")) {
                         continue;     
                    } %>
<%
if((temp.getType().equalsIgnoreCase("E"))){
%>
stm_aix("p2i<%=cnt3%>","p<%=cnt31%>i0",[0,"<%=temp.getDescription()%>","","",-1,-1,0,'<%=temp.getDescription() + ".jsp"                                              %>',"data","","","","",6,0,0,"","",0,0,0,0,1,"#FFFFFF"]);
<%
cnt31 = 1;
cnt3 = cnt3+1;
}//if
}//fors
%>
stm_ep();
<%     
     } //else
%>
function helpPage(message) {
//Define Date to display in local syntax
now = new Date();
LocalTime = now.toLocaleString();
// to bring windows at the center of screen
leftpos = (screen.width-400) / 2;
rightpos = (screen.height-400) / 2;
//Define contents of page
contents=
"<center><body bgcolor=\"#bbc2ef\">" +
"<h3>Hello " + message + "</h3>"+
"<h3 > Advance Job Creation </h3>"+
"<h3 > Version No 2.06 </h3>"+
"<h2>Avam </h2> " +
"Software Management Consultancy<br>"+
"1/9 Shreeram Apartment,Shanti Sadan,<br>"+
"Next to SNDT College, Behind State Bank of India<br>"+
"Karve Road Erandwane , PUNE 411 004<br>"+
"Phone : 91-020-5412068 <br>"+
"E-Mail : [email protected]<br>"+
"<A HREF=\"javascript:window.close()\" > Close </A>"
//Create new Window
options = "toolbar=0,status=0,menubar=0,scrollbars=0," +
"resizable=0,width=400,height=400,dependent=1,left="+leftpos+",top="+rightpos;
newwindow=window.open("","Help", options);
newwindow.document.write(contents);
newwindow.document.writeln(LocalTime);
newwindow.document.write('</center>');
newwindow.document.close();
</script>
</head>
<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" scroll="no" onunload="doUnload()" >
<DIV id=crtMOVE style="position: absolute; left: 0; top: 0; width: 625; z-index: 30; height: 18;">
<div align="center"> <img border="0" src="images/spacer.gif" width="99%" height="18" />
</div>
</DIV>
<div id="statusBar" style="position:absolute; left:5px; top:562px; width:630; height:18; z-index:31" class="statusBarTF"></div>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<TR>
<TD width=1 bgColor=#878787 rowSpan=17><u><b><IMG height=1 alt=""
src="../images/s.gif" width=1></b></u>
</TD>
<tr>
     <td style="FONT-SIZE: 11px; COLOR: #878787; FONT-FAMILY: arial,verdana,sans-serif"
vAlign=center width="100%" background="../images/background-grey-stripes.gif" height="26" >
     <TABLE height=19 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
          <TD>
               <iframe frameborder="0" name="DateHeader" width="100px" height="23px" src="DateHeader.jsp" scrolling="no" APPLICATION="yes">
               </iframe>
          </TD>
<TD vAlign="center" align="right" width=400>
<b>
               <font face="Verdana, Arial, Helvetica, sans-serif" size="1"> 
                    <u><a class="change" href="../../ajc/index.jsp" target = "_self">AJC</a></u>    
                    <u><a class="change" href="../../crm/index.jsp" target = "_self" >CRM</a></u>    
                    <u><a class="change" href="main.jsp" target="data">Main Menu</a></u>    
                    <u>Change Profile</u>    
                    <u>Log off</u>     
                    <u><a href="javaScript:helpPage('<%=anEmployee.getFName()%> <%=anEmployee.getLName()%> ') ">About Us</a></u>
               </font>
</b>
</TD></TR></TBODY></TABLE>
</TD>
     <TD width=1 bgColor=#878787 rowSpan=17><u><b><IMG height=1 alt=""
src="../images/s.gif" width=1></b></u></TD>
</tr>
<tr>
<td height="20" background="../images/bg_navbar_top.gif">
     <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
     <td><script type="text/javascript">stm_ep();stm_sc(1,["#FFFFF7","#B5BED6","","",3,3,1,1,"#FFFFF7","#000000","","",7,9,0,"","",7,9,0,0,200]);stm_em();</script></td>
          <td align="right" width="5%">Help</td>
</tr>
</table>
     </td>
</tr>
<tr>
<td height="100%" valign="top"><iframe frameborder="0" name="data" width="100%" height="100%" src="main.jsp" scrolling="yes"                     APPLICATION="yes">
</iframe></td>
</tr>
</table>
<script language="javascript">
function doUnload() {   
if (window.event.clientX < 0 && window.event.clientY < 0) {   
window.open("logout.jsp"); } }
</script>
</body>
</html>
hey this is code for my menubar..its working fine am using HTTP protocol for uploading a files on MAC machine ..everything upto that works fine ,After that as am clicked on finish button but nothin is going to happen even i cant get any error in log file of tomcat

Similar Messages

  • Problem With mac Operating system

    ok, had a problem with a piece of software and was told to try and "downgrade" my OS. so i started an installer that was an installer to a previous system. i was on 4.8 and was trying to go to 3.4 i think. I got half way thru and it said start the installer again. restarted. instead of the apple logo coming up a round cross comes up. i connected to my comp thru another comp using the firewire but my user folder is empty. anyways i can find anything in the users folder and fix this problem? cheers

    Who told you to downgrade your OS X version and was this due to the software not being compatible with your OS X version which was 10.4.8?
    What software?
    Your computer detail provided indicates you have an Intel Mac and if so, you certainly cannot downgrade to 10.3 - any 10.3.x version. All Intel Macs have shipped with Tiger (10.4.x) pre-installed and there are no OS X versions prior to 10.4.x that is compatible with an Intel Mac and even if so, you cannot install an earlier or previous OS X version on a Mac that shipped with a later version.
    Unless you meant 10.4.3 which is the version that was pre-installed on your Intel Mac and the version included with the OS X install package that shipped with your Mac when new.
    Did this person who told you to downgrade your OS also tell you to be sure to create a backup or update your existing backup before doing so?
    Did you choose Archive & Install with an option to preserve user and network settings?
    If not and you choose Erase & Install, then your hard drive was completely erased first.

  • I have Adobe Photoshop CS4 and have just upgraded my Mac operating system to Yosemite with the newest version of Java 2014 running. When I try to access Photoshop from Bridge or directly open it asks for a Legacy Version of Java 6. As I am a pensioner I c

    I have Adobe Photoshop CS4 and have just upgraded my Mac operating system to Yosemite with the newest version of Java 2014 running. When I try to access Photoshop from Bridge or directly open it asks for a Legacy Version of Java 6. As I am a pensioner I cannot afford an upgrade does anyone know of a work-around for this problem?

    Hi Daddyfred,
    CS4 Photoshop has not been tested on Yosemite. But still you can try the Java 6 update using the below link.
    http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419 409.html
    Thank you for posting on Adobe Forums.

  • I upgrades my mac operating system to OSX 10.9.4 and now my Dreamweaver CS5 won't work, it just quits unexpectedly.  please help.

    I upgrades my mac operating system to OSX 10.9.4 and now my Dreamweaver CS5 won't work, it just quits unexpectedly.  Please help.

    Remove preferences on Mac OS
    Quit Dreamweaver.
    In the Finder, navigate to /Users/Your User Name/Library/Application Support/Adobe.
    Rename the Dreamweaver preferences folder:
    Dreamweaver CS5: Rename the Dreamweaver CS5 folder to, for example, Old Dreamweaver CS5.
    Navigate to /Users/Your User Name/Library/Preferences.
    Rename the Dreamweaver preferences file:
    Dreamweaver CS5: Rename the Adobe Dreamweaver CS5 Prefs file to, for example, Old Adobe Dreamweaver CS5 Prefs.
    Try to re-create problem
    After you have removed your existing preferences, restart Dreamweaver. The application creates new preferences files, folders, and registry entries, as applicable, using the default settings.
    Then try to re-create the problem that you had before.
    If the problem was resolved, then damaged preferences was the cause.
    If the problem persists, then the preferences are not the cause and you can replace the original preferences.
    To replace the original preferences:
    Quit dreamweaver.
    Delete the new preferences folder and restore the original name of the previous folder.

  • Will InDesign4 work with the newest MAC operating system -- OS10.9 I think.

    Will InDesign4 work with the newest MAC operating system -- OS10.9 I think.  My OS crashed and they have to wipe the computer to put on a new system. I don't want the latest system if it won't run CS4. I bought Creative Suite Cloud version and had nothing but problems with it and the system I was running. In fact all the problems with my computer started just after I put CS Cloud version on it.

    Thanks for answering. I'll try to be more specific in my question.
    Steve Werner <[email protected]> wrote:
    Steve Werner  created the discussion
    "Will InDesign4 work with the newest MAC operating system -- OS10.9 I think."
    To view the discussion, visit: https://forums.adobe.com/message/6587879#6587879
    >

  • I just update my Mac operating system from Snow Leopard to Yosemite and now have to upgrade my Epson Printer WF3540 so that it will be able to scan. Will Adobe be compatible with these softwares?

    I just update my Mac operating system from Snow Leopard to Yosemite and now have to upgrade my Epson Printer WF3540 so that it will be able to scan. Will Adobe be compatible with these softwares?

    Hi spiritentrep,
    What Adobe software are you referring to? Are you using Acrobat? You should have no problems running Acrobat XI on Yosemite, and as along as you have compatible scanner drivers for your Epson, you should be fine there as well.
    Best,
    Sara

  • Will lightroom cc run on the Mac operating system OSX 10.8 mountain lion?

    will lightroom cc run on the Mac operating system OSX 10.8 mountain lion?

    You haven't mentioned which version of Lightroom, but anything from 4 up should be no problem. Here's a link to the Lr5 requirements http://www.adobe.com/uk/products/photoshop-lightroom/tech-specs.html

  • How to re install mac operating system?

    what is my problem?
    I downloaded a pirated version of Iwork. After that My computer got slower and I am having problems with connecting wifi Internet.
    What İ want:
    I want to reinstall my Mac operating system and start from new. May be My Mac is affected by virus...
    Please tell me how to reinstall mac operating system...
    Details of My Macbookpro...
    MBP 13.3/2.5/2*2GB/500/SD-ITP
    Model no. A1278
    Thanks for reading it...

    I don't think this is iServices, as that's quite old at this point and would seem to be extinct. Plus, as MadMacs0 points out, Mac OS X includes built-in definitions for iServices. (Of course, depending on how you downloaded it, you may have bypassed Mac OS X's security. Some torrent apps or other downloaders used for illicit purposes don't properly set the quarantine flag, so Mac OS X's security system never looks at the files downloaded.)
    However, any time you install pirated software, all bets are off. It may not actually be iServices, but there's nothing to prevent someone from embedding something malicious in what you downloaded. It may not even be truly malicious... could be legit software used for malicious purposes.
    I'd agree with nbar that you should wipe the hard drive clean and start fresh. (I disagree with him that a secure erase is necessary... that will not make your computer any safer than just erasing normally. The only thing that will do beyond a normal erase is ensure that file recovery software can't recover anything from your hard drive.)
    If the instructions for wiping the hard drive are giving you trouble, try my instructions here:
    How to reinstall Mac OS X from scratch
    In the future, never install anything pirated on your computer! That's like handing a known criminal your wallet and trusting him to give it back to you intact (or at all).

  • I have an older I Mac operating system 10.6.8 and want to upgrade.  I've been told that the only upgrade available for my machine is 10.7.5.  On what website can I find this upgrade or how do I find this upgrade on the Apple website?

    I have an older I Mac operating system 10.6.8 and want to upgrade.  I've been told that the only upgrade available for my machine is 10.7.5.  On what website can I find this upgrade or how do I find this upgrade on the Apple website?

    Choose About this Mac from the Apple menu, check if the computer has at least a Xeon or Core 2 Duo(not Core Duo) CPU and 2GB of RAM, and if it does, click here and order a download code for Lion 10.7.
    Back up your data and check your applications for compatibility before upgrading. In particular, Mac OS X 10.7 and newer don't support PowerPC programs such as versions of Microsoft Office prior to 2008.
    (116475)

  • I am new in using Mac operating system, kindly suggest ebooks , videos or audio books to me so that i can learn more about it?

    i am new in using Mac operating system, kindly suggest ebooks, videos or audio books to me so that i can learn more about it.
    any kind of help would be appriciated. i am very eager to learn.how to make ios application? and how to effectively use terminal? where does the basic programming start in Mac? what are the different tools that can help me make an Mac application and ios application.
    -Thank you
    Shailendra (India)

    Apple has got some great guides to start developing in Objective-C, used for programming OS X and iOS apps > http://developer.apple.com/library/mac/#referencelibrary/GettingStarted/RoadMapO SX/chapters/01_Introduction.html

  • Trying to load a Dreamweaver CS5 extension called Image Show Pro to mac operating system 10.9.2. Trial version worked fine, but when I try to load full version, Adobe Extension Manager crashes.  I have downloaded new Extension Manager for CS5. and still c

    Trying to load a Dreamweaver CS5 extension called Image Show Pro to mac operating system 10.9.2. Trial version worked fine, but when I try to load full version, Adobe Extension Manager crashes.  I have downloaded new Extension Manager for CS5. and still crashes. Anybody else experience this? email:[email protected]

    Hi bigd_bud,
    Can you see if the solutions in this post help?
    Re: Adobe Extension Manager crashes on mac 10.8
    Thanks,
    Preran

  • CS6 Camera Raw - I can now only crop using aspect ratio in the custom crop setting rather than being able to set the dims in cm and inches? anyone know how to revert? ever since installing new mac operating system things have been strange!

    CS6 Camera Raw - I can now only crop using aspect ratio in the custom crop setting rather than being able to set the dims in cm and inches? anyone know how to revert? ever since installing new mac operating system things have been strange!

    Hi Kglad.
    I have looked at all of my settings both in Bridge and CS6 Photoshop regarding Camera Raw. I am at a loss how to set the crop tool in cm or inches as I once did - now the only option is to crop using ratios of 1:1 etc etc - This is infuriating as lots of my square crops I could set at 10" x 10'' specifically to print one to one to fit frame and mount size -
    Now if cropping using bloody aspect ratio of 1:1 (square) the actual dims of the crop are roughly 4.25 inches x 4.25 inches. this means I then have to open the whole image in photoshop in order to crop at the dims I have set! It was so much quicker in terms of batch cropping in camera raw being able to set dims in centimetres and inches but they have gone and mucked around with it, with the new bloody update! Unless you are an absolute genius and know how I can go back to having an option of CM, Inches and aspect ratio within the custom crop settings? (Please say you do)
    here is the new tutorial for CC -  my guess is they have scrapped the control we had over the custom crop settings
    Cropping Images In Adobe Camera Raw 8

  • How can I file share with another person if both of us are using Mac operating systems?  Do we need to use a third party file sharing system or does apple have this capability?

    How can I file share with another personif both of us are using Mac operating systems (one of us using a Mac laptop and the other using iMac).  Our intention is to have a working document that can be changed by both parties over time and both parties will have visibility to the others changes.

    Use SugarSync

  • I need to work with the RAW files on a SONY RX100III. I use Photoshop CS5 and a Mac operating system OSX 10.6.

    I need to work with the RAW files on a SONY RX100III camera. I use Photoshop CS5 and a Mac operating system OSX 10.6. Is there an Camera RAW upgrade or an alternative program that works here?

    You don't. Since you have an Intel Mac, buy a Mac OS X 10.6 DVD from the online Apple Store.
    (71894)

  • Is the adobe flash virus affecting the mac operating systems?

    Is the adobe flash update virus affecting mac operating systems?

    The latest Flash 11 works fine for me on Mavericks, on every site that plays videos.
    I have no idea what Xat Flash Chatrooms is (and really have no interest), but it sounds like the issue is with that site, as Flash in general works for literally tens of millions of people on most other sites.

Maybe you are looking for

  • Visual Studio keeps adding SharePoint features when opening a solution

    Hello everybody.  I'm facing a rather naughty problem. In a Windows 2012 environment (hosted inside an Azure virtual machine), with SharePoint installed, I created a VS SharePoint on-premise solution. I added a feature, and started adding lists, libr

  • Xcompmgr: no composit extension

    Hello, I have Arch with Openbox on my laptop with Nvidia GT240M. The problem appears when I want to add some transparency to windows, and to tint2, especially. I decided to use xcompmgr, but when starting it gives me an error: "no composit extension"

  • Printing multiple sets of Portfolio documents collated

    I use Adobe Acrobat 9 Pro's pdf Portfolio to print multiple documents with similar printing properties (two-sided, stapled, hole-punched) but they are separately two-sided and separately stapled. I try doing multiple copies but the print job comes ou

  • PS3 Slim not connecting to AirPort snow

    hey all, picked up a new PS3 slim the other day and am having a helluva time getting it connect to my AirPort. ive seen other posts about this all over but no solutions. ive tried all sorts of things (manual IP, powercycling, resetting passwords, inp

  • Command z doesn´t work on pages and other issues

    Hi, I have a problem- I accidentally changed a table from inline to floating and IT DISSAPEARED!!.. sooo- I tried to undo mi mistake and cmd Z didn´t worked- sooo- I tried to do a new table and I couldn´t create a new one. I restarted pages- Nothing.