How can I let the web to track my location?

Just wanted to be tracked..

Here you can how to turn on or off the do not track feature:
*[[How to turn on the Do-not-track feature on Firefox OS]]

Similar Messages

  • How can I invoke the web service manually in websphere?

    Hi
    I've developed a webservice application using Rational Application Developer (RAD). I deployed it in a websphere 6.1 application server, using the administration console to import the war file that I had previously exported with RAD.
    My webservice application is listed in the "Enterprise Applications" section of websphere's administration console as started.
    My question is: how can I invoke the web service manually? Is there some kind of websphere generated webpage that I can use to call it manually?
    I tried http://<server:port>/<contextroot> and http://<server:port>/<contextroot>/<servicename> in a webbrowser, but it doesn't work. Is it possible to invoke the web service manually, or do I need to develop a client?
    Thanks in advance
    Pedro

    Hi Bo Wang,
        Go to the Portal -> System Administration -> System Configuration
                               -> Portal Content folder
                               -> Open Visual Composer folder
        There you can see the Webservice Systems you have created through VC.
    You can delete the unwanted system here.
    Regards,
    Shemim

  • How can i start the web analyzer to look the report

    HAi
    I created a query in Bex. And then i created the 'Web templates' for this query in WAD.
    Now how can i start the Web Analyzer to look this query in the web. I want to see only through web analyzer.
    So pls tell me how can i start the web analyzer. i mean step-by step method for opening the web analyzer and to look the report.
    thnaks
    kumar

    Hi Ravi.
    The web analyzer is not used to open templates created in the WAD. If you want to open the query in the web analyzer you should open it by calling the 0ANALYZER template ID. I.e. http://server.domain.com:port/sap/bw/BEx?cmd=&template_id=0ANALYZER&sap-language=EN
    Alternatively you can open the web template created in the WAD in the browser by clicking "Execute in the Browser..." or just enter the template ID in the URL provided above.
    Hope it helps (assign points if helpfull!).
    BR
    Stefan.

  • How can I obtain the web site template of the ''Imvelo Safari Lodges'' that appears on the Site of the day web page?

    How can I obtain the web site template of the ''Imvelo Safari Lodges'' that appears on the Site of the day web page?

    Hi Ginette,
    The site that you are referring to does not appear to be a template that you can get your hands on, however, I will suggest that you contact the owner via their contact us page and see what can be done.
    - Abhishek Maurya

  • How can we let the program run in backgroud automatically?

    normally,we need to find peak off time run big program
    that read pooled table and slowly.
    How can we let the program run in backgroud automatically?
    BTW:before that pop a window just give runner a notice.

    Here is an example, try this one.
    REPORT ztest.
    PARAMETERS: p_vbeln LIKE vbak-vbeln,
                p_bkrun NO-DISPLAY.
    DATA: ls_vbak LIKE vbak.
    DATA: v_answer,
          v_jobcount LIKE tbtcjob-jobcount.
      IF p_bkrun IS INITIAL.
    *-- not background processing
        CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
             EXPORTING
                  textline1      = 'This may time out.'
                  textline2      = 'Do you want to run in background?'
                  titel          = 'Warning!!!'
                  cancel_display = space
             IMPORTING
                  answer         = v_answer.
        IF v_answer = 'J'.
    *-- run in the background
          CALL FUNCTION 'JOB_OPEN'
               EXPORTING
                    jobname          = 'ZTEST'
               IMPORTING
                    jobcount         = v_jobcount
               EXCEPTIONS
                    cant_create_job  = 1
                    invalid_job_data = 2
                    jobname_missing  = 3
                    OTHERS           = 4.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE 'E' NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            EXIT.
          ENDIF.
    *-- submit the program in the background
          SUBMIT ztest
            WITH p_bkrun = 'X'
            WITH p_vbeln = p_vbeln
            USER sy-uname
            VIA JOB 'ZTEST' NUMBER v_jobcount AND RETURN.
    *-- close the job
          CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    jobcount             = v_jobcount
                    jobname              = 'ZTEST'
                    strtimmed            = 'X'
               EXCEPTIONS
                    cant_start_immediate = 1
                    invalid_startdate    = 2
                    jobname_missing      = 3
                    job_close_failed     = 4
                    job_nosteps          = 5
                    job_notex            = 6
                    lock_failed          = 7
                    OTHERS               = 8.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE 'W' NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
          EXIT.
        ELSE.
          CLEAR v_answer.
        ENDIF.
      ENDIF.
      CHECK v_answer IS INITIAL.
      SELECT SINGLE * FROM vbak
                      INTO ls_vbak
                     WHERE vbeln = p_vbeln.
      IF sy-subrc <> 0.
        WRITE:/ 'Invalid Order Id.'.
      ENDIF.
    END-OF-SELECTION.
      CHECK v_answer IS INITIAL.
      IF p_bkrun IS INITIAL.
        WRITE:/ 'Here is the result running the program in foreground.'.
      ELSE.
        WRITE:/ 'Here is the result running the program in background.'.
      ENDIF.
      WRITE:/ ls_vbak-vbeln,
              ls_vbak-vkorg.

  • HT4972 How can I zoom the web page only vertically or horizontally ,i.e.,wThen I want to read the web page can I enlarge the page so that the font only increases size ?

    How can I zoom the web page only vertically or horizontally ,i.e.,wThen I want to read the web page can I enlarge the page so that the font only increases size ?

    You can't.  (Fonts increase in size like everything else, not in height alone).

  • How can we find the web from the url

    Hi Team,
    I just need inputs:
    I have URL's as below:
    https://sharepointwebapp.com/departments/service/Documents/test.docx
    https://sharepointwebapp.com/departments/course/Documents/test.pdf
    Here, test.docx is available in "service" subsite.
    test.pdf is available in "course" subsite.
    How can I get the current web based on the document in code.
    Please let me know.
    Sandeep
    Krishnasandeep

    Hi,
    Refer to the below table.
    SPSite Constructor
    OpenWeb Method
    Site Returned
    http://Server/Folder/File
    There is no parameter (OpenWebmethod overload)
    http://Server
    http://Server/Subsite1/Subsite2/Folder/File
    There is no parameter (OpenWebmethod overload)
    http://Server/Subsite1/Subsite2
    http://Server/Subsite1/Subsite2/Folder/File
    http://Server
    http://Server/Subsite1/Subsite2/Folder/File
    /Subsite1
    http://Server/Subsite1
    http://Server/Folder/File
    Subsite1/Subsite2
    http://Server/Subsite1/Subsite2
    http://Server/Folder/File
    /SiteCollection/Subsite3
    Error: There is no site named/SiteCollection/Subsite3
    http://Server/Folder/File
    /Subsite4
    Error: There is no site named /Subsite4
    http://Server/sites/SiteCollection/Subsite3/Folder/File
    No parameter (OpenWeb method overload)
    http://Server/sites/SiteCollection/Subsite3
    http://Server/sites/SiteCollection/Folder/File
    /sites/SiteCollection/Subsite3
    http://Server/sites/SiteCollection/Subsite3
    http://Server/sites/SiteCollection/Folder/File
    Subsite3
    http://Server/sites/SiteCollection/Subsite3
    http://Server/sites/SiteCollection/Folder/File
    Error: Invalid URL
    http://Server/sites/SiteCollection/Subsite3/Folder/File
    /sites/SiteCollection
    http://Server/sites/SiteCollection
    http://msdn.microsoft.com/en-us/library/ms474633.aspx

  • How can I pass the web template name dynamically to a container

    Hi Experts ,
    I have a container web item in 7.0
    I would like to pass the name of the web template to be displayed in that web item dynamically .
    how can I achieve the same .
    How can i change the visibility settings of a container using a javascript .
    Thanks in advance for your help .
    Regards
    Nikhil

    Hi Nikhil,
    When you say that you want to display the name of the template for the container item, I think you are talking about the tray caption for the item - is that correct? You can use a text item to access the web template name, but in the caption of the container item, you cannot specify other web items.
    What you can do it to use a group item in the template and embed your container layout in it. In the group item, you have an option of specifying a caption using another web item where you can reference this text item.

  • How can I get the web application's context root?

    I have a web application, which is defined in Tomcat's server.xml:
    <Context path="/cbes" docBase="e:\work\GM\code\CBESCurrency" debug="0"
    reloadable="true" crossContext="false"/>
    And I hava a servlet in this web application.
    How can I get the context root of the web application?
    in this example: reture should be "cbes" or "/cbes"
    how?
    thanks alot.

    getContextPath() in javax.servlet.http.HttpServletRequest

  • How can i install the web connector in the IWS for IAS SP3?

    i have installed the IAS 6.0 SP3 and IWS 6.0 on two different NT server. How do i install the web connector to the IWS. How can i access the IAS form the IWS. The IAS 6.0 SP3 Evaluation does not allow to install only the web connector componet. Pls advise

    Hi,
    Installing web server & app server on different machine and making them communicate is called "webless installation". Having web server & app server running on same system is called "webful installation".
    On a registered version, if you select CUSTOM INSTALL, then you would have a screen asking to install iDS and iAS. From the submenu of iAS, the web connector plugin has to be selected and this installation is done at the system where web server is running.
    But on your case, I believe the iAS SP3 evaluation has a restriction on that. Please feel free to raise any questions regarding this.
    Regards
    Raj

  • How can i use the web services

    i have a web service ,but what is need that can i use the web services?
    is only then oc4j,or anything?

    You need to write a client that will access the Web service and invoke it.
    You can write the client in Java for example - and JDeveloper provides wizards for this.
    There is a sample in the JDeveloper Reviewer guide here:
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/reviewer/reviewerguide.html

  • How can I know the web application name of a report?

    Hi forum,
    I have a query that is used by web. I need to know the name and how to access to application web of report
    any idea
    thanks in advance

    Hi,
    If you know the Query name,you can get name of the webtemplate from metadata repository.
    go to RSA1>MetadataRepository>click 'Query'>it will display all the Queries>search for your Query (cntrl+F)-->cliclk on it. You can see the Workbooks,webtemplate,chars,kfs...etc which are related to this Query.
    thanks

  • How can I make the web server work on port 80 and not 443. I can only access my website using https.

    On a Mac Mini server with OS X Lion 10.7.2, I am unalbe to get the web server working on port 80. It switches automatically to port 443 (https).
    This situation complicates the access to FileMaker Web publishing, as I don't want my clients having to use https.
    How can I change that? Does anyone know?
    Thanks for any reply

    in the server: I checked the SSL certificate. Tried several configuration.
    Well, that's a problem for a start.
    Your port 80 connection should NOT use SSL. Port 80 is the standard HTTP port, not HTTPS and most applications that connect to port 80 will not expect to use SSL
    If you want to run a site under both HTTP and HTTPS then you create two sites, one on port 80 without SSL and one on port 443 with SSL

  • How can I save the web page by using the Page Title as the file name ?

    When i use Internet Explorer ,I can save the web page by using Page Title as the file name(as default no need to adjust anything). But when i use Firefox ,It can not use the Page Title to save as the file name. How can I do that like in Internet Explorer?

    See:
    *File Title: https://addons.mozilla.org/firefox/addon/834
    *Title Save: https://addons.mozilla.org/firefox/addon/712

  • How can we get the web cam to work with sykpe or any out going calls

    can get the web cam to work with skype

    Hey there,
    What model laptop is this? Are you using the built-in webcam or is this a external web cam? Also what operating system are you using?
    Thanks!
    Sean
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Maybe you are looking for