JSP output affected with cookievalue cookie.getValue() function

i need to output from a jsp
fquid=uid@domain
authtype=plaintext
this is the format expected by a calling url.
uid is dynamic
case 1: if i set
String uid="xyz";
the calling url to this jsp behaves perfect. all it matters at this point is that the calling jsp needs output in the above format.
here is the code that works.
<%
out.println( "fquid=xyz@domain\n");
out.println( "authtype=plaintext\n");
%>
case 2:
my job is to make this jsp dynamic. i need to grab the uid from a cookie and output the exact same strings. but this one bombs meaning the calling jsp does not behave correctly.
here is the code i haveth:
<%
String cookieName = "cookiename";
Cookie cookies [] = request.getCookies ();
Cookie myCookie = null;
String cval = null;
if (cookies != null)
for (int i = 0; i < cookies.length; i++)
if (cookies .getName().equals (cookieName))
myCookie = cookies[i];
// out.println( i + "," + myCookie.getValue() + "<BR>");
cval=myCookie.getValue();
break;
String uid=myCookie.getValue();
out.print( "fquid=" + uid + "@domain\n");
out.print( "authtype=plaintext\n");
%>
the moment i introduce myCookie.getValue() function into the code the calling url fails. the output of the both the snippets is same.
what is the problem here?
thanks
bhanu

Did you even set the Cookie? You need to set it first in order to get it.
To set a cookie
1. Create a new Cookie object and set the name and value in it's constructor.
2. Then add the Cookie into the HTTP Response
3. Call the above code from a URL
4. Look in Browser's cache to verify if the Cookie was written
Also check if Cookies are disabled in the browser.

