Browser titlebar in XP SP2

I have been using the pagetitle parameter in formsweb.cfg to give each of our forms a distinct name, and allowing the name of the form to show on the Windows taskbar - something the users insist on.
Now SP2 has been installed - along with the extra locking-down of IE that entails - the title of the form is always preceded by the full URL of the form, e.g.
http://servername - Screen Name - Microsoft Internet Explorer
Is there any way of removing the URL, not that SP2 has added it, perhaps using JavaScript?
Thanks in advance

Many thanks for your reply.
HOWEVER, the full URL is still displayed, e.g. putting
<HEAD><TITLE>This is my form</TITLE></HEAD>
in basjini.htm will cause the browser window to have a title of
http:\\servername This is my form...
Incidentally, putting the above line in a plain HTML file renders
This is my form
in the titlebar, which is what is required.
I guess this is something to do with the interaction between SP2 and JInitiator.
Any ideas??
Many thanks.

Similar Messages

  • Unable to View PDF in Browser from a Servlet.

    Hi,
    I am facing a problem while trying to dynamically generate PDF from a Servlet and display it in the browser(IE 6.0 sp2)
    The scenario is as follows:
    i have a link which on clicking (using javascript) moves to a Servlet(say Dispatcher Servlet).This servlet forwards the control to another Servlet(say PDF Renderer Servlet) which generates the PDF and tries to display the results to the browser.
    The PDF does get generated.
    However in the pop-up i get a alert message to either open or save the PDF.But when i try to do so the message i get is that IE failed to communicate with the server.
    The code i am using to display the PDF is as follows
    ByteArrayOutputStream outfile = pdfTransformer.transform(xmlString,container);
    byte[] content = outfile.toByteArray();
    response.setContentType("application/pdf");
    response.setContentLength(content.length);
    response.setHeader("Content-Disposition", "inline; filename=\"" + pdfName + "\"");
    ServletOutputStream out= response.getOutputStream();
    out.write(content);
    out.flush();
    out.close();
    Any suggestions would be a great help.
    Thanks

    Hi,
    I have the same code as Viv above and I am generating pdf using fdf file format. the code works upto the point where it generates pdf. I am not setting the header to open the file in the same browser or new window:
    (not in my code)
    response.setHeader("Content-Disposition", "inline; filename=\"" + pdfName + "\"");it was working fine last week and now it starts to give a pop up box with only one option of saving the pdf file, there is no option to open it. when I save it the data in the file is lost, its just a fblank form. I am using IE 6.0.2900
    any suggestions?
    Ali

  • IE Browser not able to display a PDF file within the Browser window ...

    Hello acrobat experts!
    I'm now writing a plugin for the acrobat. According to my customer requirements, the pdf file is expected to be displayed within the MS IE
    browser widows. It worked within adobe Reader and Acrobat 7.0.x.
    Now I wanted to test my plugin against version adobe Reader and Acrobat
    8.0, 8.1.0, 8.1.1. Unfortunately, I got a strange behavior: pdf files are
    being diplayed in seperate windows, i.e. the IE browser window is empty
    and white blanked!
    - (Un)check "Display PDF in browser" option and close the window
    didn't help!
    - I tried also to upgrade gradually and after each upgrade checked if the
    problem persists --> I had the same behavoir after each update:
    7.0.5 -> 8.0; 8.0 --> 8.1.0; 8.1.0 --> 8.1.1
    - In some google - forums I found out that the following DLL's may be
    missing:
    Acropdf.dll, Acroiehelper.dll,Gbdetect.dll and Pdfshell.dll
    i got these dll's, put them into the activeX directory, but still I
    have the same problem
    You guys, do you have useful links / tips for me? Is this a known bug
    in the acrobat / Reader 8.0, 8.1.0, 8.1.1?
    By the it works fine within firefox!
    Further info about user SW versions:
    IE browser version 6.0 SP2, Windows XP SP2
    Thanks a lot in advance for your help
    Caleb

    thanks for the quick feedback-
    no, because my customer is using the IE 6. According to the system
    requirements all these Acrobat/Reader versions should also run
    properly under IE 6 http://www.adobe.com/support/downloads/detail.jsp?ftpID=3796
    I have a look in IE >> manage- add-ons and got the following Add-ons
    for adobe
    - Adobe PDF
    - Adobe PDF Conversion Tool helper
    both are enabled!
    Do I need more?
    can u pls check, if u have the following ddl's in the adobe home dir:
    Acropdf.dll, Acroiehelper.dll,Gbdetect.dll and Pdfshell.dll
    Thanks
    Caleb

  • Activating u00E1 former Window after calling a Document management picture

    Hi,
    in an ABAP programm I am calling function module CVAPI_DOC_VIEW2 which opens a new window where I can view a Document management picture for a given material number.
    My problem is, that the new called window is active and I have to use a mouse click to activate the first window to enter a new material number with a barcode reader.
    How can I activate the first window through ABAP without having to use a mouse click again ?
    Is there a function module or class available which I can call to activate the first window again?
    Below you find a short programm which calls the funtion module CVAPI_DOC_VIEW2.
    Thank you in advance for an answer.
    Regards
    Franz Grott
    Tel. 0172-6056850
    REPORT  zdummy02.
    SELECTION-SCREEN BEGIN OF SCREEN 9100.
    PARAMETERS: p_matnr TYPE matnr DEFAULT 'CH-6300' OBLIGATORY.
    SELECTION-SCREEN END OF SCREEN 9100.
    START-OF-SELECTION.
      TABLES: drad.
      DATA: lt_drad TYPE TABLE OF drad.
      CALL SCREEN 9100.
      SELECT * FROM drad INTO TABLE lt_drad
        WHERE dokob = 'MARA'
        AND   objky = p_matnr.
      LOOP AT lt_drad INTO drad.
        CALL FUNCTION 'CVAPI_DOC_VIEW2'
          EXPORTING
            pf_dokar       = drad-dokar
            pf_doknr       = drad-doknr
            pf_dokvr       = drad-dokvr
            pf_doktl       = drad-doktl
      PF_APPTP       = '1'
         EXCEPTIONS
           error          = 1
           OTHERS         = 2
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDLOOP.

    I've run into this issue in CP4 as well though I've never been sure why it happens. It looks like you're opening the swf through a browser to so, for want of a solution, the easiest workaround is the edit the html file.
    open it in a text editor such as Notepad.
    Five or six lines down you'll find the title element which defines the title as it will display in your browser titlebar:  <title>This text is the title that displays in your browser title bar</title>
    Just change the text the the title you want and save the html file.
    If you go with this solution, I suggest that when you are publishing the project again you deselect the option "Export HTML" in the publish wondow. Otherwise you will have to edit your html file each time you publish.
    Hope this helps.
    Niamh

  • The window title bar displays incorrectly after publishing a flash file.  Captivate 4

    When I open the .htm file after using the Flash option to publish, the wrong title displays in the title bar at the top of Internet Explorer's window; instead it displays a former file name.  I was told that the window name is determined by the field located here: File> Document Info> Project Name; however, this is not the case on my PC.  My coworker is able to publish it correctly, but I am not.  The first picture below is the IE title bar and the second is where (I think) that title bar pulls from, Project Name.  Please notice that mine differ.  Any suggestions?

    I've run into this issue in CP4 as well though I've never been sure why it happens. It looks like you're opening the swf through a browser to so, for want of a solution, the easiest workaround is the edit the html file.
    open it in a text editor such as Notepad.
    Five or six lines down you'll find the title element which defines the title as it will display in your browser titlebar:  <title>This text is the title that displays in your browser title bar</title>
    Just change the text the the title you want and save the html file.
    If you go with this solution, I suggest that when you are publishing the project again you deselect the option "Export HTML" in the publish wondow. Otherwise you will have to edit your html file each time you publish.
    Hope this helps.
    Niamh

  • MIME Objects not loaded, Script files from UR not provided to client

    We observe diverse JavaScript Errors and missing MIME-Objects on our Clients when trying to start the Application.
    We disabled compression for ICF-Service and for the Controllers, disabled HTTP/1.1. - no success.
    We followed Hint 715598 and disabled GZIP-Compression for the whole System but the problems occur further.
    Has anybody expierienced same behaviours? Is the problem to fix on client side or at WebAs? And of course how to fix ?????
    We are on WebAS 6.40 SP 13.
    Client-Browser: IE 5.5 SP2 and IE 6.0 SP1
    Desparately,
    Sebastian

    It occurs at standard test applications like <i>SBSPEXT_HTMLB</i> and in my custom developed app. So its seeming to be a general problem.
    By now we opened an error message @ SAP.

  • 9iR2 XSLT: disable-output-escaping bug if  input is escaped

    If my interpretation of XSLT standards is correct, the "disable-output-escaping" attribute in the following example should output <table width="100%"> before the first attribute of the current element, and </table> after the last one. The overall result will be a valid HTML table. This is what happens if my browser (IE 5.5 SP2) or XMLSpy does the transform.
    In 9iR2 (and also in 9iR1), however, the actual output is &lt;table width="100%"&gt; and &lt;/table&gt;.
    Is this a (known) bug ??
    Age Jan
    <xsl:template match="@*">
         <!-- xsl:if test="position()=1">
              <xsl:text disable-output-escaping="yes">&lt;table width="100%"&gt;</xsl:text>
         </xsl:if -->
         <tr class="attribute">
              <td width="40"><xsl:value-of select="name(.)"/></td>
              <td><xsl:value-of select="."/></td>
         </tr>
         <!-- xsl:if test="position()=last()">
              <xsl:text disable-output-escaping="yes">&lt;/table&gt;</xsl:text>
         </xsl:if -->
    </xsl:template>

    Bug 2289449

  • External Facing Portal --poor performane , for tuning-what to check

    Dear Gurus
    we are using EP7.0,(Backend systems SRM, DI)( oracle 10.2.0.2, AIX 5.3) it is working fine locally, but When it is accessed through internet and when the users are more(300+). the performance decreasing drastically,we have RAM of 16GB in portal production system, is there any thing need to be tuned when accessing throgh internet, i gone though the notes "external facing of portal", still i have problems, i did db statistics update with brconnect.
    we are using APache as reverse proxy latest version.
    These are the Alerts i got from sap management console
    Services\Http Provider\Total requests\ Avg request-response time     182330 ms > 120000 ms last reported Value above threshold     2008 08 26 00:35:57     
    Services\Memory\ UsedMemoryRate     98 % > 95 % last reported Value above threshold     2008 08 26 16:43:37                         
    Security\Aggregated Data\ InvalidSessionsCount     1109 > 200 last reported Value above threshold     2008 08 25 02:01:25                         
    Web Container\ CurrentSecuritySessions     517 > 500 last reported Value above threshold     2008 08 26 10:26:28                         
    Log Configurator\General\ TotalLogFilesSize     262166 KB > 262144 KB last reported Value above threshold     2008 08 26 14:06:36                         
    Kernel\Application Threads Pool\ WaitingTasksCount     1 task > 0 task last reported Value above threshold     2008 08 25 16:24:33                         
    Services\Security\Aggregated Data\ ActiveSessionsCount     229 > 200 last reported Value above threshold     2008 08 26 07:41:34                         
    Please guide me what could be the reason, atleast from where can i start tuning....
    Thanks in advance

    Hi Gourav Sharma
    Operating system in which portal is installed:   AIX 5.3
    Quality packs for Java :
      12Oct07 caix64142ifx-20070924{SR9 + 120478 + 119973 + 121859 + 122167 + 122541 + 123718} solves )
    JVM settings maxheap size is 2048
    SAP WebAS for Java   EP7.0
    Network traffic in Portal cluster
    Portal platform u2013 initial page, JCO, PRT, PRT cache
    Browser  IE 6.0 SP2
    I gone through the servicemarket place but i could not find the material related to EP7.0 performance tuning.
    is there any specific link which can i get the exact document which suits for our installatin.
    Regards,
    Balaji

  • XML and JSP

    I am trying to create and send an XML file back to browser where XSL will be
    applied. I am using wl6.0 sp2
    I tried like this
    <%@ page contentType="text/xml" %>
    <%
    out.println("<?xml version=\"1.0\"?>") ;
    out.println("<books>");
    out.println("<title>") ;
    out.println("XML Programming") ;
    out.println("</title>") ;
    out.println("</books>") ;
    %>
    But the browser is blank.
    Thanks
    shaikjava

    I just tried this in IE & Netscape browser with 6.0 SP2
    and i 'm getting the expected output. I would double check
    your generated jsp page
    kumar
    chand wrote:
    I am trying to create and send an XML file back to browser where XSL will be
    applied. I am using wl6.0 sp2
    I tried like this
    <%@ page contentType="text/xml" %>
    <%
    out.println("<?xml version=\"1.0\"?>") ;
    out.println("<books>");
    out.println("<title>") ;
    out.println("XML Programming") ;
    out.println("</title>") ;
    out.println("</books>") ;
    %>
    But the browser is blank.
    Thanks
    shaikjava

  • From a Mac, how do you stream WatchESPN channels through Quicktime?

    Hey everyone! I've been trying to figure this one out for a while but with no avail.
    I use the WatchESPN app a lot on my iPhone. However, for the times when I am at home, I prefer to use the website, WatchESPN.com, on either my Intel-based MacBook Pro or my Intel-based iMac. What I don't like is having to watch the videos through Safari, Firefox and/or Chrome because of the high memory consumption, not to mention the browser titlebar just takes up space.
    On the iPhone, the app streams through Quicktime. On the Mac, the website uses their own flash player in a popout window.
    How can we watch one of the WatchESPN.com streams through Quicktime on the Mac? It's possible on the iPhone. How can we make it possible on the Mac?
    Any help would be greatly appreciated!
    Thanks!

    Welcome to Apple Support Communities
    See > http://support.apple.com/kb/HT5404 If your computer is compatible with AirPlay Mirroring, you can use it to mirror the computer screen to your Apple TV.
    If your Mac isn't compatible with AirPlay Mirroring, you can use a third-party app, like AirParrot > http://www.airparrot.com

  • Cannot send files to nokia 7610 from my pc

    i get a mesagge from nokia pc suite when i try to install applicationsperation failed!
    the same mesagge appears when i try to copy any file to mobile with nokia phone browser.
    i have xp sp2 and installed dku-2 drivers,dku-2 usb cable and nokia pc suite 6.1 that came with the phone.it worked before and now it wont.i tryed to reinstall everything and still no effect.
    enyone help?!
    thx!

    Hi Iron4!
    You may want to try to manually manage your device in order to try a different method of syncing:
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/ht1535
    If you still experience issues after attempting to sync manually, you may want to follow the steps in this troubleshooting assistant:
    Apple - Support - iPad - iPad Troubleshooting Assistant
    http://www.apple.com/support/ipad/assistant/ipad/
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Help !!!!! troubleshooting safari problem

    Hi,
    I am using safari browser on windows XP SP2 , the problem is dat I have unintentionally deleted the binary (.exe) file (not the shortcut) of safari and I dunno wut i to do to get this file to run safari again on my PC .I am afraid if I reinsalled safari , I would lose my important bookmarks. Plz tell me a solution which help me not to lose my bookmarks.
    Thanks in advance

    Hi,
    Reinstalling should not delete your existing bookmarks. They are separate from the program.
    You can get the setup binary from http://www.apple.com/safari/download

  • Rep_util/cascade parameters demo loses desformat when report is generated

    I have reports developer and OAS 10.1.2.2 installed. I built the report as instructed in MetaLink article 185951.1 and it works properly, except that it appears to force the desformat to html, when I have specified htmlcss on the command line.
    Normal reports display in htmlcss format from a similar command line.
    I can provide screenshots and RDF source for anyone who is familiar with the rep_util library functions or the cascade parameters example.
    This is a capability our customers frequently ask for, but as it stands, it would have little value.
    My command line is this URL put into the address line of my browser (IE6 on XP SP2):
    http://myserver.domain/reports/rwservlet?report=cs_demo.rep+destype=cache+desformat=htmlcss+userid=ops$user/pwd@SID+paramform=yes
    It does the same thing when I launch it from Forms.

    I figured out the problem. In the article the after parameter form example code does more than set the 3 cascade parameters properly. It adds all this HTML stuff that will ultimately be set in the before report context. I deleted all of that code and then it works.
    I suspect that in 10gR2 with all the updates to the Reports dealing with being HTML 4.0.1 spec compliant has made this unnecessary.
    Too bad this is "unsupported". I suppose I can file a SR to have them fix the article. Would appreciate replies on this thread.

  • Publish to HTML - extra pixels

    Hi,
    I've published a Captivate 2 as a SWF with export HTML option
    enabled and when I run it at 1024 x 768 resolution with Fullscreen
    option I get an additional 15 pixels at the top between the
    Captivate slides and the IE browser titlebar and 10 pixels to the
    left of the start of the IE window to where the Captivate slide
    starts.
    Is there any way I get rid of this waste of screen rela
    estate, i.e., can I "justify the playback area to the top and left
    of the IE browser window?
    Thanks, Diane

    Hello and welcome!
    I think you should be able to use an old <DIV> trick
    for this to line up all the way to the left and to the very top if
    you want... just substitute my movie (swf names) for your own. I
    hope this works for you!

  • Rewriter tanrantella

    Rewriter configuration for Tarantella
    Author: Robert Wielinga
    Sep 27, 2002 2:29 AM
    Does anyone have experience setting up the portal rewriter to accomodate the tarantella applet via the netlet for portal 6?
    Tarantella integration in portal 3 works fine. You have two options, either using the tarantella channel in the portal, or following a link to the tarantella server.
    The channel is not (yet) suitable for portal 6, but the "link" option should work just fine, given a correct rewriter configuration. I added the following rules in the relevant sections of
    'default_gateway_ruleset' (I had some help from the migration pack):
    <Applet source="/tarantella/*" code="*" param="SERVER_URL" />
    <Applet source="/tarantella/*" code="*" param="EXTENDEDURL" />
    <Applet source="/tarantella_netlet/*" code="*" param="SERVER_URL" />
    <Applet source="/tarantella_netlet/*" code="*" param="EXTENDEDURL" />
    <Variable type="EXPRESSION"> href </Variable>
    <Variable type="EXPRESSION"> ttaURLPopupURL</Variable>
    <Function type="URL" name="trigger.ConditionalSoftwareUpdate"
    paramPatterns="y,,,"/>
    However, when I try to follow the link to the tta server, my browser shows a white screen with a grey box, under this box the text "Loading images - please wait..." appears. My browser is: IE5.5 SP2,
    the contents of the Java console are printed below.
    Any ideas?
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3805
    ==============================================
    ? help
    c wissen
    f finalize-methode uitvoeren
    g garbage verzamelen
    m geheugengebruik
    q afsluiten
    t thread-lijst
    ==============================================
    Netlet running on IE
    Netlet config: https://guam.demo.webflex.net/http://metoma.demo.webflex.net/portal/NetletConfig?func=loadResources
    gateway protocol : https
    gateway host : guam.demo.webflex.net
    gateway port : 443
    Netlet not using proxy (IE)
    Netlet rule 0: local:8000 destination:metoma.demo.webflex.net:80
    Netlet rule 1: local:30021 destination:TARGET:21
    Netlet rule 2: local:4000 destination:tta.demo.webflex.net:30144
    Netlet rule 3: local:4001 destination:tta.demo.webflex.net:3144
    Netlet rule 4: local:10025 destination:TARGET:25
    Netlet rule 5: local:10143 destination:TARGET:143
    Netlet rule 6: local:30000 destination:TARGET:23
    Netlet config: https://guam.demo.webflex.net/http://metoma.demo.webflex.net/portal/NetletConfig?func=setLoaded
    Tarantella 3.20.907: Commencing Bootstrap
    Tarantella 3.20.907: Connecting to Tarantella server...
    Tarantella 3.20.907: Using standard connection to Tarantella server localhost:4000
    Netlet got connection on port: 4000 from port:2124 to gateway:guam.demo.webflex.net on port:443
    Tarantella 3.20.907: Successfully connected to localhost:4000
    Final algo..RC6
    Final algo..RC6/ECB/PKCS5
    Passing Cipher to Proxy from RWGroupCrypt .....
    com.sun.portal.netlet.crypt.ciph.CipherGroup
    Tarantella 3.20.907: Connection lost. Attempting to reconnect...
    Tarantella 3.20.907: Using standard connection to Tarantella server localhost:4000
    Tarantella 3.20.907: Successfully connected to localhost:4000
    From SClient startConnection.......RC6.....192
    Netlet got connection on port: 4000 from port:2126 to gateway:guam.demo.webflex.net on port:443
    Final algo..RC6
    Final algo..RC6/ECB/PKCS5
    Passing Cipher to Proxy from RWGroupCrypt .....
    com.sun.portal.netlet.crypt.ciph.CipherGroup
    From SClient startConnection.......RC6.....192
    Tarantella 3.20.907: Using standard connection to Tarantella server localhost:4000
    Tarantella 3.20.907: Successfully connected to localhost:4000
    Netlet got connection on port: 4000 from port:2128 to gateway:guam.demo.webflex.net on port:443
    Final algo..RC6
    Final algo..RC6/ECB/PKCS5
    Passing Cipher to Proxy from RWGroupCrypt .....
    And this goes on, several times...

    Robert, I config my netlet rules and the rewriter rule according to yours.
    When I click Tarantella URL, I got a gray image which supposed to be login field. Below the gray image, it says "loading images, please wait..." . The Java console error is:
    sun.awt.image.ImageFormatException: no global colormap in GIF file.
    at sun.awt.image.GifImageDecoder.error(GifImageDecoder.java:102)
    at sun.awt.image.GifImageDecoder.readHeader(GifImageDecoder.java:314)
    * at sun.awt.image.GifImageDecoder.produceImage(GifImageDecoder.java:138)
    at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:265)
    at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:213)
    at sun.awt.image.ImageFetcher.run(ImageFetcher.java:187)

Maybe you are looking for

  • Web UI How to add an Image in a custom view

    I want to add a image, similar to one in the screenshot attached in the view. Can anyone suggest how this can be done.

  • Mb pro screen jumps during expose

    whenever i enter expose or switch screens on my laptop, the screen jitters or lags. part of the screen will flow through, but the other part will stop and then show up where it should be. or sometimes it'll just go straight from full screen to expose

  • H.323 video QOS over LAN to LAN

    I need to configure QOS for video over gig fiber LAN(4506 catalyst switch) to LAN(3500 switch)

  • I have installed a Superdrive in a new 12" iBook

    I bought a Pioneer DVR-K05 from www.zipzoomfly.com for $89 and took my 12" iBook apart very carefully and replaced the stock "Combo" drive with the Pioneer DVD-RW DL. I had to remove the stock bezzle from the combo drive and grind down a few little n

  • Reversal of invoice on PO

    Can a invoice be reversed on a PO after the GR/IR clearing has been completed and the invoice has been paid? The payment was a valid payment just against the worn PO. When trying to execute MR8M to reverse invoice, getting error " Document already co