Portal not picking up the changes when I transport to live system

Hi All,
I created a report by using report designer in dev. system when I run the report it is picking up the changes in the portal but when i transport the report to live still i can see the changes i made in the report in report designer but when i run the report it is giving me the same old version of the output instead of new changes.
Could any one help....please

Hi
Open the workbook
Place your mouse on the result area and right click...there one window will open ....in the properties...go to Interaction tab...and tick mark..third option refresh query when opening workbook
Save the workbook
Again change the query and see your change is saved in the workbook
Assign points if useful
Thanks
N Ganesh

Similar Messages

  • Why wsgen does not pick up the changed interface in wsdl.jsp?

    Hi,
    After I changed the type of return value in a method in a stateless EJB. The wsdl.jsp
    generated by wsgen does not pick up the changed interface (it still has the old interface).
    The installed ejb works well with new type of return value. But the web service (wsdl.jsp)
    and client.jar does not work. At begining I thought it might be cached. So I cleaned
    the cache in the browser and temporal directory inside wls domain. I also deleted
    all old version of ejbs on my local disks. But there is no effect. I am confused.
    Please help. Where does the wsgen looking for when generating wsdl.jsp?
    Thanks a lot.
    Jim

    Hi,
    Please check the following path if your application is deployed or not properly if you are using eclipse:
    Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps

  • Portal not picking up changes to my .shell

    Hi,
    I added a header to the default headerFooter.shell a while ago. I could never
    get it to show up in my portal and I finally gave up. I know Merlin died a while
    ago so I don't think it is magic but I came in a few days later started my IDE
    and low and behold my header was showing up all of the sudden. Now I want to
    add a footer. I modified the same headerFooter.shell and I can not get the stupid
    thing to show up. I tried cleaning the app, rebuilding the app, stopping and
    starting the server. and even bumping the IDE none of which worked. What would
    be really cool is if I could just drag a .jsp file from the application window
    into my header or footer and have it show up. Anyone out there ever have this
    problem before?
    Thanks,
    John

    not sure whats going on, but let me explain how the .shell files work and maybe
    this will help.
    the markup from the .shell file is copied into the .portal file when you create
    a new portal.
    when you change the markup in the .shell file the IDE should refresh the markup
    in the .portal file to relfect the changes you made in the .shell file. I think
    this is not happening,
    to verify this view your .portal file as XML or open up in wordpad and check to
    see if the changes you made in your .shell file made it into the .portal file
    (since you are making changes to the footer these changes should be at the bottom
    of the .portal file)
    If the changes did not make it in try the following:
    1) changing shells in the IDE to an old one - save - and then back to your new
    one - save
    2) or just manually copy the markup into your .protal file
    Note when you 'disassemble' the portal in the Admin tools (create a desktop from
    a .portal file)
    The markup in the .shell file will be used not the markup in the .portal file
    (these should be the same though). The disassembler uses the 'markupName' attribute
    in the .portal file to match with the markupName attribute in the .shell file.
    hope this helps.
    OBTW - for the next release we are planning on allowing you to drop .jsp, .jpf,
    .pinc file into the shell from the IDE.
    "John Hundley" <[email protected]> wrote:
    >
    None of your suggestions worked. There is no folder with the same name
    as my computer.
    Please I want to throw somthing!!!!!!
    "Khurram Zafar" <[email protected]> wrote:
    I have noticed that sometimes, a property set in the property sheetin
    workshop
    doesn't get written to the underlying file and I have had to manually
    go and write
    the element to the xml file. I don't recall exactly which ones those
    are. Try
    one of these:
    1. Check that the property actually got written to the xml file, inyour
    case
    headerfooter.shell
    2. Try to make a change to a portal property as well, like setting the
    look and
    feel to classic from default or vice versa to get the server to reload
    all the
    framework related changes. If that doesn't work, and you have triedbouncing
    the
    workshop and the server, then:
    3. On your development machine, in your <domain name> folder there should
    be a
    folder named the same as the machine name you are working on. That has
    some cached
    files and data. Rename that folder to another name, shut down your server
    and
    restart. It should work now.
    Cheers
    Khurram
    "John Hundley" <[email protected]> wrote:
    Hi,
    I added a header to the default headerFooter.shell a while ago. I
    could
    never
    get it to show up in my portal and I finally gave up. I know Merlin
    died a while
    ago so I don't think it is magic but I came in a few days later started
    my IDE
    and low and behold my header was showing up all of the sudden. NowI
    want to
    add a footer. I modified the same headerFooter.shell and I can notget
    the stupid
    thing to show up. I tried cleaning the app, rebuilding the app, stopping
    and
    starting the server. and even bumping the IDE none of which worked.
    What would
    be really cool is if I could just drag a .jsp file from the application
    window
    into my header or footer and have it show up. Anyone out there ever
    have this
    problem before?
    Thanks,
    John

  • Hi can anyone help me, my daughters macbook will not pick up the wireless signal in her bedroom when me and my wifes iphone picks it up easy. any ideas to help please.A

    Hi can anyone help me, my daughters macbook will not pick up the wireless signal in her bedroom when me and my wifes iphone picks it up easy. any ideas to help please.Andy

    P.S i;ve heard a comment about the G5 case not being
    great for wireless so the cards come with a plastic
    antena that connects to the back of the machine - i
    never recieved one of these - could that be the
    problem?
    Newer G5 PowerMacs don't require the external t-shaped aerial, earlier models do and that is probably the cause of the problem.
    iFelix

  • Suggestion for not picking up the same record

    Hi All,
    I have a plsql procedure that picks up the records from the same table from multiple threads. Different threads should not pick up the same record.
    Current Logic:
    I am locking the row that has been picked up the current thread and the next thread should pick up the next row but unfortunately i have a problem here, The inner query will pick up the same record until the status of that particular row is changed since I am picking them up in a FIFO order.
    I am not able to add the lock row in the inner query since oracle does not support it. Is there any other way to do it simpler?
    XXRM_ARM_HEADER
    header_id
    service_id
    XXRM_ARM_LINES
    line_id
    header_id
    status
    Query
    SELECT dl.header_id, dl.line_id
    FROM xxrm_arm_header dh, xxrm_arm_lines dl
    WHERE dh.header_id = dl.header_id
    AND dh.service_id = 4
    AND dl.status = 'REQUEST_RECEIVED'
    AND dl.line_id = (SELECT LINE_ID
    FROM ( SELECT dl.line_id
    FROM xxrm_arm_lines dl,
    xxrm_arm_header dh
    WHERE dh.header_id = dl.header_id
    AND dl.status = 'REQUEST_RECEIVED'
    AND dh.service_id = 4
    ORDER BY dl.line_id ASC)
    WHERE ROWNUM = 1)
    FOR UPDATE OF dl.status NOWAIT SKIP LOCKED

    Robert Angel wrote:
    forgive me if I am naive, but why wouldn't each thread updating its selected rows with a nowait and if exception pick the next range mechanism work?It is not that simple. You can get race conditions between threads as they process the same rows in the same order attempting to "beat" one another by being the first to lock it. The more threads there are, the potentially worse this situation.
    There's also the issue of performance. The thread concept (aka parallel processing) in this respect has a single primary aim. Increase performance and scalability. But does it?
    How is I/O reduced when 50% or more of the reads done by the thread (to find a row to process) is wasted I/O as rows being read have already been locked by other processes/threads?
    The fact remains that if you give the same set of rows to a bunch of threads (e.g. DBMS_JOB processes) for processing, they will contend for the same rows. There will be overheads. There will be wasted I/O.
    So what I am suggesting is each thread; -
    1. Look for rows unprocessed, I usually use atribute field in e-Business suite for this purpose
    2. Attempt to update them with nowait, to INPROCESS
    3. If 2 fails, try the next range - repeat until 2 is possible or end of rangeAnd step 3 is the one that will waste I/O and waste time - as the time it spend looking for a row to process could have been spend on actually processing a row.
    4. You could also improve this by specialising each thread to have its own preferences, if there exists a mechanism that would mean fair distribution between the threads..Yes, and this is a key factor to removing contention between threads, reducing their I/O overheads and reducing their time being spend on finding unprocessed rows to lock and process.
    Then there's Oracle technical issues. On 11gr2 for example, despite using skip locked or nowait (that cannot be used together in a single clause like in 10g), I'm seeing deadlocks when threads contend for the same rows. Same code works fine in 10g without deadlocks. So the approach one chooses need careful testing on that specific Oracle version to ensure it behaves as expected and meets the performance requirements.
    Bottom line is that parallel processing is not as straight forward as simply slapping a nowait clause onto a select statement in order to skip locked rows.

  • Has anyone else ever had a problem where you had to perform 2 datasocket writes before the datasocket read would pick up the change?

    I have a local VI that is simply a control that writes to the datasocket server whenever the control value changes.(the dataitem on the server is permanent - its initialized and never released by the server)
    In the same local VI I have a datasocket read polling a different dataitem on the server.
    The remote machine has a VI that reads the permanent dataitem on the server once per second.
    For some reason, after adding the local VI mentioned above, the remote VI stopped picking up the first change in the permanent variable.
    I'd start both the local and remote VIs...
    Then change the local control and the remote V
    I would not update - as if the datasocket write(upon adjusting the control) did not take place. So I'd change the control value again - this time the remote VI would update to this new value. And from here on out - the remote VI would update correctly. This problem only occurs when the local VI is first started up.
    What in the heck is going on?

    dingler44 wrote:
    >
    > Has anyone else ever had a problem where you had to perform 2
    > datasocket writes before the datasocket read would pick up the change?
    >
    > I have a local VI that is simply a control that writes to the
    > datasocket server whenever the control value changes.(the dataitem on
    > the server is permanent - its initialized and never released by the
    > server)
    > In the same local VI I have a datasocket read polling a different
    > dataitem on the server.
    > The remote machine has a VI that reads the permanent dataitem on the
    > server once per second.
    > For some reason, after adding the local VI mentioned above, the
    > remote VI stopped picking up the first change in the permanent
    > variable.
    > I'd start both the local and remote VIs...
    > Then change the local control and the remote VI would not update -
    > as if the datasocket write(upon adjusting the control) did not take
    > place. So I'd change the control value again - this time the remote
    > VI would update to this new value. And from here on out - the remote
    > VI would update correctly. This problem only occurs when the local VI
    > is first started up.
    >
    > What in the heck is going on?
    Gorka is right, this came up on Info-LV a few days ago. Someone
    described a similar problem. I replied that I had seen similar
    behaviour, reported it to NI, and they verified a bug. There is no fix
    yet, but they are aware of it and will fix it. No anticipated release
    date for the fix.
    Regards,
    Dave Thomson
    David Thomson 303-499-1973 (voice and fax)
    Original Code Consulting [email protected]
    www.originalcode.com
    National Instruments Alliance Program Member
    Research Scientist 303-497-3470 (voice)
    NOAA Aeronomy Laboratory 303-497-5373 (fax)
    Boulder, Colorado [email protected]

  • Bookmarks that have both a keyword assigned to them and are set to open in the sidebar will not open in the sidebar when keyword is entered in the location bar. Why?

    I am using version 3.6.10. Windows 7.
    But I have had this problem for years.
    Have the same result in a clean installation.
    Have the same result in XP, also in a clean installation.
    When creating a bookmark, you have the option to
    1. add a KEYWORD, and
    2.the option to check the box that says "load this bookmark in the sidebar."
    If a bookmark has BOTH a keyword assigned to it AS WELL AS a checked box to "load this bookmark in the sidebar", then
    1. it WILL NOT open in the sidebar when the keyword is entered in the locationbar.
    2.It WILL open in the sidebar if you click on the bookmark directly from the bookmark menu, toolbar, or the like.
    Is there any plan to fix this? Is there an extension to fix this? A patch to fix this?
    It's kind of ridiculous that such a bug still exists.
    more and more tech sites are advocating the time saving qualities of being able to load mobile and iphone sites in the sidebar - like gmail, google calendar, twitter, facebook chat, igoogle gadgets, widgets, meebo, and almost every other site either via it's mobile version or by converting an igoogle gadget or just using and iframe. it makes me nuts that I have to shove all my bookmarks that are sidebar-loading to be within view on the bookmark toolbar. help!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Both my iphone 4s and my ipad3 will not connect to the server when trying to access my email account. Why, and how do I fix it.

    Since 29/10/2012 my iphone 4s and more recently my ipad 3 will not connect to the server when trying to access my email account. All I get is an error message saying that 'cannot get mail, connection to the server failed' I hadnt changed any settings it just happened. I have since done a complete re-boot on the ipad but to no avail. Anybody got any suggestions?

    No. Everything was working fine and then it wasn't. I hadn't changed any settings or switched either one off. When the phone stopped working properly I ignored it because I always have my ipad with me but that just sopped working properly and now I am stuffed. I have tried most solutions suggested on here even wiping the ipad clean and re-booting. I did this exactly the same way as when I first got it but still no joy. The same with the phone.

  • PO not picking up the Price from Info Record ???

    Hi,
    Pricing Procedure and the Schema Grp is defined in Schema Determination in SPRO.
    Schema Grp has been assigned in the Vendor Master.
    Price has been maintained in the PB00 condition type in the Condition Supplements screen, but shows 'Zero' in the 'Purchasing Org. Data 1' screen of Info Record.
    However, while creating PO the system does not pick up the Price from the Info Record and both the Condition Types PB00 and PBXX appears and display the Amount as 0.00 ? Also the system does not take the value entered in the 'Net Price' field and the Price can only be entered manually in the Conditon Type in the Conditions Tab ?
    Can anyone help in resolving this issue ?
    Lucky.

    Hi Lucky
    1.Routine 6
    This is an example of a pricing requirement.  This requirement is met if the condition exclusion indicator is not equal to 'X'.  <b>This requirement can be assigned to a condition type in the pricing procedure to ensure that it is not accessed when a condition record with exclusion indicator 'X' has already been found</b>.  Condition exclusion is a general tool that can be used to exclude conditions from pricing based on previous conditions that have been found in the pricing procedure.  This requirement is intended for use in MM pricing versus SD pricing.  For SD pricing, a variation of requirement '2' should be used which would also check to see if the item category is relevant for pricing
    2. You have define all your supplementory condition in supplementory pricing procedure and you have to assign this supplementory procedure to your Condition type PB00.Then all these conditions will be displayed at item level for selection in drop down.
    Since the supplementory conditions are dependent on PB00, you have assign to the PB00.
    If you maintain the values for these conditions in info record, these values will be copied from info to PO.
    Regards
    Ramakrishna

  • JDBC sender channel running but not picking up the data from sp

    Hi,
    One of the jdbc sender channels in production is running at its schedule time but it is not picking up the data from the sql side, we have checked with the sp side and they are saying that sp is running fine. No changes have been done in its configuration. Last message coming in RWB  is Retry interval started but that is of 1 day and its already been 3 days. I tried by starting and stopping the channel but of no use. The channel was re activated but that also didn't help.
    Please help, what can be the reason for the same.
    thanks.

    Hi,
    The JDBCadapter ( The respective channel) is definitely locked in PI . Ideally for each polling interval a lock is being created and once the processing is over , the lock should be released/deleted automatically to allow further polling interval. If the lock is not released by the system automatically,further polling will not happen as expected. ( This may affect all sender JDBC adapters as well. I would recommend to do a check in all sender JDBC communication channels)
    You can see/delete the locks in Visual admin.
    Go to Server>Services->Locking adapter and click refresh
    The entries for JDBC adapter ( with name $XIDBAD.JDBC2XI) should be deleted by selecting those particilar entries and click delete selected locks.
    If you have more than one node, then same should be done in all server nodes.
    The temprory solution would be creating/copy the existing channel in ID with same properties and assign it into particular sender agreement.
    But, the lock may be created again which potentailly stops all your database interfaces. Hence i would suggest to use Disconnect From Database After processing of Each messages in Advanced tab in the sender JDBC adapter.
    Hope this solves your issue.
    PS: The same bahaviour would expected for all file adapter as well

  • Vertical scrollbar not showing all the records when I scroll down.

    Vertical scrollbar not showing all the records when I scroll down.
    Using Oracle forms 10g , operating system windows
    I have two fields with number of items dispayed = 15.
    I have a vertical scroll bar with them. There are 34 records in the table but the scrollbar only shows 15 records.
    Here are the properties for block / scrollbar.
    WORK_CATEGORY
    - Subclass Information                           
    - Comments                                       
    * Navigation Style                                Same Record
    - Previous Navigation Data Block                 
    - Next Navigation Data Block                     
    - Current Record Visual Attribute Group          
    - Query Array Size                                0
    - Number of Records Buffered                      0
    * Number of Records Displayed                     60
    * Query All Records                               No
    - Record Orientation                              Vertical
    * Single Record                                   No
    - Database Data Block                             Yes
    - Enforce Primary Key                             No
    - Query Allowed                                   Yes
    - Query Data Source Type                          Table
    * Query Data Source Name                          WORK_CATEGORY
    * Query Data Source Columns                      
    * Column Name                                   JOB_TYPE
    * Column Type                                   VARCHAR2
    - Column Type Name                             
    - Parent Column                                
    * Length                                        30
    * Precision                                     0
    * Scale                                         0
    * Mandatory                                     Yes
    * Column Name                                   WORK_CATEGORY
    * Column Type                                   VARCHAR2
    - Column Type Name                             
    - Parent Column                                
    * Length                                        30
    * Precision                                     0
    * Scale                                         0
    * Mandatory                                     Yes
    - Query Data Source Arguments                    
    - Alias                                          
    - Include REF Item                                No
    * WHERE Clause                                   
    * ORDER BY Clause                                 job_type
    - Optimizer Hint                                 
    - Insert Allowed                                  Yes
    - Update Allowed                                  Yes
    - Locking Mode                                    Automatic
    - Delete Allowed                                  Yes
    - Key Mode                                        Automatic
    - Update Changed Columns Only                     No
    - Enforce Column Security                         No
    - Maximum Query Time                              0
    * Maximum Records Fetched                         0
    - DML Data Target Type                            Table
    - DML Data Target Name                           
    - Insert Procedure Name                          
    - Insert Procedure Result Set Columns            
    - Insert Procedure Arguments                     
    - Update Procedure Name                          
    - Update Procedure Result Set Columns            
    - Update Procedure Arguments                     
       Don't know where am I going wrong. I'll really appreciate if you can help me in this.
    Thanks.
    Edited by: 831050 on Sep 14, 2011 8:05 AM

    One of the items is a list item.. here are it's properties:
    * Name                                          JOB_TYPE
    * Item Type                                     List Item
    - Subclass Information                         
    - Comments                                     
    - Help Book Topic                              
    - Enabled                                       Yes
    * Elements in List                             
    * Label                                      
    * List Item Value                             LIST20
    * List Style                                    Combo Box
    - Mapping of Other Values                      
    - Implementation Class                         
    - Case Restriction                              Mixed
    - Popup Menu                                   
    - Keyboard Navigable                            Yes
    - Mouse Navigate                                Yes
    - Previous Navigation Item                     
    - Next Navigation Item                         
    - Data Type                                     Char
    - Data Length Semantics                         Null
    - Maximum Length                                30
    - Initial Value                                
    * Required                                      Yes
    * Copy Value from Item                         
    - Synchronize with Item                        
    - Calculation Mode                              None
    - Formula                                      
    - Summary Function                              None
    - Summarized Block                             
    - Summarized Item                              
    - Current Record Visual Attribute Group        
    - Distance Between Records                      0
    * Number of Items Displayed                     15
    - Database Item                                 Yes
    * Column Name                                   JOB_TYPE
    - Primary Key                                   No
    - Query Only                                    No
    - Query Allowed                                 Yes
    - Insert Allowed                                Yes
    - Update Allowed                                Yes
    - Update Only if NULL                           No
    - Visible                                       Yes
    * Canvas                                        CANVAS2
    - Tab Page                                     
    * X Position                                    47
    * Y Position                                    137
    * Width                                         187
    * Height                                        18
    - Visual Attribute Group                        DEFAULT
    - Prompt Visual Attribute Group                 DEFAULT
    - Foreground Color                             
    * Background Color                              white
    - Fill Pattern                                 
    - Font                                         
    * Font Name                                     Tahoma
    * Font Size                                     10
    * Font Weight                                   Demilight
    * Font Style                                    Plain
    * Font Spacing                                  Normal
    * Prompt                                        Job Type
    - Prompt Display Style                          First Record
    * Prompt Justification                          Start
    * Prompt Attachment Edge                        Top
    - Prompt Alignment                              Start
    * Prompt Attachment Offset                      10
    * Prompt Alignment Offset                       0
    - Prompt Reading Order                          Default
    - Prompt Foreground Color                      
    - Prompt Font                                  
    * Prompt Font Name                              Tahoma
    * Prompt Font Size                              10
    * Prompt Font Weight                            Bold
    * Prompt Font Style                             Plain
    * Prompt Font Spacing                           Normal
    - Hint                                         
    - Display Hint Automatically                    No
    - Tooltip                                      
    - Tooltip Visual Attribute Group               
    - Direction                                     Default
    - Initial Keyboard State                        Default
    - Keyboard State                                Any
        

  • I use firefox as my web browser not internet explorer and for some reason itunes says i am not connected to the internet when i am connected.

    i use firefox as my internet browser. when i go to itunes to download music it says i am not connected to the internet when actualy i am. what am i doing wrong?

    Firefox is a web browser not a homepage.
    It sounds like you you have the old www.google.com/firefox/ start page that used to be the default homepage in Firefox before Firefox 4.0 sometime. It is not being maintained by Google anymore so either ignore the message or while in Firefox go to Tools->Options->General->Homepage section and change your homepage.

  • Why does it say itunes can not contact the ipod update server because you are not connected to the internet when i am connected to the internet?

    why does it say itunes can not contact the ipod update server because you are not connected to the internet when i am connected to the internet? i need to update my ipod i even changed the LAN settings and it stilll doesnt work

    Have you seen this article?
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    B-rock

  • HT4623 Has anyone had trouble installing 7.1 wirelessly on an ipad mini w/retina?  I downloaded the update, but when I attempt to install, I get an error message saying that I am not connected to the internet when I know that I am!

    It downloaded fine, but when I attempt to install it won't verify, saying that I am not connected to the internet when I know that I am!  Tried on several wifi connections while plugged into power source.  Any advice is appreciated!

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are drooping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    iPad: Issues connecting to Wi-Fi networks
    http://support.apple.com/kb/ts3304
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h Mt
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • I have windows vista home premium and all other versions of iTunes worked on my laptop iTunes 10 won't work, I get a message saying I'm not connected to the Internet when I am. Why isn't iTunes recognizing my browser configuration?

    I have windows vista home premium and all other iTunes worked on my laptop, I downloaded iTunes 10 and now the iTunes will not connect to the Internet. I use Mozilla firefox on my laptop and for some reason it keeps saying the connection timed out and I'm not connected to the Internet when I am. Why isn't iTunes recognizing my web configuration?

    It probably has to do with your security and/or browser configuration.
    When my laptop crashed last year and I had to get a new one, I dealt with the same thing. First, go to your control panel and select the security section. See if your firewalls are up or not. If they are, turn them off. If you have any software to speed up your browser, that can affect the connection as well. Go into that software and disble/turn it off. If this doesn't work, contact customer support. They have a few other tricks they had me try that worked, but I can't remember them now.

Maybe you are looking for