Similar Messages

  • Query performance affected with use of package.function in 11g

    Hi,
    I have a view that helps select account details for a particular account and use that in a form. The query in the view is:
    select acc.* from accounts acc where acc.account_no = pkgacc.fGetAccNo;
    Here "pkgacc" is a package that has set and get methods. ACCOUNT_NO is the PK for ACCOUNTS table. This same query when run in a 10g database makes use of the PK INDEX. However in 11g it does a FULL SCAN.
    Regards

    Hi,
    1/ Volume is the same
    2/ All statistics are up to date
    10g Plan
    Plan     
    SELECT STATEMENT ALL_ROWS
    Cost: 18 Bytes: 462 Cardinality: 3      
         23 NESTED LOOPS      
              21 NESTED LOOPS
              Cost: 18 Bytes: 462 Cardinality: 3      
                   19 VIEW VIEW SYS.VW_NSO_1
                   Cost: 12 Bytes: 39 Cardinality: 3      
                        18 HASH UNIQUE
                        Cost: 12 Bytes: 110 Cardinality: 3      
                             17 UNION-ALL      
                                  2 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.OLD_ACCOUNT_LINKS
                                  Cost: 0 Bytes: 25 Cardinality: 1      
                                       1 INDEX RANGE SCAN INDEX SUMMIT.OACCL_2
                                       Cost: 0 Cardinality: 1      
                                  8 NESTED LOOPS      
                                       6 NESTED LOOPS
                                       Cost: 7 Bytes: 40 Cardinality: 1      
                                            4 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.ACCOUNTS
                                            Cost: 4 Bytes: 18 Cardinality: 1      
                                                 3 INDEX RANGE SCAN INDEX (UNIQUE) SUMMIT.ACC_PRIME
                                                 Cost: 3 Cardinality: 1      
                                            5 INDEX RANGE SCAN INDEX SUMMIT.ACCL_2
                                            Cost: 2 Cardinality: 1      
                                       7 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.ACCOUNT_LINKS
                                       Cost: 3 Bytes: 22 Cardinality: 1      
                                  16 NESTED LOOPS
                                  Cost: 5 Bytes: 45 Cardinality: 1      
                                       14 MERGE JOIN CARTESIAN
                                       Cost: 5 Bytes: 30 Cardinality: 1      
                                            10 TABLE ACCESS BY INDEX ROWID TABLE CVC.ACT01
                                            Cost: 3 Bytes: 15 Cardinality: 1      
                                                 9 INDEX RANGE SCAN INDEX (UNIQUE) CVC.PK_ACT01
                                                 Cost: 2 Cardinality: 1      
                                            13 BUFFER SORT
                                            Cost: 2 Bytes: 30 Cardinality: 2      
                                                 12 TABLE ACCESS BY INDEX ROWID TABLE CVC.ACF02
                                                 Cost: 2 Bytes: 30 Cardinality: 2      
                                                      11 INDEX RANGE SCAN INDEX (UNIQUE) CVC.PK_ACF02
                                                      Cost: 1 Cardinality: 2      
                                       15 INDEX UNIQUE SCAN INDEX (UNIQUE) CVC.PK_BIT41
                                       Cost: 0 Bytes: 15 Cardinality: 1      
                   20 INDEX UNIQUE SCAN INDEX (UNIQUE) SUMMIT.CUST_PRIME
                   Cost: 1 Cardinality: 1      
              22 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.CUSTOMERS
              Cost: 2 Bytes: 141 Cardinality: 1      
    11g Plan
    Plan     
    SELECT STATEMENT ALL_ROWS
    Cost: 1,136,322 Bytes: 138,218,223,528 Cardinality: 897,520,932      
         19 HASH JOIN
         Cost: 1,136,322 Bytes: 138,218,223,528 Cardinality: 897,520,932      
              1 TABLE ACCESS FULL TABLE SUMMIT.CUSTOMERS
              Cost: 14,455 Bytes: 355,037,154 Cardinality: 2,517,994      
              18 VIEW VIEW SYS.VW_NSO_1
              Cost: 20,742 Bytes: 11,685,473,072 Cardinality: 898,882,544      
                   17 HASH UNIQUE
                   Cost: 20,742 Bytes: 35,955,720,360 Cardinality: 898,882,544      
                        16 UNION-ALL      
                             3 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.OLD_ACCOUNT_LINKS
                             Cost: 0 Bytes: 25 Cardinality: 1      
                                  2 INDEX RANGE SCAN INDEX SUMMIT.OACCL_2
                                  Cost: 0 Cardinality: 1      
                             8 HASH JOIN
                             Cost: 20,354 Bytes: 35,951,952,800 Cardinality: 898,798,820      
                                  5 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.ACCOUNTS
                                  Cost: 5,398 Bytes: 1,400,292 Cardinality: 77,794      
                                       4 INDEX RANGE SCAN INDEX (UNIQUE) SUMMIT.ACC_PRIME
                                       Cost: 102 Cardinality: 28,006      
                                  7 TABLE ACCESS BY INDEX ROWID TABLE SUMMIT.ACCOUNT_LINKS
                                  Cost: 4,634 Bytes: 4,575,208 Cardinality: 207,964      
                                       6 INDEX RANGE SCAN INDEX SUMMIT.ACCL_2
                                       Cost: 145 Cardinality: 37,433      
                             15 HASH JOIN
                             Cost: 388 Bytes: 3,767,535 Cardinality: 83,723      
                                  10 TABLE ACCESS BY INDEX ROWID TABLE CVC.ACT01
                                  Cost: 271 Bytes: 4,065 Cardinality: 271      
                                       9 INDEX RANGE SCAN INDEX (UNIQUE) CVC.PK_ACT01
                                       Cost: 3 Cardinality: 342      
                                  14 HASH JOIN
                                  Cost: 115 Bytes: 92,580 Cardinality: 3,086      
                                       12 TABLE ACCESS BY INDEX ROWID TABLE CVC.ACF02
                                       Cost: 76 Bytes: 46,290 Cardinality: 3,086      
                                            11 INDEX RANGE SCAN INDEX (UNIQUE) CVC.PK_ACF02
                                            Cost: 4 Cardinality: 555      
                                       13 INDEX FAST FULL SCAN INDEX (UNIQUE) CVC.PK_BIT41
                                       Cost: 38 Bytes: 557,220 Cardinality: 37,148

  • Problem with tpcall and tpgetrply functions

    Hi,
    I have a problem with tpcall() and tpgetrply() functions.
    In this example (invoke tpcall()):
    FBFR32 *buf;
    FLDLEN32 buflen;
    buf = a_buffer.getBuffer(); /* getBuffer() returns FBFR32* */
    buflen = a_buffer.getLongitud();
    /* at this point: buf == a_buffer.getBuffer() */
    if (tpcall(a_contenedor.getServname(),
    (char*)a_contenedor.getBufferPeticion()->getBuffer(),
    a_contenedor.getBufferPeticion()->getLongitud(),
    (char**)&buf,
    (long*)&buflen,
    0) == -1)
    if (tperrno != TPESVCFAIL)
    LANZAR_EXCEPCION(CADENA_WHAT_SB,
    "Error en funcion Execute(), llamada tpcall()",
    tpstrerror(tperrno))
    /* at this point: buf != a_buffer.getBuffer() */
    tpcall() function change the memory address of buf. What is the problem? Is wrong my code? Is a problem with tuxedo version?
    My tuxedo version is:
    tmadmin -vINFO: BEA Tuxedo, Version 8.0, 32-bit, Patch Level 306
    INFO: Serial #: 650522264137-773290431251, Expiration NONE, Maxusers 150
    INFO: Licensed to: Telefonica Moviles Espa?a, S.A.
    INFO: 56-bit Encryption Package
    Thanks,
    ANTONIO.

    There's nothing wrong with your code or tuxedo. tpcall (and tpgetrply) can change the address of the return buffer if it needs to allocate more memory to hold the data. This is the reason why you pass a pointer to the buffer as the output buffer parameter to tpcall and tpreturn. Everything is working as expected.

  • Can I install 2 separate Mozilla Firefoxes on my PC, with separate cookies, bookmakrks and everything?

    Hello. My question is: Can I install on my PC two separate versions of Firefox, with separate cookies, history, options and everything?
    Why do I need this: I'm using firefox as my main webbrowser, for e-mail, facebook, many different forums and so on. Now I started doing some surveys which requires me to delete my cookies like twice a day and it's really annoying to do that on the same browser that I use for my regular stuff.
    I know that I can select which cookies I want to delete, but there're so many that it would take too long for me to select them.
    So, long story short, can I have 2 separate firefoxes on my PC, with separate cookies that I can delete and they won't affect the other webbrowser?
    Thanks in advance for your answer

    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    If necessary:
    iOS: Device not recognized in iTunes for Windows
    or
    iOS: Device not recognized in iTunes for Mac OS X

  • Using JSP parameters as input in a JavaScript function

    hey
    I have a JavaScript function, which I call with JSP parameters.
    The function call looks similar to:
    <button onclick="myFunction(<%= jspParameter%>);"> </button>
    However, this JavaScript function is called from a jsp page, which is asynchronously refreshed upon a click of the button.
    The problem is that the JavaScript function does NOT function when I click the button for the first time (or maybe it functions, but with the old value of the jspParameter).
    Only after the second click it starts taking the jspParameter.
    Can you please tell me how to properly get the jspParameter as input in my case....
    thank you

    I'm sorry, you're right - I didn't give enough details.
    My whole page consists of several jsp-s.
    The jsp, from which I call the JavaScript function is just one part of the whole page. I'll call it partToBeChanged.jsp.
    When I press the button, the partToBeChanged.jsp should refresh asynchronously and call the JavaScript function using the new jsp parameter as input.
    To be more precise, here is roughly how myFunction looks like (JavaScript):
    function myFunction(url, jspParam) {
         var XMLHttpRequestObject = false;
         if (window.XMLHttpRequest) {
              XMLHttpRequestObject = new XMLHttpRequest();
         } else if (window.ActiveXObject) {
              XMLHttpRequestObject = new ActiveXObject("Microsoft.XMLHTTP");
         if (XMLHttpRequestObject) {
              XMLHttpRequestObject.open("GET", myServlet + url, true);
              XMLHttpRequestObject.onreadystatechange = function() {
                   if (XMLHttpRequestObject.readyState == 4 && XMLHttpRequestObject.status == 200) {
                        //plug server response in the target place.
                        //The target is an id of a division, which holds the partToBeChanged.jsp page
                        //The server itself uses RequestDispatcher to direct the response to the partToBeChanged.jsp     
                        //NOTE: partToBeChanged is only a part of the whole HTML page, which is refreshed dynamically               
                        document.getElementById('target').innerHTML = XMLHttpRequestObject.responseText;
                        //changes the content of a div, which is IN ANOTHER .jsp fragment (different than partToBeChanged.jsp)
                        y = document.getElementById("div_to_change");
                        y.innerHTML = jspParam;
              XMLHttpRequestObject.send("");
    }the jspParam is a java object, initialized in the servlet and used in partToBeChanged.jsp
    To summarize: the servlet dispatches the response to the partToBeChanged.jsp page, which uses the jspParam as input for myFunction, and myFunction tries to change the content of the "target" div accorting to the jspParam. However it changes as expected only after the second button click.
    Thanks a lot for any help....

  • OBIEE Cookies Delete function

    Hi all,
    I have a problem with OBIEE cookies and portal link.
    So, a fount this solution http://onlineappsdba.com/index.php/2011/10/22/delete-obiee-cookie-explicity-other-than-logout-call/.
    and this part:
    OBIEE Cookies Delete function needs to be added in the dashboard page .Open the Dashboard Editor and add the Cookie deletion code using java script in a text prompt and Check Contain HTML Markup.
    But I don't know the javascript function with i need put and how can I call the function when the BROWSER is closing.
    Thanks

    You can create a compound key of Cat + SubCat (concatenation in a logical column is a quick win) which will render the SubCats unique and assign that as the logical level key:
    SubCat:
    A-Basic
    A-Value Add
    A-High
    B-Basic

  • Extra white spaces in JSP output

    Hi,
              My JSPs contain a large use of JSTL and other custom Tags.
              The problem is that the output contains too many new lines and spaces.
              I found out that APACHE Tomcat has a servlet parameter (trimSpaces=true) that solved this problem.
              Does Weblogic (9.1) have something similar ?
              Does JSPC / APPC have a special options that can solve this ?
              please advise,
              Avivi.

    Before diving into this, one thing I would ask you: Why does it matter if there are extra spaces? Did you determine that your primary users are using a slow connection? Before trying to optimize this, make sure that you really have a problem to solve. You might try saving off the currently generated HTML into a test page, and compare it to a similar one with all ignorable spaces removed. If you see no difference in performance, then don't bother doing this.
              Nevertheless, one strategy for reducing empty space in JSP output is to put the ends of the JSP directives and actions on the next line, with no newlines after them.
              For instance, a pair of lines like this:
              <%@page import="foo.bar" %>
              <%@page import="bar.foo" %>
              Would be instead:
              <%@page import="foo.bar"
              %><%@page import="bar.foo"
              %>

  • IE don't display JSP output. It pop up download dialong and open Dreamwea

    IE don't display JSP output. It pop up download dialong and open Dreamweaver.
    I dont' know why, but when run in Netscape is OK
    Anyone please help.

    Looks like your problem lies by the file associations, i.e. extension of your jsp file (.JSP) is associated in your operating system with DreamWeaver rather than with IE. If you are using Windows you should be able to change file associations, so that all web pages including JSP will be opened in your browser.

  • Output type maintained for same partner function.

    Hi Gurus,
    Can we maintain outupt type for different transmission medium like print output, EDI and special function with in same partner function ? Please explain also?
    Thanks in advance.
    Regards
    Hemat ghiya
    Edited by: Hemant ghiya on Oct 5, 2011 1:28 PM

    Hi Rags,
    Thanks for your quick reply but i am getting problem at the time of determination . Once i have determined for one medium and then i will determine for another medium with same partner function then it is giving error like this partner funcition alerady used.
    So i am not able to determined for the another transmission medium after determining for one medium.
    Can you give your valueable suggestion.
    Thanks in advance.
    Regards
    Hemant ghiya

  • JSP Tag libs with struts Urgent

    Hi
    Has anyone implemanted jsp tag libs with the help of struts-bean.tld,struts-html.tld etc,
    I need to use these , but I am not clear with how the page retrives the key values
    example:
    table width="400" cellpadding="10" cellspacing="0" border="0" bgcolor="#cccccc">
    <tr>
    <td valign="top" colspan="2">
    <bean:message key="logon.welcome"/>
    <html:errors/>
    </td>
    </tr>
    <tr>
    <bean:message key="logon.welcome"/>----?
    I don't no how the"message bean" gets its key value dynamically? how it retrieves from its Application resource file? any idea?
    Also has anyone implemanted jsp templates if so kindly guide me thru these
    thanks!

    Hi..
    I am myself involved in implementing custom taglibs extending struts functionality. This can be done by extending the struts base classes and tag handlers. If you're still working on this topic, please let me know and we might share experiences.
    Best regards,.
    - Bj�rn Syse, [email protected]
    Hi
    Has anyone implemanted jsp tag libs with the help of
    struts-bean.tld,struts-html.tld etc,
    I need to use these , but I am not clear with how the
    page retrives the key values
    example:
    table width="400" cellpadding="10" cellspacing="0"
    border="0" bgcolor="#cccccc">
    <tr>
    <td valign="top" colspan="2">
    <bean:message key="logon.welcome"/>
    <html:errors/>
    </td>
    </tr>
    <tr>
    <bean:message key="logon.welcome"/>----?
    I don't no how the"message bean" gets its key value
    dynamically? how it retrieves from its Application
    resource file? any idea?
    Also has anyone implemanted jsp templates if so
    kindly guide me thru these
    thanks!

  • How to Buffer JSP Output Inside A Servlet

    Hello, we are trying to Process a JSP page inside a servlet and then do more processing and finnaly add the JSP output to the response output stream. I know there is a RequestDispatcher that lets you include a JSP page. However as far as I know all you can do with the RequestDispatcher is either include the JSP (which does not buffer it but simply adds it to the output stream) or forward to the JSP page. Any ideas? Thanks, - dk

    http://forum.java.sun.com/thread.jsp?forum=33&thread=377214

  • System is affected with Virus, Need to format it.

    I'm using HP Pavilion G61 Notebook with "Windows 7 Home edition" as operating system. Now my system is affected with virus. Can't able to do work on it as formally. Also taking time to open & run applications. So i need to format and reinstall Windows 7. So kindly help me in this issue.
    Toms  

    Hi Tom,
    PREFERRED OPTION:
    Did you make a set of System Recovery discs when you first got the system?  If so, booting from and running these CDs (or DVDs) will restore the system back to its original Factory state.  You even get a chance to Backup any documents (Photos, "Documents", Videos and multimedia files to external media IF you want).
    Booting a Recovery disc requires pressing the <Esc> (Escape) key during System start-up and choosing the Boot Options (often Function key <F9>) in order to select a, 'Boot from Internal CD/DVD drive' option.  From this point the user simply needs to READ all of the Options and explore this software utility.
    There will be "Next >>" and "<< Back" options for the user to navigate the various choices.  Read them carefully!  Get help from a friend, neighbor or co-worker you trust if necessary (having a second pair of eyeballs is always useful!).
    OTHER OPTIONS:
    (A)  Booting the computer into Windows' "Safe Mode" and running various CD-based utility programs to remove the Virii from the computer IS possible.  A source for some information is Bleepingcomputer.com and I have been using this recently to remove what is referred to as "Windows 7 Rogus Anti-spyware" from a few systems recently.  HOWEVER, this is not, repeat NOT an endorsement of any software offered for download from this or any other non-HP website! --- Use these third-party utilities at your own risk!!
    (B)  It may be possible to use Microsoft's System Restore to "rollback" your system to a time before the virii infected the computer.  However, this implies you are willing to try this option and KNOW of a specific date when the virii might have entered into the computer.  I have seen computers that alledgedly had a virus on them for 6 months, and I do not know of any case where a person successfully "rolled back" a system to a Restore Point older than a week or two (i.e. 7 to 10 days).
    If neither of these options seems comfortable to you OR the System Recovery discs either were not created or now cannot be created due to the slow performance of the computer, GO AND GET SOME PROFESSIONAL computer support.  The options I laid out above are the least expensive choices, but paying someone else to help out is good for the user (less stressful) and supports the local economy.
    Get a recommendation from a relative, friend, neighbor or co-worker on a local PC Technician they have used in the past and trust.  These days it is exactly like knowing an expert plumber, carpenter or auto mechanic!
    Good luck!,
    ~ Dennis C.
    Owner, Echo Technology Consulting

  • Convert smartform output in to PDF using CONVERT_OTF function  how to do it

    Hi Anil , and  Hi All
             I am trying to display smartforms output in java webdynpro
             for that i have got the following code in sdn.
               can anybody please clarify these doubts in the  below code
               1) What are the mandatory input and output parameters
                   I have to pass here in this code to my application
               2) please check my previous post also in this regards please
       . Please reply at the very earliest. Check the below code
    Convert smartform output in to PDF using CONVERT_OTF function module and you can write pdf using parameter 'binfile' of this function in WebDynpro using the following code:
    It is copied from my prg. I hope you understand it.
    public void onActionGetQuote(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionGetQuote(ServerEvent)
    wdThis.wdGetOppt_QwriterCustController().executeZquote_Writer_Input();
    String fileName = wdContext.currentZquote_Writer_InputElement().getOrder().toString().trim() + System.currentTimeMillis() + ".pdf";
    String pdfOutput = new String(wdContext.currentOutputElement().getBinfile());
    if (pdfOutput != null)
    try
    String pdfResoucePath = WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(), fileName);
    FileOutputStream fileOutputStream = new FileOutputStream(new File(pdfResoucePath));
    PrintStream ps = new PrintStream(fileOutputStream);
    ps.print(pdfOutput);
    ps.close();
    //Display the PDF to the browser
    String fileURL = WDURLGenerator.getAbsoluteWebResourceURL(wdComponentAPI.getDeployableObjectPart(), fileName);
    IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(fileURL, "Pdf Browser", false);
    window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
    window.removeWindowFeature(WDWindowFeature.MENU_BAR);
    window.removeWindowFeature(WDWindowFeature.STATUS_BAR);
    window.removeWindowFeature(WDWindowFeature.TOOL_BAR);
    window.open();
    // To collect all the file created in the server by user
    quoteFiles.add(quoteFiles.size(), pdfResoucePath);
    } catch (Exception e)
    throw new WDRuntimeException(e);
    //@@end

    Hi
        ABAPers prepared a BAPI function module which calls Smart form , how can i execute it from java Webdynpro, so that I can display the smart form in Webdynpro. Pleas reply at the very earliest.  Every answer will be rewarded.
    regards
    jalandhar

  • I am having serious issues trying to alter my old iCloud account with an old non-functioning email to my new apple id with a new email address. The message keeps coming up on all my apple products with my old email (which is not available anymore).

    I am having serious issues trying to alter my old iCloud account with an old non-functioning email to my new apple id with a new email address. The message keeps coming up on all my apple products with my old email (which is not available anymore).

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • I have noticed an issue with utilizing the "stream" function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clea

    I have noticed an issue with utilizing the “stream” function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clearly see that storage has been reduced under the usage, yet under the “videos” tab it still states “No Data” the only way to delete what you have partially downloaded is to fully download the video, which is fine but there is no way to tell what videos have been partially downloaded (I.e which occurs a lot when your child switches between movies using the so called “stream” function). This becomes troublesome once the capacity of the ipad is almost met and you have no way to delete this data since you may have several videos that have started to be viewed (hence partially downloaded). Apple needs to somehow make it truly streaming or provide an update so the storage can be managed. The only way I have been able to remove partially downloaded videos is by doing a total software restore. (The video data that is in question when connected to my MacBook shows up in iTunes as “other”) if you have any insight into this issue it would be greatly appreciated. Thanks.

    Here are the screenshots for what it's worth.
    Not sure why I can't post them in the original post.<br>
    <sub><b>Mod edit: See [https://bugzilla.mozilla.org/show_bug.cgi?id=718813 bug 718813]</b></sub>
    '''Again, when I set my DNS server to automatically detect the servers both problems disappear and I have no issues at all.'''
    IMO opendns is either doing this on purpose (unlikely) or they're under some sort of attack/being used to attack the specific torrent sites although I'm open to other explanations. I believe using the automatic setting for DNS is using my own ISP's DNS servers (which again, work fine... but still...)
    I'd rather not use Google's public DNS servers as Google is to commercial these days and I think there's potential privacy issues.
    '''Again I have changed the setting for DNS servers back and forth several times to duplicate/verify the issue(s)... and the issues only happen with the opendns servers.'''

Maybe you are looking for

  • Message in miro

    Hi ,  I used the user exit in miro transaction, i have a requirement that in miro when anyone change the vendor and payment term and payment block , a message  shows  that 'vendor and payment term and payment block cannot be changed' but i want that

  • My iphone 3g is stuck on plug into itunes screen

    It did this after I tried updating my phone. I have tried different USB cables. I have uninstalled and reinstalled itunes. I have did the software interference thing. Help!!!!!!!!!!!!!!

  • Report related to Text

    Dear Experts, My requirement is to download all the texts to excel sheet. Is there any report which outputs all the texts. Thanks in advance. Shravan

  • Transferring number to O2 in the UK

    If you read the info provided by O2 it suggests that existing O2 customers will get a temporary number to use until their existing number is transferred. It says it may take 5 days. However, for new customers it just says it may take 5 days - it give

  • DIAdem 2011: Error while executing "PicPDFExport" command

    I'm using DIAdem v 11.3.0f4563 on Win2003 (32bit). I'm unable to export reports to PDF (this has worked fine on previous DIAdem versions on the same HW/OS). The problem occurs every time I select "File -> PDF Export..." from the menu. First i get to