Sessionid in JSP with several domain. HELP!! HELP!!! HELP!!!

Is it possible to set up the sessionid? My problem is, i get the sessionid and i would like to "call" the session with the specified id in another page. I have to work like this because the session have to share beetween two domain. So, i save the session id in a database and i would like create my session with the id. So, how i can create session with a specified id?
Thanks...

With my understanding, you can't change sessionid (cause it needs to be unique).
But to achieve what you said, can't you put your own sessionID as an attribute to the session?

Similar Messages

  • JSP with useBean beginner problems need help

    I start to learn JSP and now I am facing a problem which cannot be solved for a whole day.
    I make a simple JSP and want to use a my defined class to make some logic outside JSP file. It can be built by "ant build".
    But there is always an error-message when I see through browser. Also, I have already "ant deploy" to copy all classes in WEB-INF/classes/...
    Besides, my tomcat can run JSP without importing external class or javaBean.
    Please help. I really have no idea. Thanks.
    The simple Converter.class in Test.Beans package
    package Test.Beans;
    import java.math.*;
    public class Converter {
         static BigDecimal yenRate = new BigDecimal("131.7800");
         static BigDecimal euroRate = new BigDecimal("0.0084");
    public BigDecimal dollarToYen(BigDecimal dollars) {
    BigDecimal result = dollars.multiply(yenRate);
    return result.setScale(2,BigDecimal.ROUND_UP);
    public BigDecimal yenToEuro(BigDecimal yen) {
    BigDecimal result = yen.multiply(euroRate);
    return result.setScale(2,BigDecimal.ROUND_UP);
    public Converter() {}
    The simple JSP:
    <%@ page import="java.math.*" %>
    <jsp:useBean id="c" class="Test.Beans.Converter" scope="page"/>
    <html>
    <head>
         <title>Converter</title>
    </head>
    <body bgcolor="white">
         <FONT SIZE=+1>
         <h1><center>Converter</center></h1>
         <hr>
         <p>Enter an amount to convert:</p>
         <form method="get">
         <input type="text" name="amount" size="25">
         <br>
         <p>
         <input type="submit" value="Submit">
         <input type="reset" value="Reset">
         </form>
         <%
         String amount = request.getParameter("amount");
              if ( amount != null && amount.length() > 0 ) {
              BigDecimal d = new BigDecimal (amount);
         %>
         <%= c.yenToEuro(d) %> Euro.
         <%
         %>
         </FONT>
    </body>
    </html>
    Here is the error message:
    org.apache.jasper.JasperException: /main.jsp(2,0) The value for the useBean class attribute Test.Beans.Converter is invalid.
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: /main.jsp(2,0) The value for the useBean class attribute Test.Beans.Converter is invalid.
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:146)
         org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1174)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1116)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2213)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2219)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:456)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
         org.apache.jasper.compiler.Generator.generate(Generator.java:3304)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:198)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    Message was edited by:
    BillyHui

    Works fine for me, copied and pasted exactly.
    Try recompiling your java class again, to make sure it is valid.
    Check that the class file is copied into the correct place by your ant build.
    Should be WEB-INF/classes/Test/Beans/Converter.class

  • JSP with URLConnection or HttpsURLConnection, please help!

    Thanks in advance for looking at this post :)
    I have to develop an application. This application consists of a JSP form that collects credit card information. The form using a java bean to validate user input.
    Once the input has been validated I need to connect to a URL and transmit this collected data and receive a response from the remote server. My questions are:
    1. My plan of action is to write the java code required to connect to the URL and transmit the data within that java bean itself. Is this an acceptable way to handle it? OR should I make a separate bean for this, OR should I embed the code directly into the JSP?
    2. My server is set up with a secure certificate. I need to connect to URL using the https protocol. Do I use URLConnection or HttpsURLConnection? I already wrote the code using URLConnection, and I can connect and receive a response from the server. However the test I ran is just a system check (still connecting to https://). I am concerned about the security of data being transmitted via a URL Connection (obviously need to make sure this is encrypted going out as well as coming in since it will contain credit card info).
    I appreciate the response, I need to get this figured out asap.
    Thanks!

    By the way thanks for your input - sorry for the delay with the dukes... I got URLConnection working and from what I can tell all is good. Now posting to set a timeout feature on URLConnection:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=386270

  • Logging in JSP with Appserver Ed. 8

    Hi,
    I've got a JSP with several log levels (from SEVERE to FINEST). In the logs of the application server, I only see the ones from SEVERE to INFO). I've tried to change some log configuration in the admin console (Root, Server, Web Container) but it still doesn't work. I even tried to change the log level in the logging.properties of the JRE but with no success.
    Does anybody knows how to make that work ?
    Thanks,
    Antonio

    1. The Default Log Level set for any new logger created is INFO. So, you will see only SEVERE, WARNING
    and INFO messages.
    2. To override the default log level, you add a property in <log-service> element of domain.xml which will
    look like
    <log-service>
    <module-log-levels...................................../>
    <property name="<Your Logger Name>"
    value="< One of the 8 values FINEST|FINER|FINE|CONFIG|INFO|WARNING|SEVERE|OFF>" />
    </log-service>
    Restart the AppServer to pick up these values.
    Good Luck,
    \H

  • In a document with several sections, in section VIII and IX one cannot select the text of the page foot nor set the pointer in it; so, one cannot write nor change the page foot text. Please help!

    in a document with several sections, in section VIII and IX one cannot select the text of the page foot nor set the pointer in it; so, one cannot write nor change the page foot text. Please help!

    Question already asked and answered several times.
    It's a bug striking in long documents.
    Select a word somewhere higher in the page then use the arrows to reach the wanted insertion point.
    Yvan KOENIG (VALLAURIS, France) mardi 23 août 2011 15:44:24
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please :
    Search for questions similar to your own
    before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • I have made a webpage in HTML with several links to JPGs / GIFs. The text matter opens perfectly but not the images. Please help me

    I have made a web page in HTML with several links to JPGs / GIFs. While text matter opens up perfectly, but not the images. Please help me.
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; CTS Version; .NET CLR 1.1.4322; .NET CLR 2.0.50727)

    URL of that web page?

  • Error Compilation When I browse JSP with bean, please Help Me

    Hello,
    I am new in EJB. I have a problem that I am not understand. please help me.
    I have write my bean and deploy it using JRUN server. The name is SpellCheck.jar
    But when I called the bean from JSP page, always error. Here is my JSP page.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <jsp:useBean id="help" scope="request" class="projsp.SpellCheck"/>
    <jsp:setProperty name="help" property="*"/>
    <html>
    <head>
    <title>Untitled</title>
    </head>
    <body>
    You Entered the input,
    <b>
    <%= request.getParameter("word") %>
    </b>
    <br>
    The processed output is:<br>
    <%= integer.parseInt(request.getparameter("mode"))==1 ?help.reverse():""+help.check() %>
    </body>
    </html>
    and the error messages is:
    Compilation error occured:
    allaire.jrun.scripting.DefaultCFE:
    Errors reported by compiler:Compilation of file 'C:\Program Files\Allaire\JRun\servers\default\veronika\WEB-INF\jsp\jrun__wordpro2ejspc.java' failed with no errors. Please check that your compiler is a working compiler.
    at allaire.jrun.scripting.JavaCompilerService.compile(../scripting/JavaCompilerService.java:100)
    at allaire.jrun.jsp.Translator.compilePage(../jsp/Translator.java:247)
    at allaire.jrun.jsp.Translator.translate(../jsp/Translator.java:399)
    at allaire.jrun.jsp.Translator.translate(../jsp/Translator.java:92)
    at allaire.jrun.jsp.JSPTranslator.translate(../jsp/JSPTranslator.java:75)
    at allaire.jrun.jsp.JSPTranslator.translate(../jsp/JSPTranslator.java:67)
    at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:216)
    at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
    at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
    at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
    at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
    at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
    at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
    at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
    at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
    at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
    at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
    at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
    but if I delete the syntax for calling Bean (usebean, setProperty, and request.getParameter) the browser run properly. Can anybody help me, please?
    thanks
    Veronika

    Hi Veronika,
    The <jsp:usebean> is used for only javabeans not EJB (Enterprise javabean). You said that you have deployed SpellCheck.jar to the JRun server. So that must be an EJB. Where are you accessing this EJB from in your JSP? ARe you doing it inside the projsp.SpellCheck javabean? If yes, can you post some code from the javabean.
    Cheers
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <jsp:useBean id="help" scope="request" class="projsp.SpellCheck"/>
    <jsp:setProperty name="help" property="*"/>
    <html>
    <head>
    <title>Untitled</title>
    </head>
    <body>
    You Entered the input,
    <b>
    <%= request.getParameter("word") %>
    </b>
    <br>
    The processed output is:<br>
    <%= integer.parseInt(request.getparameter("mode"))==1 ?help.reverse():""+help.check() %>
    </body>
    </html>

  • Help: Using Adobe Muse & Business Catalyst with Google Domains: URL not mapping

    Hi,
    I've had some issues publishing my site to the internet using Adobe Muse (version CC 2014) and publishing to Adobe Business Catalyst.
    I am currently using Google Domains to host my domain name (www.mattandsangeeta.com) and have tried on multiple occasions to get the domain name to correctly map  using Adobe's Business Catalyst nameservers.
    I've verified with Google Domains that their process is setup correctly to map to my site, so it indicates the issue is on how I've configured my Adobe Muse/Business Catalyst side of things.
    So far, every attempt at publishing the site via Adobe Muse has worked with its extension at http://mattandsangeeta.businesscatalyst.com/index.html, and I'm able to login into my Admin page from Adobe Muse immediately following publishing. However, when I try to login directly to the Adobe Business Catalyst page, it takes me to an admin link for www.mattandsangeeta.com that is broken.
    To summarize: My published domain isn't being mapped correctly and I hit a dead end every time I try to login into the Business Catalyst website.
    Thanks for your feedback and support in advance,
    Matt

    Hi
    As I checked the site loads fine with domain Matt And Sangeeta . I tried to get to site manage area using Administration Login  and I see it works fine as well. I would suggest you to please try clearing browser cache and cookies and check if that helps.

  • Help with Windows Domain Login on Mac

    Hello Everyone,
    We have two Mac Pros at my work running Mac OS 10.5.8 and they are attached to the Windows Server / Domain so when the Mac is turned on you login with your Domain credentials (using Win Server to Authenticate). Now all of this has been working fine since the computers were purchased a year ago, until two days ago that is. I turned on the Mac Pro in the morning and tried to login, and the Mac would freeze and do nothing. I restarted and tried again, using the same credentials I always use, but nothing worked. I called the IT guys and had my windows user account reset thinking that the password was expired, still didn't help, so I asked them to reset the whole account, still didn't help.
    At this point I asked a few of my co-workers to login on my Mac using their login info, and they had no problems at all. I decided to dig deeper into this problem and logging in under a "local" Mac account I went into the "Accounts" preferences to check what was going on, to my surprise my Domain account was visible (normally it wasn't unless you were logged in) and under the account it said "sharing only".
    I am still trying to figure out why my Domain account was changed from "Admin, Managed" to "Sharing Only"? So I decided that the easy fix here was to use a previously made (and tested) image file which I created when the Mac Pro was first setup and all the software was installed. So after cloning the image to the Mac HD I turned on the Mac and tried to login, again nothing happened. I can login using the local account, and my co-workers can login fine, but my domain login just refuses to work. I have also tired to login on other Macs in the department and I can login just fine on each one, the only Mac that doesn't let me login is my machine.
    I have run out of ideas, short of re-installing the entire system from scratch.. which I really don't want to do unless I have to. But if anyone out there has any ideas I would more than welcome them.
    Thanks in advance..

    It's probably related to some type of DRM (copy-protection) on the digital copy, and not due to it being any particular type of file format. The DRM scheme probably only works under Windows. And if that is the case, I don't think you will be able to get it to work under Mac OS X, short of running VMware Fusions or Parallels Desktop (or Sun's free VirtualBox) and installing Windows to run under Mac OS X.
    Considering the popularity of Macs recently, and higher use of Macs among creative folks, it's pretty stupid for the studio/distributor to make a key feature Windows-only.

  • Need JSP with CMR EJB  Help

    hi
    regarding my question
    i am not clear how to use two bean one has foreign key and another has primary key in the client side
    for that i make two beans and make cmr relationship between them fine
    but when i call another bean in the client side i have to use findByPrimaryKey method to map the beans
    fine
    Cnmas cnn = cnhome.findByPrimaryKey(dpwb_no);
    now my problem is i have multiple records corresponding to the dpwb_no which is my primary key
    so for that should i use the iterator method
    and if i will not use then i am using local as well as remote home interfaces so in that case my code will be:-
    in the local interface:-
    public DodAuthorisationLocal findByPrimaryKey(String authorisationNo) throws FinderException;
    in the remote interface:-
    public DodAuthorisation findByPrimaryKey(String authorisationNo) throws RemoteException, FinderException;
    now my problem is that client will interact with local interface and we are makeing remote's home interface.
    because i have to use that values in the create method as parameter
    the create method has local interface's value as parameter and we are calling remote interface so tell me how to solve it
    CnmasHome cnhome = (CnmasHome)PortableRemoteObject.narrow(ctx.lookup("Cnmas"), CnmasHome.class);
    Cnmas cnn = cnhome.findByPrimaryKey(dpwb_no);
    in this code we use the remote interface
    this is my create method which i try to call
    public DodAuthorisation create(CnmasLocal cnn ) with more parameter
    so how to interact the local interface in the create method with the remotehome refrence with the findByPrimaryKey method.
    Now i think u can able to understand my problem
    thanks alot

    Hi Veronika,
    The <jsp:usebean> is used for only javabeans not EJB (Enterprise javabean). You said that you have deployed SpellCheck.jar to the JRun server. So that must be an EJB. Where are you accessing this EJB from in your JSP? ARe you doing it inside the projsp.SpellCheck javabean? If yes, can you post some code from the javabean.
    Cheers
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <jsp:useBean id="help" scope="request" class="projsp.SpellCheck"/>
    <jsp:setProperty name="help" property="*"/>
    <html>
    <head>
    <title>Untitled</title>
    </head>
    <body>
    You Entered the input,
    <b>
    <%= request.getParameter("word") %>
    </b>
    <br>
    The processed output is:<br>
    <%= integer.parseInt(request.getparameter("mode"))==1 ?help.reverse():""+help.check() %>
    </body>
    </html>

  • Using utf-8 in jsp with resource bundle files(Farsi Language) Help !

    Hi,
    I am using jdeveloper and struts and i have a resourcce bundle file that i am writing in Farsi in it.
    my jsp looks like this :
    <%@ page contentType="text/html;charset=UTF-8"%>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <html:form action="IndexAction.do" method="POST" enctype="UTF-8">
    <% request.setCharacterEncoding("UTF-8");%>
    <bean:message key="button.add" /><!-- i get the key from the bundle here-->
    i have saved the bundle file in utf-8 and i have tried native2ascii on it as well.
    i also have response.setContentType("text/html; charset=UTF-8"); in my action file.my browser setting is also utf-8.
    but still i get garbage chars in jsp.
    any idea ?
    thax
    reza

    hello
    i have problem whit write farsi in jsp.
    the charecter is destroy.
    please help me.
    thanks

  • Trying to update iTunes, the installer keeps freezing at 'Running iTunes Installer Scripts'.  i've tried several different versions of iTunes and can't install any of them.  I'm stuck with Version 4!!  Help!

    I'm trying to update iTunes on my mac (Power Mac G5 running tiger), but it always freezes at 'Running itunes installer script'.  I have tried a few different versions of iTunes, but I have the same problem with all of them.  I'm stuck on version 4 (which came with my os discs)!  Help?! 

    Ok, First this link should solve the windows scripting host error. I used "Download windows script host" in a google search and it was the first hyperlink.
    http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB -95A22B832CAA&displaylang=en
    I'm assuming you are trying to run the installer from apple. What I would suggest is you download the installer manually to your desktop then launch the installer. If try to run the installer over the intertubes you may run into a problem like you did.
    Then I would uninstall itunes 8 and any software associated with it like the apple update software, quicktime, apple mobile device support. However uninstalling itunes should remove any additional software it installs. Then clean out your temp folder:
    6. Clean out your temp folders,
    a. C:\windows\temp (if one exists)
    b. C:\Documents and Settings\{username}\Local Settings\Temp
    Sometimes installers will pick up old files or won’t delete their temporary files.
    Then with a newly download installer on your desktop try launching it. Let me know if that helps.
    Here is an apple doc that help.
    http://support.apple.com/kb/TS1331
    Message was edited by: CoJeff

  • Need help in L2tp Lac router loadbalance to 2 LNS routers with same domain

    hi all ,
    ive implemented the LAC LNS with l2tp protocol ,
    i fololowed the articale
    https://supportforums.cisco.com/docs/DOC-6102
    https://supportforums.cisco.com/docs/DOC-6101
    and its 100 % fine ,
    but i have a question now
    what about if i have two LNS routers not 1 and those are with same domain ,
    how will LAC load balance pppoe sessions to the LNS routers ?
    again, i have 2 LNS
    regards

    Since the AEBS has only a single ethernet LAN port, the correct way to connect more that one cabled device to it is to use a basic ethernet switch. Using a router to do this job as you have done is (a) unnecessary, (b) more costly, and (c) directly causing the very problem you are trying to solve.
    Get rid of the Linksys router, replace it with a $30 4-port ethernet switch, and your problems will go away. Since the AEBS will be the only router on your network (as it should be) you only need to set up port mapping on the AEBS as described in the article How do I use port mapping.

  • I need help deleting "all records associated with my domain name"

    Hello,
    I'm having problemsthe same exact problem as Daren... setting up my site to go live. Here's what I've done so far:
    1) built the site and pushed it live
    2) upgraded the site
    3) set up a GoDaddy domain name
    4) set up the servers on GoDaddy
    5) set up the associate account info on BC
    And then.... nothing.
    I've then deleted the domain and tried to repeat the process, in case I missed something, but now I can't set up a new domaine and keep getting the error "Domain already exists. Please delete all records associated with this domain". What records? What does this even mean?
    Can someone please walk me through the steps to get this site live?
    Thanks!
    Alex

    Can you try again? If still no go, please reach out to BC support directly via http://helpx.adobe.com/contact.html?product=business-catalyst&topic=using-my-product-or-se rvice.
    Thanks,
    Vinayak

  • Get image several indicators... help!

    Hello,
    I am trying to get image to use in report of several indicators. I made handmade table with several indicators. And I would like to get the image of whole indicators to use in report.
    I would like to use subvi with the table bigger than normal to get good resolution in image to use in pdf report.
    I dont know if it is possible join all the indicators in one alone. Maybe use get FP image and subset the dimension of part i need....
    Regards.
    Solved!
    Go to Solution.
    Attachments:
    example.vi ‏12 KB

    Hi Bob,
    Yes, it works fine. Thanks for help.
    I dont understand well what you mean... they are FP Objects. I built the fake table since it is impossible to do in labview using table tool.
    I set the values from anothers vis and then I need to get the capture of this fake table. It is not one image. I though to do one picture and insert in background of table and insert only the values... but this system works fine. I got the vi from tool capture from https://lavag.org/files/file/63-code-capture-tool/.
    http://forums.ni.com/t5/BreakPoint/Starware-A-new-concept/td-p/256864/page/5?view=by_date_ascending Thanks to TST
    I attached the two files again. I test them right now and they work well. Download them and execute 'capture selected panel objets'.
    I was searching any way to do it and I found it was the best way to get it. I am not one expert in LV and this little fit is for a whole program app.
    I hope you understand me now. If not is the case please, show me the way you were thinking to get it.
    Regards, Fred.
    Attachments:
    Capture selected panel objects.vi ‏32 KB
    example.vi ‏9 KB

