Get complete URL

How would I get the complete URL of my page, including all the data after the '?' ?
I've tried request.getRequestURL, but it only returns the main URL. By this I mean, if the complete URL was
http://forum.java.sun.com/post!default.jspa?forumID=45getRequestURL only returns
http://forum.java.sun.com/post!default.jspa Thanks!

Check out the other methods on the request class.
The method getQueryString() will get the rest of the URL you are missing.

Similar Messages

  • Unabel to get complete URL in PDF with Acrobat 7.0

    Hi
    I am working with Indesign CS2, Now a days i am facing one comic problem. My PDF file with acrobat professional 7.0, Unable to handle complete URL which is having "period or under score" in between.
    For Example [email protected]
    In PDF file that will appear [email protected]

    Hi Bob
    Sorry for inconvenience.
    Acrobat automatically generate the hyperlink from URL but Acrobat 7.0 unable
    to generate complete link for URL, Incase inbetween of URL there is any
    "period or underscore" present. For EXP [email protected] this URL
    has an indesign file after created the PDF and open with Acrobat 7.0 this
    will be shown [email protected]
    Is there any way to overcome this problem with Acrobat 7.0.
    However Acrobat 8.0 has this compatibility.

  • Not able to get the complete URL in mail content

    Hi All,
    I want to give the below link in mail which is sent from workflow, so on click of it, the user will be able to open the particular opportunity directly.
    https://<sys_host>%3Fcrm-object-type%3DBT111_OPPT%26crm-object-action%3DB%26crm-object-keyname%3DGUID%26crm-object-value%3DXXXXXXXXXXXX
    XXXXX here is GUID of the Opportunity of 32 character.
    For this, I have created a attribute of type BAPITGB-LINE. When inserting this expression into the mail activity of the WF, I have chosen the data to be exported as "All lines as cont. text".
    In this attribute, when I concatenate the values and the guid, I get only part of the link as below which is 133 characters.
    https://<sys_host>%3fcrm-object-type%3dbt111_oppt%26crm-object-action%3db%26crm-object-keyname%3dguid%26cr
    When I try to append it in a internal table of type BAPITGB, I am getting the complete URL but with a space between every line in the internal table as below.
    https://<sys_host>%3Fcrm-object-type%3DBT111_OPPT[SPACE]%26crm-object-action%3DB[SPACE]
    %26crm-object-keyname%3DGUID[SPACE]%26crm-object-value%3D
    DFD60A8AD0E53DF1918F0050569F0324
    Please let me know, how to avoid this space in append statements. Also, the concatenate is taking only 132 characters, after which it cuts the URL, leaving it incomplete.Kindly correct me if I was wrong somewhere.
    Thanks,
    Ramya
    Edited by: Gali Kling Schneider on Jul 11, 2011 9:47 AM

    Hi Sanjay,
    As suggested, I have split the URL into 3 links in WF container having the initial values as below.
    Link1 -> <sys_host>.%3Fcrm-object-type%3DBT111_OPPT
    Link2 -> %26crm-object-action%3DB %26crm-object-keyname%3DGUID
    Link3 -> %26crm-object-value%3D
    In the mail activity, I have given the link as: &LINK1&&LINK2&&LINK3&&GUID&
    &GUID&-> GUID of the opportunity.
    When I tested this in log-> List with technical details-> mail, it had the correct value without space as below.
    https://<sys_host>.%3Fcrm-object
    -type%3DBT111_OPPT%26crm-object-action%3DB
    %26crm-object-keyname%3DGUID%26crm-object-value%3DDFD60A8AD0E53DF1918F00505
    69F0324
    But in SOST, when I checked for the link it is having spaces as below:
    https://<sys_host>%20%3Fcrm-object-type%3DBT111_OPPT%20%26crm-object-action%3DB%26crm-object-keyname%3DGUID%20%26crm-object-value%3D%20DFD60A8AD0E53DF1918F0050569F0324
    Kindly advice.
    Thanks,
    Ramya
    Edited by: Gali Kling Schneider on Jul 11, 2011 9:48 AM

  • How to get the specified serarch term from the complete url? - Help

    Hello,
    I have a table in which some columns. One of the column is storing the complete url for the search given by the user.
    For Example:
    1.
    I give search like "oracle" on the Google, the column will store the complete url as
    "http://www.google.com/search?hl=en&q=oracle".
    I want the search word "oracle" to be returned from the column.
    2.
    I give search like "new + features + in + oracle + 10g", the column will store the url as
    "http://www.google.com/search?hl=en&lr=&q=new+%2B+features+%2B+in+%2B+oracle+%2B+10g"
    I want "new + features + in + oracle + 10g" search word to returned from the column.
    Can anyone tell me how to achieve this task? I have tried for a long time also I tried the sys.utl_url.unescape() function, but could not got the desired result.
    Please help, its really urgent!!!
    Thanks in advance.

    Hi,
    you can have a look into this code:SET ESCAPE ON
    DECLARE
            ref1 VARCHAR2(1000 CHAR) := 'http://www.google.com/search?hl=en\&q=oracle';
            ref2 VARCHAR2(1000 CHAR) := 'http://www.google.com/search?hl=en\&lr=\&q=new+%2B+features+%2B+in+%2B+oracle+%2B+10g';
            FUNCTION hextodec( h IN VARCHAR ) RETURN NUMBER
            AS
                    h2 VARCHAR2( 150 );
                    i NUMBER( 10 );
                    j NUMBER( 2 );
                    d NUMBER;
            BEGIN
                    h2 := LTRIM( h, '0' );
                    d := 0;
                    FOR i IN 1 .. LENGTH( h2 )
                    LOOP
                            SELECT DECODE( SUBSTR( h2, i, 1 )
                                    , '0', 0, '1', 1, '2', 2, '3', 3, '4', 4, '5', 5
                                    , '6', 6, '7', 7, '8', 8, '9', 9, 'A', 10
                                    , 'B', 11, 'C', 12, 'D', 13, 'E', 14, 'F', 15 )
                                    INTO j
                                    FROM DUAL;
                            d := 16 * d + j;
                    END LOOP;
                    RETURN d;
            END hextodec;
            FUNCTION strip(samplevalue IN VARCHAR2) RETURN VARCHAR2
            AS
                    finalvalue VARCHAR2(1000 CHAR) := samplevalue;
                    decimalvalue NUMBER(2);
                    pospct NUMBER;
                    extract VARCHAR2(2 CHAR);
            BEGIN
                    finalvalue := SUBSTR(finalvalue ,INSTR(finalvalue ,'\&q='));
                    finalvalue := SUBSTR(finalvalue ,4);
                    if (INSTR(finalvalue ,'\&')-1 > 0) then
                            finalvalue := SUBSTR(finalvalue ,1,INSTR(finalvalue ,'\&')-1);
                    end if;
                    finalvalue := REPLACE(finalvalue ,'+',' ');
                    LOOP
                            pospct := INSTR(finalvalue ,'%');
                            EXIT WHEN pospct = 0;
                            extract := SUBSTR(finalvalue ,pospct+1,2);
                            finalvalue  := SUBSTR(finalvalue ,1,pospct-1) || chr(hextodec(extract)) || SUBSTR(finalvalue ,pospct+3);
                    END LOOP;
                    RETURN finalvalue;
            END;
    BEGIN
            DBMS_OUTPUT.PUT_LINE( hextodec('2B'));
            DBMS_OUTPUT.PUT_LINE(strip(ref1));
            DBMS_OUTPUT.PUT_LINE(strip(ref2));
    END;
    /Regards,
    Yoann.

  • "Get Started" URL is rejected and XE database does not appear to start

    Hi,
    Brand new to Oracle, so I apologize for my ignorance. Have spent 3 days trying to launch the Get Started URL that Oracle puts on my desktop, or connect with Rapid SQL. I've spent all day today trolling these forums and am unable to resolve this issue.
    OS: Windows 7 Enterprise SP1
    System: i7 @ 2.7GHz, 8GB RAM, 64-bit
    DB: OracleXE 11g
    Error message from Chrome when I try to connect to http://127.0.0.1:8080/apex/f?p=4950: Error 102 (net::ERR_CONNECTION_REFUSED): The server refused the connection.
    Here is the result of my TNS Ping Utility for 32-bit Windows: Version 11.2.0.2.0 - Production on 16-NOV-2
    012 14:42:28
    Used parameter files:
    C:\oraclexe\app\oracle\product\11.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = CONNECTL
    AP28.awi.state.fl.us)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVIC
    E_NAME = XE)))
    OK (0 msec)
    Here is the result of my LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
    ction
    Start Date 16-NOV-2012 13:41:57
    Uptime 0 days 1 hr. 2 min. 50 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\11.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\diag\tnslsnr\CONNECTLAP28\liste
    ner\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=CONNECTLAP28.awi.state.fl.us)(PORT=1
    521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Here is the result of my sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 16 14:47:53 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    ERROR:
    ORA-28056: Writing audit records to Windows Event Log failed
    OSD-00512: Message 512 not found; product=RDBMS; facility=SOSD
    O/S-Error: (OS 1722) The RPC server is unavailable.
    ORA-28056: Writing audit records to Windows Event Log failed
    OSD-00512: Message 512 not found; product=RDBMS; facility=SOSD
    O/S-Error: (OS 1722) The RPC server is unavailable.
    Enter user-name: system
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Process ID: 0
    Session ID: 0 Serial number: 0
    I have uninstalled and reinstalled the 64-bit version, the 32-bit version, repaired, stopped and started services, changed KEY_XE.reg, and the properties of the Get Started URL. No luck so far. Please let me know what I can do.
    Thanks in advance.

    Thank you for getting back to me so quickly!
    When I signed in to Event Viewer, I got an error message that my event services weren't running, so I downloaded this fix from Microsoft: http://support.microsoft.com/kb/2478117
    That started my Event Services and allowed me to sign into Event Viewer and clear my logs. They are all clear now.
    Then I repaired my version of 11G and rebooted, but am still unable to connect to the database or the Get Started URL.
    Here are my statuses:
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
    ction
    Start Date 16-NOV-2012 16:31:35
    Uptime 0 days 0 hr. 2 min. 30 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\11.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\diag\tnslsnr\CONNECTLAP28\liste
    ner\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=CONNECTLAP28.awi.state.fl.us)(PORT=1
    521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL> exit
    sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 16 16:34:42 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL>
    At least it's a different error message now! Any ideas?
    Edited by: 971714 on Nov 16, 2012 1:40 PM
    Edited by: 971714 on Nov 16, 2012 1:41 PM
    Edited by: 971714 on Nov 16, 2012 1:41 PM

  • Can't add URLs to "Get Specified URLs"

    Hey. I've been making a 57-step workflow to get, download and rename each of my Google Calendars. This was working fine, but it hit some kind of snag at step 22. On reloading the workflow, I find that Automator has DELETED the content of all of my "Get specified URLs" actions. That means I have to add those URLs about 13 times again!
    Except I can't. When I click the + button, nothing happens. I cannot re-add the URLs at all.
    What a complete waste of my time. Any ideas please?

    Bump

  • Complete URL of the page

    Hi All,
    Does any one know how can I get the complete URL of the page using inbuilt API's.
    For example, If I am on page:
    http://localhost:7501/sampleportal/application?namespace=security&origin=portal.jsp&pageId=page1
    Is there any way I can get this using API's.
    request.getRequestURI() doesn't solve the purpose.
    Any ideas?
    cheers
    Mark

    Mark,
    request.getRequestURI() gives you everything up to the query string. So
    append to this reqeust.getQueryString().
    russ
    "Mark" <[email protected]> wrote in message
    news:3ef3125e$[email protected]..
    >
    Hi All,
    Does any one know how can I get the complete URL of the page using inbuiltAPI's.
    >
    For example, If I am on page:
    http://localhost:7501/sampleportal/application?namespace=security&origin=portal.jsp&pageId=page1
    >
    >
    Is there any way I can get this using API's.
    request.getRequestURI() doesn't solve the purpose.
    Any ideas?
    cheers
    Mark

  • Complete URL of an iView Component !!

    Environment : EP 6.0 Sp2
    Following is the complete url of an iview ...
    http://<servername>:<port>/irj/servlet/prt/portal/prtroot/<componentName>.default
    I am using the following code to get the url ...
    IPortalUrlGenerator portalGen = null;
    IUrlGeneratorService urlGen = (IUrlGeneratorService)componentRequest.getService(IUrlGeneratorService.KEY);
    ISpecializedUrlGenerator specUrlGen2 = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
    if (specUrlGen2 instanceof IPortalUrlGenerator)
       portalGen = (IPortalUrlGenerator) specUrlGen2;     
    String strUrl = new String();          
    if (portalGen != null)
       strUrl = portalGen.generatePortalComponentUrl(componentRequest, "ComponentName.default");
    with the above code, the url I am getting ( in strUrl vaiable) is ...
    "/irj/servlet/prt/portal/prtroot/<componentName>.default"
    How can I get the url part "<servername>:<port>" so that I append it to the above string to get the complete url of the portal component or is there any other way to get a complete URL of a component ??
    I appreciate your help !!

    Use the HttpServletRequest object to get the bits you need:
    String strUrl = "/blah/blah";
    HttpServletRequest srq = componentRequest.getServletRequest();
    String url = srq.getScheme()+"://" +
         srq.getServerName() + ":" +
         srq.getServerPort() ;
    response.write (url + strUrl);

  • Get the URL : servername

    Hello,
    I am searching how obtain the exact name of servername in the url execute by my user.
    example : http://myserver.mydomain.com:8000/sap(bD2nciZjPTAzMB==)/public/bsp/sap/system/login.htm
    I want obtain in a field : [myserver.mydomain.com].
    on a client windows, I have addon in the host file one entry like that :
    10.10.0.1 myserver2.mydomain.com
    I execute this code :
    cl_bsp_runtime=>construct_bsp_url(
      exporting in_protocol    = 'https'
        in_application = 'system'
       importing out_protocol   = l_protocol
        out_host       = l_host
        out_port       = l_port ).
    I call the page :
    http://myserver2.mydomain.com:8000/sap(bD2nciZjPTAzMB==)/public/bsp/sap/system/login.htm
    But the field "l_host" give me myserver.mydomain.com and not myserver2.mydomain.com
    It  is the value "icm/host_name_full" return.
    Can you help me ?
    Thanks.
    Edited by: Rodolphe ATL on Apr 21, 2009 4:53 PM

    Hi,
    Try this [Link|How to get the the complete URL,]
    and also [Link|Re: URL of an BSP application]
    Hope this helps.
    Regards,
    Abhinav

  • Get browser url from 11g form?

    Is there any function to get the current url of the browser that the 11g form applet is running in?
    Or at least the server:port part?
    Thanks

    In version 11 you can use javascript to extract the browser url. For example:
    Declare
         JS_in      varchar2(32767);
         rtn     varchar2(1024);
    Begin
         -- JS_in is the javascript funtion you want to call.
         JS_in := 'location.href';
         rtn := WEB.JAVASCRIPT_EVAL_FUNCTION (JS_in);
         -- "rtn" should contain the complete URL as seen in the browser address bar.
         -- Do something with rtn.       
    End;

  • Complete URL in unstructured UI Template?

    Hi,
    Is it possible to retrieve complete url in unstructured UI Template in Oracle Portal 10.1.2?
    I would like to pass it on as a parameter to pl/sql:
    <ORACLE>
    declare
       v_complete_url varchar2(4000);
    begin
       v_complete_url := <some magic code to get url here>;
       my_package.my_procedure(v_complete_url);
    end;
    </ORACLE>I have searched the forums, but have been unable to find a solution to this.
    Can anyone help?
    Regards,
    Haavard

    Update:
    Unfortunately the code above did not reveal the complete url, for some reason the parameters were left out (PPE interfering?)
    The solution was to use owa_util to get all the parameters, unfortunately this method does not guarantee the order of the parameters, thus making it difficult to reconstruct the complete url. Anyway, I have worked around the problem, and are now using the following code (yes, I know i doesn't actually DO anything yet :-)):
    <ORACLE>
       declare
          param_string varchar2(2000);
          l_names owa.vc_arr;
          l_values owa.vc_arr;
       begin
          portal.wwpro_api_parameters.retrieve (l_names, l_values);
          htp.p('<!--');
          htp.p('host:    '||owa_util.get_cgi_env('HTTP_HOST'));
          htp.p('script:  '||owa_util.get_cgi_env('SCRIPT_NAME'));
          htp.p('path:    '||owa_util.get_cgi_env('PATH_INFO'));
          htp.p('query:   '||OWA_UTIL.GET_CGI_ENV('QUERY_STRING'));
          for i in 1..l_names.count loop
             htp.p('p: '||l_names(i) || '=' || l_values(i));
          end loop;
          htp.p('-->');
       exception
          when OTHERS then
            htp.p('<!-- unstructured UI template code blew up! -->');
       end;
    </ORACLE>Regards,
    Haavard

  • 10.5.6: "Unable to load Info.plist exceptions (can't get exceptions URL)"

    Hi, all. I just upgraded my iMac G5 to 10.5.6 using the software updater. Now when I'm working with a terminal window open, I get messages like this:
    Computer:~ mine$
    Broadcast Message from [email protected]
    (no tty) at 22:34 EDT...
    Mar 30 22:34:29 Computer /System/Library/Frameworks/PubSub.framework/Versions/A/Resources/PubSubAgent.ap p/Contents/MacOS/PubSubAgent[1563]: Unable to load Info.plist exceptions (can't get exceptions URL)
    Broadcast Message from [email protected]
    (no tty) at 22:34 EDT...
    Mar 30 22:34:31 Computer /Applications/iPhoto.app/Contents/MacOS/iPhoto[1562]: Unable to load Info.plist exceptions (can't get exceptions URL)
    I am completely at sea. Can anyone please help? Thanks.

    Hello, I have the same problem!
    The same broadcast messages: Unable to load Info.plist exceptions (can't get exceptions URL)
    also I can't install nor 10.5.7 update, nor combo update. I receive the same Install Failed error message. I tried archive and install from original system DVD. Allways the same error message:
    Install Failed
    The source media you are installing from is damaged. Try installing from a different copy of the source media or contact the manufacturer for a replacement.
    Did you find any solution?
    Zoli

  • Not able to get complete data in Heading of the smarform

    Dear Friends,
                    I am devloping a smartform for my requiremnt, i am not able to get complete data jin Header Window ( i.e the Title Name of the company is not getting fully) when i execute the Smartform ,
    Iam able to see only the last few words of the Text. Please help me what i should do in this regard
    regards
    madhuri

    Hi
    Also, check where the window is placed in the Form Painter...may be it is not on the page properly..and also check the size of the window..
    Further, check the paragraph format that is used.
    Regards,
    Vishwa.
    Edited by: Vishwa Sri Hari on Oct 15, 2008 1:21 PM

  • Getting around URL aliasing or forwarding in Automator?

    Hi,
    I am new to automator but have a simple task that seems not straightforward to implement. I have a page on Google Sites (unfortunately not open to the public) and I upload and download ruby code to it. I'd like to automate downloading all the files that are have certain file extension and are linked from the main page. Those urls, when I copy them as links from the Safari browser, have a format like;
    http://sites.google.com/a/some_school.edu/my-cool-proj/Home/builder.c?attredirec ts=0
    My workflow is four safari actions;
    Get Specified URLs (the url is the top page of the google site for the project)
    Get Link URLs from Webpages
    Filter URLs
    Download URLs
    What I notice when I download those files manually from the Google Site page, using Safari, is that there is a second url that the link I started downloading gets forwarded to, apparently, and I can't seem to capture that manually to see what it is (it flashes across the browser's address bar and then dissappears pretty quickly.)
    Is there some simple way to follow these forwarded URLs, that is relatively foolproof, and that could be automated? I could take it on faith that the implementation of those forwarded links is not going to change, though that seems iffy. I could use or build some other site to post and pull code from, but that seems risky, and honestly the Automator script wouldn't save me more time than I would lose in such an effort.
    Any suggestions would be appreciated -
    C

    Hello Prashanth,
    It may not be as simple as adding an http header through the Oracle HTTP Server (OHS) in the stack. The web page is returned by both the Parallel Page Engine in OC4J_Portal and the Web Cache, not by the OHS. Since OHS doesn't play a role in the response, it is not possible to tag the headers.
    You could consider to install a reverse proxy server (e.g. Apache 2) in front of your web cache and add the header tag in this configuration. That should work.
    Thanks,
    EJ

  • How to get the URL of the request.

    I am trying to get the URL from where the request is coming to the servlet. If http://www.xx.com/ calls my servlet i want to know that the request is coming from http://www.xx.com/ URL. If i use request.getRequestURL() which is displaying my servlet URL. Please help me which is very urgent.

    You actually want the referrer? You can obtain it from the request headers as follows:String referrer = request.getHeader("referer"); // Yes, with the legendaric misspelling in there.Having said that, be aware that the client has full control over what he sends with the request headers. So the client can change/spoof/remove the referrer entry to his taste anytime. Your code should not rely that much on it, it should rather be used for statistics only.

Maybe you are looking for

  • Remote client copy fails.

    Remote client copy fails. The error message and info is given below. Help me to proceed. Client copy The client copy you started has terminated Client Copy could not start because of Repository differences Diagnosis The table definitions differ betwe

  • Design Problem: Object reference another object at different states

    Hi, This is a problem I came across today while developing a simple prototype. Imagine I have a class Boy which has a one-to-many relation with a class Dog. The class Boy has the following methods: getName(), setName(), getAge(), setAge(), getDogs().

  • R/3 Transactions inside the EP

    I need to display some R/3 transactions (some standard, some  custom) in the portal. Of course I can use ITS iViews for this, but our client doesn't want the transactions to look that much like SAP. A ITS iView makes the HTML look a lot like SAPGui w

  • Affordable 19" LCD monitor recom?

    HI, I wanted to add a 19" LCD screen to my newly purchased mac mini but the whole compatibility issue seems pretty complicated. I've seen D-sub and dvi-d connections and don't even know if they'll work with a mini. I've checked the site that was post

  • Error code 0x8002006B

    Will not burn DL DVD or DVD, tried apple DVD and Memorex DL DVD. Intermittent write and read all media. Have run all Disk Utility. Trying to burn .mov file from FCP.