Could someone explain what this piece of codes means

The code section is below there are few things I don't get about this code:
1:What does all that stuff that the string data equals means
// Construct data
        String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
        data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");2: The second thing is that I'm wondering what is the URL definining part mean, more specifically what's the 80 for and why is there that cgi line.
URL url = new URL("http://hostname:80/cgi");This is the full code that I'm getting the questions from
    try {
        // Construct data
        String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
        data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
        // Send data
        URL url = new URL("http://hostname:80/cgi");
        URLConnection conn = url.openConnection();
        conn.setDoOutput(true);
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(data);
        wr.flush();
        // Get the response
        BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String line;
        while ((line = rd.readLine()) != null) {
            // Process line...
        wr.close();
        rd.close();
    } catch (Exception e) {
    }

The code section is below there are few things I
don't get about this code:
1:What does all that stuff that the string data
equals means
// Construct data
String data = URLEncoder.encode("key1",
"UTF-8") + "=" + URLEncoder.encode("value1",
"UTF-8");
data += "&" + URLEncoder.encode("key2",
"UTF-8") + "=" + URLEncoder.encode("value2",
"UTF-8");
Looks like data is a query string for an HTTP GET request. It has two key/value pairs encoded as UTF-8.
: The second thing is that I'm wondering what is the
URL definining part mean, more specifically what's
the 80 for and why is there that cgi line.
URL url = new
URL("http://hostname:80/cgi");
The code is making the HTTP GET request to a server named hostname via port 80 to a CGI script that will consume the request and send a response back.
This is the full code that I'm getting the questions
from
    try {
// Construct data
String data = URLEncoder.encode("key1", "UTF-8") +
"=" + URLEncoder.encode("value1", "UTF-8");
data += "&" + URLEncoder.encode("key2",
"UTF-8") + "=" + URLEncoder.encode("value2",
"UTF-8");
// Send data
URL url = new URL("http://hostname:80/cgi");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new
OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();
// Get the response
BufferedReader rd = new BufferedReader(new
InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null) {
// Process line...
wr.close();
rd.close();
} catch (Exception e) {
Very bad code. An empty catch block? Terrible.
%

Similar Messages

  • Hi can someone explain what the following error code mean and how i can recifty to download a copy of ebook purchase Error getting License. License Server Communication Problem: E_ACT_NOT_READY

    Hi can any one help
    I keep getting the following error code when I try and down a ebook which I have purchase
    Error getting License. License Server Communication Problem:
    E_ACT_NOT_READY
    can someone advise me what this means and how I recifty the problem to enable me to read the ebook purchase?
    Thanks

    I am having this exact issue. I just downloaded a book and went to open it and got this exact problem.
    I purchased he book through indigo/kobo edition and paid for it and immediately went to open it and am getting the same error
    Error getting License. License Server Communication Problem only mine says  Bad Device key after.
    Not sure why someone has not answered this question yet...i am using windows 7 and this is how i always do it. Never had this problem before when purchasing a book.
    i hope someone answers this soon.

  • Could someone explain what is wrong with this refind expression?

    Hi, could someone explain what is wrong with this refind expression
    faultCode:Server.Processing faultString:'Unable to invoke CFC - Malformed regular expression "^[0-2][0-9][/][0-1][0-2][/][1-2][0-9]{3}+$".'
    thanks

    ^[0-2][0-9][/][0-1][0-2][/][1-2][0-9]{3}$ works,
    thanks
    dates 12/12/2007matching

  • Could someone explain what is Object?

    Could someone explain what is Object? I have a little
    idea what is it, but not sure. Please give me some
    concret example. Thanks.

    An object is an Instance of a class. A class describes a uniwue entity with behaviors and attributes. For example you can consider your arm.
    public class Arm {
      /** How many hairs on the arm. */
      private int hairCount;  // <== This is an attribute
      /** This is a method to set the hairCount Variable.
       * We dont let the outside user set it directly because that would
       * create problems if we wanted to change its implementation to
       * use a float. In addition we might have logic in this setter to
       * prevent bad data.
      public void setHairCount(final int hairCount) {
        // this is a good example of logic in the set method that we dont
        // want the user to bypass.
        if (hairCount < 0) {
          throw new IllegalArgumentException();
        this.hairCount = hairCount; // <-- Note how we have to use this. to
                                    //     access the instance variable
                                    //     insead of the parameter.
      /** This is a method to move the arm.
       * This is behavior of the class. ONLY behavior pertaining to an arm
       * belongs in the arm class. For example, the method "sneeze" would
       * not belong here but be in the Nose class instead. You can see then
       * that each class describes an entity.
      public void move() {
        // code to move the arm.
    }We have only ONE class per type but we can have many objects. For example the description of an arm does not change no matter who'se arm it is. The data in the class changes but not the actual essence of the arm. So we instantiate two arms for every person (assuming they arent disabled). To instantiate is to create a new object like so.
    Arm myarm = new Arm(): This creates a new object that we can work with.
    So consider the old inteview question of, "What is the difference between a class and an object?" The answer is, "A class is a map or desription of an object; whereas an object is a descrite instance of a class."

  • Updated to Yosemite recently, keep on getting efi and kernel panics. Can someone explain what this report means?

    This is the crash report I just got. I am just doing random work and this happens. I would really appreciate it if someone could explain what this means. I have fixed my computer with DiskWarrior 3 times but this just keeps happening. I also have bootcamp and it's doing absolutely fine.
    Anonymous UUID:       CF401590-1A3C-749E-F045-F2498CA51C2F
    Tue Nov 18 18:41:14 2014
    *** Panic Report ***
    panic(cpu 0 caller 0xffffff8025a1e80a): Kernel trap at 0xffffff8132a4b870, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff8132a4b870, CR3: 0x00000001e40ab0d9, CR4: 0x00000000001626e0
    RAX: 0x0000000000000000, RBX: 0x0000000000000001, RCX: 0x000000002e4e5941, RDX: 0x0000000000000000
    RSP: 0xffffff8132a4b598, RBP: 0x0000000000000000, RSI: 0x00000000563af16d, RDI: 0x0000000000000000
    R8:  0xffffff8132a4b640, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0x0000000000000200
    R12: 0x0000000025000000, R13: 0x0000000000000200, R14: 0xffffffef00000000, R15: 0x0000000000000011
    RFL: 0x0000000000010296, RIP: 0xffffff8132a4b870, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff8132a4b870, Error code: 0x0000000000000011, Fault CPU: 0x0 Kernel NX fault
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8132a4b240 : 0xffffff802593a811
    0xffffff8132a4b2c0 : 0xffffff8025a1e80a
    0xffffff8132a4b480 : 0xffffff8025a3a443
    0xffffff8132a4b4a0 : 0xffffff8132a4b870
    BSD process name corresponding to current thread: savapi
    Mac OS version:
    14A389
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:     0x0000000025600000
    Kernel text base: 0xffffff8025800000
    __HIB  text base: 0xffffff8025700000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 7026664466086
    last loaded kext at 1837127380720: com.avira.kext.FileAccessControl 1.0.0d1 (addr 0xffffff7fa814c000, size 49152)
    last unloaded kext at 383172730740: com.apple.filesystems.msdosfs 1.10 (addr 0xffffff7fa814c000, size 61440)
    loaded kexts:
    com.avira.kext.FileAccessControl 1.0.0d1
    com.apple.driver.AudioAUUC 1.70
    com.apple.filesystems.ntfs 3.12
    com.apple.driver.AGPM 100.14.37
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.0f10
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 266.5
    com.apple.driver.AppleMikeyDriver 266.5
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.0f10
    com.apple.driver.AppleIntelHD4000Graphics 10.0.0
    com.apple.driver.AppleIntelFramebufferCapri 10.0.0
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.iokit.AppleBCM5701Ethernet 10.1.2b3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.AirPort.Brcm4360 900.19.8
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.driver.AppleUSBXHCI 705.4.14
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 266.5
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleHDAController 266.5
    com.apple.iokit.IOHDAFamily 266.5
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.0f10
    com.apple.iokit.IOBluetoothFamily 4.3.0f10
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOAcceleratorFamily2 156.4
    com.apple.AppleGraphicsDeviceControl 3.7.21
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.0
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IO80211Family 700.52
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f41
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (7.15.124.12.8)
    Bluetooth: Version 4.3.0f10 14890, 3 services, 19 devices, 1 incoming serial ports
    Serial ATA Device: APPLE HDD TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: USB Receiver
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    You have the MacBookPro6,2—the Edsel of Macs. It may have the logic-board defect that was covered by a recall program that has now ended.
    Residents of the EU may be entitled to warranty service for up to six years after purchase.
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers do not detect the fault. There is a specific test for this issue that Apple calls "VST" (for "Video Switching Test.") Ask for it. A "Failed" result means that the fault is present.
    You may be quoted a price of about $300 (in the U.S.) for a "depot repair," which involves shipping the unit to a central repair facility and takes about two weeks. For that flat fee, anything found wrong with it should be fixed, not just the logic board.
    Sometimes the replacement part is also defective, so be prepared for that possibility. If you decide to pay for a new logic board, test thoroughly during the 90-day warranty period on the repair. Some owners have reported that they went through as many as three replacement boards before getting one that worked.
    If you don't want to pay for the repair, you may (or may not) be able to work around the problem by disabling automatic graphics switching. To use the discrete graphics processor, you'll need a third-party utility to switch to it manually.
    Often the problems start after an OS upgrade. If the upgrade was recent, and you have backups, then you can revert to a previous OS X version.

  • Could someone explain what's happening? (pretty long)

    This post is similar to the one I have posted earlier. I was hoping someone could explain to me what really is going on in the server.
    I have a page where I have a header, left menu, right menu, footer. These are inluded jsp files using the include directive. In the main body I check if the request for the page was a post, do some actions with my beans then redirect to another page. So basically my code looks something like this:
       if (request.getMethod().equalsIgnoreCase("POST")) {
          // do some stuff with my beans
         response.sendRedirect("OtherPage.jsp");
         return; )When I reach the redirect that''s when I get an error: Microsoft Internal error. If I take off the redirect everything works except my user is still left in hte same page. The error occurs while I'm still loading my left menu. My left menu is made up of 2 sections. The first one is the menu options which is generated through JSP, and the second half the links of the site which is plain HTML. So I did a little experimentation. First I tried using the jsp:forward instead of the redirect. Still no go. Then I tried cutting my left menu to the point where I usually get the error, that's the part of the links. So I took of the links in the left menu - the pure HTML part of the menu, and it worked. So I tried generating the links through JSP as well. I got the error again. After researching in the forums I tried increasing the buffer size. A suggestion I saw in previous posts with people with similar problems. I increased the buffer size to 9kb using the <%@ page buffer ="9" %>. It worked. I restored my left menu the way it was before, and thikn s worked fine.
    What's bugging me is that my left menu is very simple. It's just has a small background image and some links. The main page is just a simple form as well. I really don't see why there is a need to increase the buffer size. Is my design flawed and inefficient? Or is the need to increase the buffer a common thing in web applications?
    I was also thinking could it be that I'm trying to send another response while still processing the current response? I noticed in some sites they do not redirect, instead the just post a page and link to the page where the user has to go. Is my approach wrong? Are you allowed to redirect in the manner I have?
    If my design is wrong, what are the other approaches in performing the preocedure? Are there other methods that are more efficient which do not require an increase of the buffer?
    I was hoping someone could explain what really is happening behind the scene, so I can decide what is the best approach. This is my first time doing a web application and everything is still new. Hoping to learn from you gurus. Thanks in advance for all the help!

    Hi,
    Vicky I did uncheck the show user friendly errors and
    I still get "an internal error has occured in the
    Microsoft internal extensions". Unless I'm doing
    something wrong. If it's any help I'm still using ie
    5. But I can tell you this, the error is raised while
    I'm still in the same page. The page posts to itself
    do some validation then redirects. When I hit the
    redirect That's when I get the error.It should have shown you the actual Exception,Ibelieve even after unchecking the show user friendly error the response is comming from cache...So now try this Tools-----General---DeleteFiles----AlloffLine files(Check this)....
    Now try the response....
    As regards to the buffer I tried increasing it to 9kb
    instead of the default 8kb and everything worked fine.
    Right now what I did with the page is keep the buffer
    at it's default 8kb size, it shows some message and
    provides a link to direct the user where to go. I
    don't think it's a Java exception because I have an
    error page that displays the exception and the stack,
    and I don't get redirected there. I think it has
    something to do with either the buffer and/or creating
    another response. Of course I could be wrong, I'm
    still trying to figure things out and me being a
    newbie and all I'm not getting anywhere.Well,try to access the page directly I mean OtherPage,jsp,which comes from response.sendRedirect.......
    Are you allowed to redirect while processing a
    response in the first place?Of cource you can....Actually if we see logically once the response is generated at the server it can be send as it is being generated or it can be stored in buffer at the server and then send at one time so the I/o allocations are not held forf the longer times.The default for the jsp is buffered state which can hold 8k,what will happen if the response you are trying to write is more than 8k,it will flush the old storage(check this) can depend on container implementation also....
    You get IllegalStateException if the the autoflush=false defined by you....
    Can you post the code of the two files let me see.
    regards vicky

  • Could someone explain what's going on?

    Every time I try to export from flash as a quicktime, in my exported file pieces of animation keep getting left behind as residue of some sort, and it's messing up the video. I've included a link to a youtube video of what I'm looking at, the video doesn't run real smoothly in youtube but I think it should be clear what the problem is. Thanks any help would be very much appreciated.
    http://www.youtube.com/watch?v=_YTOkyfSx40

    Also, I'm using CS4

  • This is the crash report. Can someone explain what this means?

    Add-ons: %7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:24.0
    AvailablePageFile: 4376780800
    AvailablePhysicalMemory: 475205632
    AvailableVirtualMemory: 1540612096
    BuildID: 20130910160258
    CrashTime: 1408140691
    EMCheckCompatibility: true
    InstallTime: 1407345264
    Notes: xpcom_runtime_abort(###!!! ABORT: OOM: file e:\builds\moz2_slave\rel-m-rel-w32_bld-000000000000\build\xpcom\string\src\nsTSubstring.cpp, line 291)
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 167
    StartupTime: 1408140687
    SystemMemoryUsePercentage: 86
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 2147352576
    URL:
    Vendor: Mozilla
    Version: 24.0
    This report also contains technical information about the state of the application when it crashed.

    We're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste that into the "Post a Reply" box. (Please don't take a screenshot of your crashes, just copy and paste the ID's. The below image is just an example of what your Firefox screen should look like)
    [[Image:aboutcrashesFx29|width=520]]
    <br><br>
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

  • Can someone explain what this means

    Aug 10 23:53:19 Joes-MacBook-Pro.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.burn' by client '/usr/sbin/system_profiler' [260] for authorization created by '/usr/sbin/system_profiler' [260] (B,0)
    Aug 10 23:58:55 Joes-MacBook-Pro.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.burn' by client '/Applications/Utilities/System Information.app' [251] for authorization created by '/Applications/Utilities/System Information.app' [251] (B,0)

    Follow up question what does this mean?
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: MacAuthEvent en1   Auth result for: 00:12:0e:57:17:42  MAC AUTH succeeded
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: MacAuthEvent en1   Auth result for: 00:12:0e:57:17:42 Unsolicited  Auth
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: AirPort: Link Up on en1
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: en1: BSSID changed to 00:12:0e:57:17:42
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Aug 11 00:00:48 Joes-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
    Aug 11 00:00:48 Joes-MacBook-Pro.local configd[17]: network changed: v4(en1+:192.168.1.42) DNS+ Proxy+ SMB
    Aug 11 00:00:48 Joes-MacBook-Pro.local UserEventAgent[11]: Captive: en1: Not probing 'justin' (protected network)
    Aug 11 00:00:48 Joes-MacBook-Pro.local configd[17]: network changed: v4(en1!:192.168.1.42) DNS Proxy SMB
    Aug 11 00:00:49 Joes-MacBook-Pro.local airportd[308]: _doAutoJoin: Already associated to “justin”. Bailing on auto-join.
    Aug 11 00:00:54 --- last message repeated 1 time ---
    Aug 11 00:00:54 Joes-MacBook-Pro.local sandboxd[316] ([314]): WebProcess(314) deny iokit-open AppleGraphicsPolicyClient
    Aug 11 00:00:54 Joes-MacBook-Pro kernel[0]: Sandbox: sandboxd(316) deny mach-lookup com.apple.coresymbolicationd
    Aug 11 00:01:03 Joes-MacBook-Pro.local WebProcess[314]: objc[314]: Object 0x7fa0fa41c910 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    Aug 11 00:01:33 --- last message repeated 1 time ---
    Aug 11 00:02:51 Joes-MacBook-Pro kernel[0]: MacAuthEvent en1   Auth result for: 00:12:0e:57:17:42  MAC AUTH succeeded
    Aug 11 00:02:51 Joes-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Aug 11 00:02:51 Joes-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
    Aug 11 00:02:51 Joes-MacBook-Pro kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 00:12:0e:57:17:42
    Aug 11 00:02:51 Joes-MacBook-Pro kernel[0]: en1: BSSID changed to 00:12:0e:57:17:42
    Aug 11 00:02:51 Joes-MacBook-Pro kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Aug 11 00:07:07 Joes-MacBook-Pro.local CVMServer[75]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Aug 11 00:07:37 --- last message repeated 1 time ---
    Aug 11 00:11:20 Joes-MacBook-Pro.local SubmitDiagInfo[331]: Launched to submit Diagnostics and Usage
    Aug 11 00:11:20 Joes-MacBook-Pro.local SubmitDiagInfo[331]: Cleaning up expired diagnostic messages database at path: /var/log/DiagnosticMessages/2013.07.12.asl
    Aug 11 00:20:06 Joes-MacBook-Pro.local Safari[228]: CGContextClipToRect: invalid context 0x0

  • Can someone explain what this is?:S

    Hey guys,
    Again sorry to be so vague in the question but i have no idea what i am dealing with here.
    http://quicktake.morningstar.com/stocknet/secdocuments.aspx?symbol=ko
    On this site page i wanted the data you will see underneath the data i wanted to curl and obtain through html parsing.
    The data is: the effective dates  when the coca cola english annual reports were released, also the ones from 1 to 5.
    However i couldnt find the dates anywhere in the html of the page. I would like to know if there is a way to get this data?:)
    Thank you so much in advance and ask me if there is anything i need to clarify further:)

    The problem is that the page <http://quicktake.morningstar.com/stocknet/secdocuments.aspx?symbol=ko> builds the layout by pulling in data from additional http://... pages.
    That is to say, the page you see is dynamically built from dozens of other pages.  The information you want is on one (or more) of those other pages.

  • RT - could someone explain why this happens

    Hi,
    If I'm editing hdv and it begins to stutter during playback. Why when I change the RT setting from safe to unlimited and back to safe again, does the timeline now play without the stutter?
    Thanks,
    Matt
    Yoga Maya Films - www.yogamayafilms.com
    The Film Producer's Podcast - www.yogamayafilms.com/podcast

    Hey Max,
    Thanks again. And sorry to continue a conversation that was solved, but...
    With ProRes being a much higher bit rate than HDV I would've expected it to be even worse. Are you transcoding to some other format to edit HDV?
    If that is making the problem go away, then that's cool, but would that mean that the HDV problem is in the processing power?
    The strange thing is that when my system starts to stutter and not be able to cope - even with things like Motion, but also with HDV in the timline - my CPU is only sitting at around 60%, there's lots of free RAM, but still the timeline stutters with one track of HDV often.
    Anyway, if I'm boring you don't worry, but this is the main issue I'm having on my system and I'd love to understand it better.
    Could it be that the RAM in the graphics card is maxed out, or some cache in the graphics card - and if so, how can you empty that?
    Just some thoughts.
    Cool,
    Matt

  • Can someone explain what this means or what I need to do? TIA!

    Anonymous UUID:                    89A78C43-A448-47CA-90CC-BD4196AB4306
    Thu Oct 23 17:50:32 2014
    panic(cpu 1 caller 0xffffff7f80966007): NVRM[0/1:0:0]: Read Error 0x0061021c: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff809f99a000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 1), Frame : Return Address
    0xffffff807c95b1e0 : 0xffffff8000220792
    0xffffff807c95b260 : 0xffffff7f80966007
    0xffffff807c95b2f0 : 0xffffff7f80a5eb83
    0xffffff807c95b350 : 0xffffff7f80c708db
    0xffffff807c95b3e0 : 0xffffff7f80940321
    0xffffff807c95b510 : 0xffffff7f80942ae6
    0xffffff807c95b5a0 : 0xffffff7f80942baf
    0xffffff807c95b5e0 : 0xffffff7f80942c0c
    0xffffff807c95b680 : 0xffffff7f8096b4d3
    0xffffff807c95b870 : 0xffffff7f8096cf6e
    0xffffff807c95b950 : 0xffffff7f81e9064e
    0xffffff807c95b990 : 0xffffff7f81ea73d8
    0xffffff807c95b9b0 : 0xffffff7f81ec53a2
    0xffffff807c95b9f0 : 0xffffff7f81ec5643
    0xffffff807c95ba30 : 0xffffff7f81eab329
    0xffffff807c95ba80 : 0xffffff7f81e5f70b
    0xffffff807c95bb10 : 0xffffff7f81e5da09
    0xffffff807c95bb40 : 0xffffff7f81e64221
    0xffffff807c95bb70 : 0xffffff800065645d
    0xffffff807c95bbe0 : 0xffffff80006567fc
    0xffffff807c95bc40 : 0xffffff8000656fbb
    0xffffff807c95bd80 : 0xffffff80002a3f08
    0xffffff807c95be80 : 0xffffff8000223096
    0xffffff807c95beb0 : 0xffffff80002148a9
    0xffffff807c95bf10 : 0xffffff800021bbd8
    0xffffff807c95bf70 : 0xffffff80002aef10
    0xffffff807c95bfb0 : 0xffffff80002daec3
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.3.2)[97284661-2629-379E-B86B-D388618E8C30]@0xffffff7f808 ff000->0xffffff7f80bfafff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f808ed000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f808b4000
             com.apple.nvidia.nv50hal(7.3.2)[38ACBB3D-4E3C-3883-9A4B-67F15592905F]@0xffffff7 f80bfb000->0xffffff7f80f1dfff
                dependency: com.apple.NVDAResman(7.3.2)[97284661-2629-379E-B86B-D388618E8C30]@0xffffff7f808 ff000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
             com.apple.GeForce(7.3.2)[7E1D7726-416F-3716-ACCB-E1E276E35002]@0xffffff7f81e470 00->0xffffff7f81f09fff
                dependency: com.apple.NVDAResman(7.3.2)[97284661-2629-379E-B86B-D388618E8C30]@0xffffff7f808 ff000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f808ed000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f808b4000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 15757627021667
    last loaded kext at 12566416668797: com.apple.driver.AppleUSBCDC 4.1.22 (addr 0xffffff7f80795000, size 16384)
    last unloaded kext at 12689206518832: com.apple.driver.AppleUSBCDC 4.1.22 (addr 0xffffff7f80795000, size 12288)
    loaded kexts:
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleMikeyHIDDriver 122
    com.apple.driver.AppleHDA 2.2.5a5
    com.apple.driver.AppleUpstreamUserClient 3.5.9
    com.apple.driver.AudioAUUC 1.59
    com.apple.driver.AGPM 100.12.75
    com.apple.driver.AppleMikeyDriver 2.2.5a5
    com.apple.GeForce 7.3.2
    com.apple.driver.AppleIntelHDGraphics 7.3.2
    com.apple.driver.AppleIntelHDGraphicsFB 7.3.2
    com.apple.driver.SMCMotionSensor 3.0.2d6
    com.apple.driver.AppleSMCLMU 2.0.1d2
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager 4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AudioIPCDriver 1.2.3
    com.apple.driver.ApplePolicyControl 3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin 5.0.0d8
    com.apple.driver.AppleLPC 1.6.0
    com.apple.driver.AppleMuxControl 3.1.33
    com.apple.driver.AppleMCCSControl 1.0.33
    com.apple.driver.AppleSMCPDRC 5.0.0d8
    com.apple.driver.AppleUSBTCButtons 227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController 4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard 227.6
    com.apple.driver.AppleIRController 312
    com.apple.driver.AppleUSBCardReader 3.0.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 33
    com.apple.iokit.SCSITaskUserClient 3.2.1
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCISerialATAPI 2.0.3
    com.apple.iokit.IOAHCIBlockStorage 2.1.0
    com.apple.driver.AppleFWOHCI 4.9.0
    com.apple.driver.AppleUSBHub 5.1.0
    com.apple.driver.AirPort.Brcm4331 561.7.22
    com.apple.driver.AppleEFINVRAM 1.6.1
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleAHCIPort 2.3.1
    com.apple.iokit.AppleBCM5701Ethernet 3.2.4b8
    com.apple.driver.AppleUSBEHCI 5.1.0
    com.apple.driver.AppleACPIButtons 1.5
    com.apple.driver.AppleRTC 1.5
    com.apple.driver.AppleHPET 1.7
    com.apple.driver.AppleSMBIOS 1.9
    com.apple.driver.AppleACPIEC 1.5
    com.apple.driver.AppleAPIC 1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient 195.0.0
    com.apple.nke.applicationfirewall 3.2.30
    com.apple.security.quarantine 1.4
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 195.0.0
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.2.5a5
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.nvidia.nv50hal 7.3.2
    com.apple.NVDAResman 7.3.2
    com.apple.driver.AppleHDAController 2.2.5a5
    com.apple.iokit.IOHDAFamily 2.2.5a5
    com.apple.driver.AppleSMBusPCI 1.0.10d0
    com.apple.iokit.IOSurface 80.0.2
    com.apple.iokit.IOSerialFamily 10.0.5
    com.apple.iokit.IOAudioFamily 1.8.6fc18
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleSMC 3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy 5.0.0d8
    com.apple.driver.AppleGraphicsControl 3.1.33
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.3.4
    com.apple.driver.AppleSMBusController 1.0.10d0
    com.apple.iokit.IOGraphicsFamily 2.3.4
    com.apple.driver.IOPlatformPluginFamily 5.1.1d6
    com.apple.driver.AppleUSBBluetoothHCIController 4.0.8f17
    com.apple.iokit.IOBluetoothFamily 4.0.8f17
    com.apple.driver.AppleUSBMultitouch 230.5
    com.apple.iokit.IOUSBHIDDriver 5.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.2.1
    com.apple.iokit.IOUSBMassStorageClass 3.0.3
    com.apple.driver.AppleUSBMergeNub 5.1.0
    com.apple.driver.AppleUSBComposite 5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.2.1
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.2.1
    com.apple.iokit.IOFireWireFamily 4.4.8
    com.apple.iokit.IOUSBUserClient 5.0.0
    com.apple.iokit.IO80211Family 420.3
    com.apple.iokit.IOAHCIFamily 2.0.8
    com.apple.iokit.IOEthernetAVBController 1.0.1b1
    com.apple.iokit.IONetworkingFamily 2.1
    com.apple.driver.AppleEFIRuntime 1.6.1
    com.apple.iokit.IOHIDFamily 1.7.1
    com.apple.iokit.IOUSBFamily 5.1.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 177.11
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.DiskImages 331.7
    com.apple.iokit.IOStorageFamily 1.7.2
    com.apple.driver.AppleKeyStore 28.18
    com.apple.driver.AppleACPIPlatform 1.5
    com.apple.iokit.IOPCIFamily 2.7
    com.apple.iokit.IOACPIFamily 1.4
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f17
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x384A53463235363634485A2D314731443120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x384A53463235363634485A2D314731443120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: My Book 111A, 0x1058  (Western Digital Technologies, Inc.), 0x111a, 0xfd130000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3

    You've had a kernel panic. OS X- About kernel panics. You have a model that has certain problems with the discreet GPU:
    The problem is likely due to the discreet GPU failing. Download gfxCardStatus 2.3 and use it to disable the GPU. This is a temporary workaround until you get your motherboard replaced.

  • Could someone explain what a smart object is and what they are used for?

    Keep seeing them mentioned, but no idea what they are or what the purpose is..

    http://help.adobe.com/en_US/photoshop/cs/using/WS41A5B796-6846-4e95-8459-95243441E126.html

  • Can Someone Explain what each of These Entities Mean?

    -T_PARAMETER
    Thank-you.

    Where are you seeing this? In debugger?
    This.....
    Looks like an object reference,  at least the first part anyway.  You are seeing this in debugger, right?
    Regards,
    Rich Heilman

  • Could someone explain why mds is using so much CPU?

    Could someone explain what mds is doing if my Mac has been indexed (don't see activity in Spotlight menu bar icon) & I haven't recently added a lot of files?
    I noticed my Mac was slowing down for a while so I looked in Activity Monitor & it says mds is running at 60% CPU. Isn't this something to do with Spotlight indexing?

    If you recently upgraded the OS or installed an application that includes a metadata parser for spotlight (such software generally comes in the form of a package instead of a single icon), it will force spotlight to reindex. Also, restoring from a backup does the same thing.
    Also, if you used mdutil to disable spotlight indexing on the volume and then reenable it, it will force a reindexing.

Maybe you are looking for

  • File Receiver Adapter - Writing Attachments

    Hello Folks, i received a SOAP Message with some attachments. Now i want to write these files into a file system. No i have seen, that the file receiver adapter has no support for attachments. is there any solution for that? Thanks for answers. Best

  • CS5 not updating LR3 Catalog properly on return

    Hi,  I'm going crazy with what looks like a bug in the SW - but may be operator error.  Starting in LR3 Grid view that is filtered on a keyword, I select a JPG.   I want to create a PSD copy that has a text layer and have the PSD staked on top of the

  • Transferring video from my pc to i touch 2nd gen

    I'm running vista I have some home movies that were transferred to DVD,which are now on my laptop.How do I get them on my I touch??????????

  • How can I tell what version of Firefox I have?

    How to I tell what version of firefox I have because its been a while since i have been on ?

  • Odd behaviour in Graphics2D.drawImage - infinite loop?

    Hi, I have the following code inside an overriden paintComponent (JPanel): g2.drawImage(fc.getImage(),(int)fc.getSignificantPoint().getX(),                                 (int)fc.getSignificantPoint().getY(), vioPanel);fc is just an object that is a