Maybe you are looking for

  • Download Maintenance Orders instead of Production Order in SAP IM-3.2

    Hi All, I am trying to fetch Maintenance orders instead of production order in syclo agentry IM-3.2 In the receipts screen their is a button GetProdOrder which fetches the Production order,instead of fetching the Production Order i want to change it

  • Getting started with Flex - J2EE

    Hello Folks, In advance, I already want to thank all of you willing to take the time to read this, or even reply :) Furthermore, I'm not 100% sure this is the correct location to ask these questions, but so far I've had a perfect experience concernin

  • OEL 5.5 on SunFire 4450?

    Has anyone installed OEL 5 (any update) on a SunFire 4450? I tried several times and they all failed. After burning the DVD from downloads (from OTN), the installation stalls at this stage - Need Enterprise Linux CD, please insert disk. If anyone was

  • ITunes not recognizing my Iphone 5.  Updated to the new OS X

    I just recently updated my MacBook Pro to the latest OSX 10.9.2   and I just plugged in my Iphone to manage storage and ITunes is not seeing it at all.  I have the most current version of ITunes 11.1.5 and my IPhone software is current as well.  This

  • Cant find Tunes64.msi error

    I am tring to install the new iTunes and during installation it pops up this error. I have no idea on how to fix this. I looked in other files and cant find this. And I also did a search on files from the start button. Thanks BecBot