Header Portlet Presentation using classic ASP in v5.0?

I would like to implement a share price ticker in a header portlet using ASP such as:
<%@ Language=VBScript %><%' URL for the share price Web ServicestrWebServicePath = "http://myWebService.com/fetch.asmx/Summary"
' create DOMDocument and load XMLset xmlDoc = Server.CreateObject("MSXML2.DOMDocument.4.0")xmlDoc.async = falsexmlDoc.setProperty "ServerHTTPRequest", truexmlDoc.validateOnParse = falsexmlDoc.load strWebServicePath
' fetch all the share price nodesset sharePriceNodes = xmlDoc.selectNodes("//sharePrice")
' store each value client-sidefor each node in sharePriceNodes i = i + 1 response.write "<input type=hidden id=sharePrice" & i & " value=" & node.selectSingleNode("tickerDisplay").Text & " />"next
' clean upset xmlDoc = nothing%>
Am I correct in assuming that I can only use HTML for the header presentation in versions 5 and above? If so, is there a work-around I could use?
Thanks

Richard,
Portlets and UI customizations of the core product are two different things. Headers, footers, and portlets in the mypage or community page are portlets, and as such can be remote, can be just straight HTML, but they have to be served by a remote web server - it's not like you can just plop HTML onto a disk and you're done; the HTML has to be served by IIS, Tomcat, BEA, Websphere, Apache, or an equivalent HTTP web server.
UI customizations are for all the other things you see in the portal: the navigation, the topbar, the editors, utilities, literally everything that is not strictly a portlet. In 4.5, you could customize that UI directly, because it was made up of a set of ASP pages (a full Java equivalent with JSP pages was also available). The drawback was that when we shipped even the tiniest hotfix, you had to merge differences between our new version and yoru customizations. This was clearly inefficient.
In 5.0, UI customizations can be done in layers, using our ActivitySpace architecture. This allows you to override the implementation of specific views, models, and controllers, which means your customizations integrate seamlessly with new updates to the product, as long as the core UI feature you are customizing continues to function as it was designed when you customized it. Customers have adopted 5.0 very rapidly because of this feature. We've also shipped many dozens of new APIs that allow you to respond to and customize a variety of complex events in the portal, when you want to do more than simply change the HTML.
So: Q1 answer: yes, of course you can use HTML. Q2 answer: We no longer use ASP pages in the core portal; we use ActivitySpaces (which contain models, views, and controllers), and HTMLElements, but there are many ways to customize any feature to do what you want using any of our API's.
David Phipps

Similar Messages

  • Upgrading Crystal 9 to Crystal XI using Classic ASP

    I am trying to find information on how to upgrade crystal 9 to crystal xi using classic asp code.  Not having much luck, any help would be appreciated.
    Thanks

    Hi Amy,
    This forum is dedicated to topics related to the creation and design of Crystal Report documents.
    This includes topics such as:
    Database connectivity,
    Parameters and Parameter prompting,
    Report formulas,
    Record selection formulas,
    Charting,
    Sorting,
    Grouping,
    Totaling,
    Exporting
    For questions related to custom application development using Crystal Reports, refer to the appropriate Crystal Reports forum under:
    Business Objects SDK Application Development.

  • Webcenter 10.3 - classic asp portlets

    Hi,
    I have few portlets which were developed in classic asp with plumtree version 5.0.3.
    Can anybody tell me what i have to do to run my asp portlets in webcenter 10.3.
    Is there any equivalent "Plumtree ASP Gadget Development Kit (GDK) 3.5" for webcenter 10.3 or GDK 3.5 can be used?

    GDK -> IDK.
    http://download.oracle.com/docs/cd/E13158_01/alui/idk/docs103/index.html
    you probably have to download it on edelivery.oracle.com

  • Why a classic asp + vb6 component application using MSXML6.0 is slower on W2K8 server compare to W2K3 server?

    Recently we moved classic asp application+ vb6 com components from W2K3 server to W2K8 server.
    The only change made in the vb6 component is upgrade from MSXML 2.0 to MSXML 6.0. These vb6 components are compiled into dlls and registered as COM components on the server.
    The issue we are facing right now is that asp pages are taking a lot of time to load.
    The functionality which used to take 8-10 sec is now taking around 40 seconds.
    We inserted the logs and found that all the functions in vb6 code which are related to MSXML 6.0 upgrade have caused the slowness in the application.
    On further research, we found that vb6 modules which uses 64 bit version of MSXML6.0(present under C:\Windows\System32) to load XML documents takes over two times longer to load an xml doc which uses 32bit version of MSXML6.0. (present under C:\Windows\sysWOW64)
    Microsoft has provided a hotfix for this. Please see below url.
    support.microsoft-com-kb-2799406
    We already tried this hotfix but it did not fixed the performance issue.
    Question:
    1) On W2K8 machine, we are unable to use MSXML6.0 present under C:\Windows\sysWOW64. Whenever we try to reference to this location it by default references back to C:\Windows\system32. We also opened the vb project file in a notepad and changed the reference
    location and opened the Project again but no success. Can anyone suggest what can be the probable solution to fix this?
    Current Scenario:
    Reference=*G{F5078F18-C551-11D3-89B9-0000F81FE221}#6.0#0#..WINDOWS-System32-msxml6.dll#Microsoft XML, v6.0
    Expected Scenario:
    Reference=*-G{F5078F18-C551-11D3-89B9-0000F81FE221}#6.0#0#..-WINDOWS-sysWOW64-msxml6.dll#Microsoft XML, v6.0
    2) Once we compile this vb6 code to a dll by having a reference to this sysWOW64 folder, how to ensure/confirm reference from Syswow64 will be picked up once it will be on W2K8 server?
    3) Also if you can suggest what can be other areas we should target/think of for resolving this performance issue?

    I have encountered the exact same problem with msxml6.dll that is described in the latter part of you statement. Had you come up with a possible solution?

  • Classic ASP - "ORA-01722: invalid number" using OraOLEDB.Oracle driver

    I am working on doing some maintenance updates to a Classic ASP website, and I need to be able to run an insert/update statement for putting values into a lookup table. I am currently running into an "ORA-01722: invalid number" error when trying to use ADO and bind variables for my insert statement.
    Below is an example of a table that I am having problems with:
    CREATE TABLE "MATMGR"."TEST_SWING_TABLE"
    (     "TABLE1_ID" NUMBER(4,0) NOT NULL ENABLE,
         "TABLE2_ID" NUMBER(4,0) NOT NULL ENABLE,
         CONSTRAINT "TEST_SWING_TABLE_PK" PRIMARY KEY ("TABLE1_ID", "TABLE2_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ENABLE
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ;
    Here is some snippet code of the basic functionality I am trying to get to work:
    ''START CODE''
    Dim connDb, cmdDoseInsert
    Set connDb = Server.CreateObject("ADODB.Connection")
    connDb.CursorLocation = adUseClient ' Setup to return RecordSet
    connDb.ConnectionString = "Provider=OraOLEDB.Oracle;Data Source={host};User ID={user id};Password={password}"
    connDb.Open()
    Set cmdDoseInsert = Server.CreateObject("ADODB.command")
    Set cmdDoseInsert.ActiveConnection = connDb
    cmdDoseInsert.CommandType = adCmdText
    cmdDoseInsert.NamedParameters = true ' Set the command object to use named parameters
    cmdDoseInsert.Prepared = true
    cmdDoseInsert.CommandTimeout = 0
    cmdDoseInsert.CommandText = "INSERT INTO TEST_SWING_TABLE (TABLE1_ID, TABLE2_ID) VALUES (:P_TABLE1_ID, :P_TABLE2_ID)"
    cmdDoseInsert.Prepared = true
    cmdDoseInsert.Parameters.Append cmdDoseInsert.CreateParameter("P_TABLE1_ID", adNumeric, adParamInput)
    cmdDoseInsert.Parameters.Append cmdDoseInsert.CreateParameter("P_TABLE2_ID", adNumeric, adParamInput)
    '... START: While Looping
         cmdDoseInsert.Parameters(0).Value = {some numeric value}
         cmdDoseInsert.Parameters(1).Value = {some numeric value}
         cmdDoseInsert.Execute
    '... END: Looping
    ''END CODE''
    What I have been able to find out so far is that there is some type of issue with numeric values getting translated right when sending two and retrieving from Oracle in ASP. So, does anyone have any thoughts on how to resolve this as I would like to use parameterized SQL to improve application performance?
    I am connecting to a developmental server running Oracle 9.2

    Ok, in my slightly larger example I found out that for what ever reason my named parameters are not being enforced, and so I had to make sure that the parameters were in the same order as they appeared in the SQL. To be on the save side, I did this when they were added as well as when I was assigning values to them.
    Can anyone tell me if this is an Oracle issue or a ASP issue?

  • Classic ASP shopping Cart

    Can anyone point me in the right direction please?
    I'm looking for a 'comprehensive' shopping cart system
    written in 'Classic
    ASP' and editable in DW8.
    It needs to have a fully functioning admin (backend) system
    and also enable
    me to add asp code as and when required.
    Bit of a tall order I guess, but my reason for the question
    is that at
    present we're using 'Actinic v8' and it is rather restrictive
    in both
    functions and design ability.
    Hope someone can advise.
    Thanks in advance
    Kind Regards
    Andy

    Thanks for that Dave - I've emailed you
    Andy
    "Dave Buchholz" <[email protected]> wrote
    in message
    news:[email protected]...
    > Andy,
    >
    > There are none that I am aware of but if you want to
    contact me offlist
    > I'll see what I can do for you.
    >
    > --
    >
    > Dave Buchholz
    > I-CRE8
    > www.i-cre8.co.uk
    > Skype ID: I-CRE8
    >
    >
    > "Andy" <[email protected]> wrote in message
    > news:[email protected]...
    >> Thanks Dave
    >>
    >> Do you know if they offer any screenshots of this? I
    can't seem to find
    >> any on their site.
    >>
    >> Andy
    >>
    >> "Dave Buchholz"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Not Lee but I can tell you that eCart comes with
    a sample store that
    >>> features a admin backend that you could modify
    for your own needs.
    >>>
    >>> --
    >>>
    >>> Dave Buchholz
    >>> I-CRE8
    >>> www.i-cre8.co.uk
    >>> Skype ID: I-CRE8
    >>>
    >>>
    >>> "Andy" <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Thanks Lee
    >>>>
    >>>> Excellent review -
    >>>> After looking into WA e-cart, i'm getting a
    little ocnfused with their
    >>>> product range.
    >>>> Does the e-cart come with a back-end system?
    or do you have to purchase
    >>>> another ackage from them to do this?
    >>>>
    >>>> Thanks Again Lee
    >>>>
    >>>> Andy
    >>>>
    >>>> "Lee" <[email protected]> wrote
    in message
    >>>> news:[email protected]...
    >>>>> I've been using WebAssist. It's good and
    bad depending on what you
    >>>>> need it to do. It offers a lot of
    flexibility but when you want
    >>>>> something unique it can be difficult to
    implement.
    >>>>>
    >>>>> For me, it wasn't so much the cost of
    the program but the time it took
    >>>>> to build what I needed. Had I a
    programmer sitting next to me, I would
    >>>>> have been very satisfied with WebAssist.
    Since I am not a programmer I
    >>>>> often ran into brick walls with much of
    the process.
    >>>>>
    >>>>> Don't count on too much help from them
    unless you are ready to pay for
    >>>>> help. I don't blame them, this is very
    difficult stuff. Their help
    >>>>> files are adequate but often lack the
    resource that is needed to
    >>>>> really understand the workings of the
    cart. They have a forum but
    >>>>> essentially, the responses to the posts
    only suggest a solution and
    >>>>> often it's not as soon as you might
    wish. In order to get real help,
    >>>>> you have use help credits that come with
    the original purchase. Once
    >>>>> those are gone, you can buy more. They
    also have a good mentoring
    >>>>> program that you can purchase for, I
    think, $150 a shot. It's helpful
    >>>>> and I would just budget a few of those
    right off the bat. In my case,
    >>>>> doing this earlier on would have saved a
    lot of grief. I wish I would
    >>>>> have gotten help earlier, instead, I
    built some things in a way that
    >>>>> didn't mesh very well with the cart.
    >>>>>
    >>>>> In many ways I wonder if I should have
    gotten something that was more
    >>>>> canned but it's hard to say what the
    right answer is. Something that
    >>>>> was canned may not have offered what I
    needed to have. If you're not a
    >>>>> programmer, for simple carts without a
    lot of complicated programming
    >>>>> needs, WebAssist is probably pretty
    good. If you are a solid
    >>>>> programmer, WebAssist is even a better
    choice. However, if you have a
    >>>>> complicated project/s and you have
    little programming skills, beware.
    >>>>>
    >>>>>
    >>>>>
    >>>>> The pluggins can be a little buggy
    sometimes but on average, I am
    >>>>> satisfied.
    >>>>>
    >>>>>> Thanks Guys!
    >>>>>> Anyone got any thoughts or
    experience with using 'cartweaver' or
    >>>>>> 'webb assist's e-cart'?
    >>>>>>
    >>>>>> Thanks
    >>>>>> Andy
    >>>>>>
    >>>>>>
    >>>>>> "Andy" <[email protected]> wrote in
    message
    >>>>>>
    news:[email protected]...
    >>>>>>> Can anyone point me in the right
    direction please?
    >>>>>>> I'm looking for a
    'comprehensive' shopping cart system written in
    >>>>>>> 'Classic ASP' and editable in
    DW8.
    >>>>>>>
    >>>>>>> It needs to have a fully
    functioning admin (backend) system and also
    >>>>>>> enable me to add asp code as and
    when required.
    >>>>>>>
    >>>>>>> Bit of a tall order I guess, but
    my reason for the question is that
    >>>>>>> at present we're using 'Actinic
    v8' and it is rather restrictive in
    >>>>>>> both functions and design
    ability.
    >>>>>>>
    >>>>>>> Hope someone can advise.
    >>>>>>>
    >>>>>>> Thanks in advance
    >>>>>>>
    >>>>>>> Kind Regards
    >>>>>>> Andy
    >>>>>>>
    >>>>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Classic ASP on IIS - Timeout Session not expiring

    I have an classic ASP website on IIS(both IIS 6,and 8) and both perform the same. We've had this issue for years on IIS 5,6,7,8 and never could figure it out. I have a session timeout setting on the IIS application pool of 120 minutes. I do not have
    a session.timeout setting in any of the ASP code itself. I do have a Session.Abandon in the global.asa file, which works well.
    Most of the time if a user is idle for > 120 minutes, it gives them a message that their session has timed out, expires the session and redirects them back to the login page. This is how it should work and 95% of the time is does.
    The issue I have is that about 5% of the time, some users seem to be able to keep the session alive beyond the 120 minutes. Some for days.
    I'm wondering if anyone has any ideas what could cause this? Some ideas that I thought of are below...but I really don't know.
    I assume they keep their browsers open for days, but could a user that has a browser window open but sitting idle AND on another TAB of that same browser be active on other websites? Does that activity make the TAB with my application still active/not idle?
    I've tested this on several environments but not able to replicate.
    Some type of software like a URL filter, proxy server or Antivirus could be causing their browser to not be idle?
    Of course a user can keep the session idle if they use the app beyond the 2 hours, but it is rather unlikely they do this, especially for days.
    Its hard to troubleshoot since the users are all customers with different browsers and environments. So I have no clue if its a certain browser, browser version, or their PC/network environment.
    Any ideas?
    pablo

    Hello,
    forums.iis.net also has a Classic ASP forum.
    As Microsoft's IIS forums are on a different platform, we cannot move the question for you.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Crystal Report and Classic asp

    Hello all,
    I want to know how to use ASP3.0(Classic) and Crystal Report10.0.
    I used Begin here sample from our forum but it is giving error
    like Error Occurred Reading Records: Logon failed. Details: ADO Error Code: 0x80040e4d Source: Microsoft OLE DB Provider for SQL Server Description: Login failed for user 'sa'. SQL State: 42000 Native Error: 18456
    Please help me in this regard asap.
    Thanks in Advance,
    Vamsi
    Edited by: vamsidhar on Sep 10, 2011 7:25 PM

    The reasons I want you to have SP 6 is because
    1) It is the latest fix release and I will not work on anything not patched with the latest fixes. E.g.; why test on an older runtime when the new one may already have the solution?
    2) You mentioned you want to be using IE 8. And as the blog I refered you to (Report Designer Component (RDC) in classic ASP applications on Win 2008 Server and Win 7 - Possible Solutions) states;
    "...this blog only applies to Crystal Reports XI release 2, patched up to Service Pack 6 ..."
    As to how to find SP 6. You could use the search box at the top right of this web page and type in "service pack 6 crystal" - without the quotes and the 5th hit is a KBase:
    [1421033  - Where to find Crystal Reports XI R2 Service Pack 6|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do]
    Alternatively, you could go to the downloads page directly at http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm, select the product and voila. Anyhow, SP 6 link:
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    SP 6 RDC MSM:
    https://smpdl.sap-ag.de/~sapidp/012002523100000634032010E/crxir2sp6_rdc_mm.zip
    Which you can also find at the above downloads page.
    BTW.; since you are a "newbee" in all of this, why not be a newbee in a technology that will take you some distance? CR XI R2 is the last version to ship the RDC (e.g.; RDC has been retired). Patch support had expired in June of this year. Any support expires next June. If you go with .NET or Java, you are assured years of support...
    Ludek

  • How to print logo in printout using classical report.

    Hello Friends,
    By using below code i am displaying logo in output using Classical report.
    What my problem is it is not displaying in print out.
    Please help. or else tell me how to print logo in classical report as well as output print out.
    DATA: docking TYPE REF TO cl_gui_docking_container,
          picture_control_1 TYPE REF TO cl_gui_picture,
          url(256) TYPE c ,
          query_table LIKE w3query OCCURS 1 WITH HEADER LINE,
          html_table LIKE w3html OCCURS 1,
          return_code LIKE w3param-ret_code,
          content_type LIKE w3param-cont_type,
          content_length LIKE w3param-cont_len,
          pic_data LIKE w3mime OCCURS 0,
          pic_size TYPE i,
          repid LIKE sy-repid.
    repid = sy-repid.
    START-OF-SELECTION.
      CREATE OBJECT picture_control_1
        EXPORTING
          parent = docking.
      CHECK sy-subrc = 0.
      CALL METHOD picture_control_1->set_3d_border
        EXPORTING
          border = 5.
      CALL METHOD picture_control_1->set_display_mode
        EXPORTING
          display_mode = cl_gui_picture=>display_mode_stretch.
      CALL METHOD picture_control_1->set_position
        EXPORTING
          height = 100
          left   = 700
          top    = 1
          width  = 200.
      "Position
      IF url IS INITIAL.
        REFRESH query_table.
        query_table-name = '_OBJECT_ID'.
        " Logo Name
        query_table-value = 'ENJOYSAP_LOGO'.
        APPEND query_table.
        CALL FUNCTION 'WWW_GET_MIME_OBJECT'
          TABLES
            query_string        = query_table
            html                = html_table
            mime                = pic_data
          CHANGING
            return_code         = return_code
            content_type        = content_type
            content_length      = content_length
          EXCEPTIONS
            object_not_found    = 1
            parameter_not_found = 2
            OTHERS              = 3.
        CALL FUNCTION 'DP_CREATE_URL'
          EXPORTING
            type     = 'image'
            subtype  = cndp_sap_tab_unknown
            size     = pic_size
            lifetime = cndp_lifetime_transaction
          TABLES
            data     = pic_data
          CHANGING
            url      = url
          EXCEPTIONS
            OTHERS   = 1.
      ENDIF.
      CALL METHOD picture_control_1->load_picture_from_url
        EXPORTING
          url = url.
      WRITE : /'Classical Report Logo'.
    Regards,
    Phaneendra
    Edited by: phaneendra punukollu on Dec 31, 2009 11:38 AM
    Code Formatted by: Alvaro Tejada Galindo on Jan 4, 2010 4:52 PM

    Hello Nidhi,
    Thanks for your sugessition.
    Actual we have data from IDOCS and it is maintained in Ztables
    and need to dispaly in report ( Service centre - Warranty data ).
    The report is completed. So again going to Script means waste of time for us.
    So Plz help me  if possible in Classical report.
    Regards,
    Phaneendra

  • Upload System folder to use Classic in OS 10.4.6?

    Hello, I have recently upgraded my old iMacs (400MHz & 500 MHz) to OS 10.4.6 and they both seem to run fine, except one thing, they don't have Classic. I have Classic ablility on my iBook G4 which uses OS 10.3.7.
    My question is there anyway to just download the "system folder" that Classic uses in my OS 10.3.7 and upload it onto both the computers in order to use CLassic?
    This is important since I am going to by upgraded the two iBook to OS 10.4.6 and that would be great to have Classic without trying to install OS 9 then OS 10.4.6, to just use Classic, and that opens up another can of worms when trying to back up the new address book and emails, etc. But I hope there is a way. Help if you can, thanks.

    I'm not sure if this is a "big discovery" or not but I actually did copy the system folder and applications (Mac OS 9) from my iBook G4 running OS 10.3.7 to my iMac G3 running OS 10.4.6. I buurned it onto a CD and to my amazement it works!
    I went into Classic in preferences and it found the Macintosh HD (I had restarted a few times, while going through to each step)
    I put the system folder and application of OS 9 in to the Macintosh HD just like they were on my iBook.
    When it was in Classic and it found the folder, I started it up, it said something about needing to update the folder, and it wouldn't affect boot folder (or something of that nature), so I clicked OK and it started up and I was running Classic.
    That is only the half of it. And I had called up a person in Tech Support at Apple earlier in the day and they told me I would need to "Install" off the original 2nd CD (additional software)and that would give me Classic. But I bypassed that and just took the folder from my iBook and put it onto OS 10.4.6.
    I restarted.
    The whole reason for me doing this stuff with classic was to be able to use my mother's "Mail" application (Outlook Express 5.02) and get her emails and address book back with all of her "groupings" (she has like 10,000 email addresses).
    So what I did from there was to get the copy I made of my mother's stuff (I had made a copy of Microsoft User Data, Contact Export, and the Mail application). I then proceeded to swap out the Microsoft User Data That I had on the new OS 10.4.6 with that folder from the OS 9.2.1 and put the old one in documents with the new one on the desktop.
    I went to Classic in System Pref. and started it up.
    I then went into the Identities folder in the Microsoft User Data (old one), Main Identity, then Messeges (outlook express file). Clicked on it and it said something like "rewriting strings" or something along those lines. It said something about starting up the email again and I ignored all of it because at this point I could see that I successfully got my mother's mail back in classic.
    I looked and saw that her address book was there with all her groups. (I should note that I already knew the mail would work because I checked by uploading the same files/folders onto my iBook with Classic's help).
    But now I had an operational mail off of my iBook and back onto my mother's computer.
    I then decided to press my luck and see if the computer could boot off the OS 9 system folder. I went into Start Up Disk in System Pref. and sure enough OS 10.4.6 was there along with the new OS 9.2.2 system folder. Hmm, should I try it will it work? The guy online I think said it wouldn't work and the "pot-head" guy in Apple Tech Support (he did sound stoned) said I won't be able to do any of this. F*ck it.
    I restarted on OS 9.2.2.
    It actually booted up and I was on the desktop and I went to see if I could actually use Outlook on this desktop and clicked on it, there was an erroe that said I needed to copy the identities folder from Users:my name: basically just get the identities folder, and move it to the outlook express folder. I did so by copying (option key).
    I went back to the outlook express, clicked on it and started it up. It worked, it works, just like it did originally (I should note I already had the Mail set up in OS 10.4.6 to our ISP and it is a POP account, it was set up before I tried any of this). I sent myself an email to anotherr account and it worked.
    I had talked on the phone with tech support people for at least a couple of hours, coming to the conclusion that I had improperly backed-up my data (emails,etc.) on both (my iMac G3 was running OS 10.2.8 and OS 9.2.1 before I zeroed and formatted it to OS 10.4.6) OS 10.2.8 and OS 9.2.1 and since I didn't have Classic in OS 10.4.6 I coudn't look and see what had and would have to reinstall from the original install CDs then upgrade to 9.2.2 and then "upgrade" to OS 10.4.6 to even have a chance of seeing what I had; and even though I told them what files I had they couldn't tell me if it was correct. My mother was freaking out on me, I won't go into details but she was extremely upset with me. I felt horrible I couldn't even load the stuff from OS 10.2.8.
    I thought I had failed and resigned that it was lost. Then a couple of days later I thought "hmm, I see that my comp has Classic I wonder if it would work if I uplloaded it onto my comp" I found out that both of the back ups I made worked, and that I could import the stuff I had in OS 10.2.8 into my Mail (1.3.9) on OS 10.3.7 on my iBook G4.
    I am absolutely ecstatic about the fact that Classic works beyond the bounds of what you guys and everyone else said. I would have wasted a lot of time reinstalling all the OSs onto the computers just to have CLassic and now that I'm upgrading four Macs in my house to OS 10.4.6, I can now have classic without absolutely taking HOURS to upload the installers and do damage control. But thanks to you guys who helped and actually I still need help with exporting and importing messages and exporting my address book in OS 9 but now it is easier and alleviates future problems with other systems (I think ). Thanks anyway.

  • Script Time out error in classic asp

    Hi ,
    In classic asp , i am using Stored procedure to fetch the result from oracle database . my database have 85Lakhs records . approx. 30 records are being inserted into the table. at the same time some users trying to fetch the data from same table.now i am getting script timeout error after long wait .it was an intermittent issue (sometimes it is working and sometimes it is not working). i thought it was because of performance issue with stored procedures . but in oracle Readers cannot block writers and Writers cannot block readers.so no issues with database side.i couldn't replicate the issue . i am wondering what will be the rootcause for this issue. is there anything i need to modify with the script side.by increasing the timeout property is the only solution?i tried to modify the timeout property to 180 seconds in classic asp page. please give your valuable suggestion.
    Thanks.
    Regards,
    Boss

    Hi,
    How big is your EJB application? i.e. how many EJBs do you have?
    Would you please try to deploy your application using the command line tool "asadmin" and see if it is also hanging? This will help us to tell if the deployment process that is hanging or the deploytool itself that is hanging. The "asadmin" tool is located under $INSTALL_HOME/bin.
    Thanks,
    Q^2

  • Using CSS for Struts JSP presentation using tiles

    hi all,
    i want to use CSS instead of table TRs ,TDs,TABLE in my jsps.
    can anyone help me how can i achieve that?
    i want to use css with struts presentation using tiles
    i couldn't find much information about using CSS for jsps on the web can anyone guide me with proper information in this regard?
    regards and thanks in advance

    Actually, I just realized it's the exact same syntax as regular html (which I was thinking, but for some reason it didn't work the night I posted):
    <head>
      <link rel="stylesheet" href="yourstylesheet.css"/>
    </head>I'm not sure why it didn't work for me the first time.
    theAmerican

  • Content Header Portlet - Subportal

    I have made a very simple Content Server Header Portlet with the word "Test". Then set the stylesheet to another color other than the default. After setting the neader for that subportal, I tested it. It works, shows the new color scheme for jsut that subportal. But....there is a big white bar across the top where the word "Test" is....??? Why is this?
    Thanks

    Response headers can be found in srvhdrs pblock.
    Those can be manipulated by using set-variable
    http://docs.sun.com/app/docs/doc/820-1638/6nda01tea?l=en&a=view#abuis
    You can read more about these in
    Sun Java System Web Server 6.1 SP8 Administrator's Configuration File Reference
    http://docs.sun.com/app/docs/doc/820-1638?l=en
    and
    Sun Java System Web Server 6.1 SP8 NSAPI Programmer's Guide
    http://docs.sun.com/app/docs/doc/820-1643?l=en

  • Best way to produce PDF output from Classic ASP

    I have Adobe Professional 9.2 and LiveCycle ES Designer 8.1. I need to change a Classic ASP web application to produce a PDF report. The way I see it I have three options:
    1) create native PDF output using open source libraries.
    2) create an FDF form with Adobe Pro as a template and use FDF libraries from Adobe to substitute text in the template
    3) create an XML form with LiveCycle as a template and do direct text substitution into the XML.
    I created a PDF with LiveCycle and prior to saving, unchecked the "save PDF files compressed" in tools/options. I don't want any text boxes, just labels, and in some of the labels I will put distinguishable text. When the web application uses the template it will find various text strings in the XML stream and substitute.
    What's the best way to do this? Is there a better way of doing substitution into the LiveCycle template? I would like to stay with LiveCycle. But from code samples I've seen, FDF substitution is very straightforward and possibly easier. I also thought LiveCycle is supposed to be the way to go instead of Adobe Pro. Thanks

    I cannot speak about theother methods but I can speak about the XFA method. In most cases people will bind the xml to the rawValue property of the field thereby filling the field with the value. However there are other bindable properties. Caption is one of them. first you have to turn on the Dynamic Properties. Click on th efield you want to control on on the Object palette click the icon as shown below:
    A new menu will open like this:
    Turn that option on and the Caption will turn a different color and will become a link. Click on the link and then you can map the caption to a node in your XML structure. This assumes that you have created a Data Connection to bind with.
    Paul

  • Classic ASP web app trying to acces remote SQL Server.

    Hi
    I have a classic asp web application which accessing a remote SQL Server 200. I am trying to connect using the following connection string in Global.asa file. For some reason not connecting to the remote SQL Server 200. The string is as follows.
    Session("dsn") = "provider=SQLOLEDB;app=AppName;server=SERVERNAME;uid=;password=;database=DBName;Trusted_Connection=No"
    Session("datadsn") = "data provider=SQLOLEDB;app=AppName;server=SERVERNAME;uid=;password=;database=DBName;Trusted_Connection=No"
    Session("server") = "SERVERNAME"
    Let me know if I am missing something or doing something wrong?
    Varun

    SQL Server Error Log has no error
    But I found couple of errors in Application EventViewer
    The VB Application identified by the event source logged this Application Globalization: Thread ID: 5312 ,Logged: -2147168246 New transaction cannot enlist in the specified transaction coordinator.  Error Source: Microsoft OLE DB Provider for SQL Server->ValidateUser
    A caller has attempted to propagate a transaction to a remote system, but MSDTC network DTC access is currently disabled on machine 'MyMachineName'. Please review the MS DTC configuration settings.
    Varun

Maybe you are looking for

  • Script to download source packages

    Hi there, I've made a Bash script "getsrc.sh" which download easily and quickly source packages from AUR or ABS (dependencies : yaourt and makepkg). The idea is just to do in one command, something we usually do in several commands (I use yaourt -G,

  • Java.sql.SQLException: Missing defines

    $ java -version java version "1.5.0" Java(TM) 2 Runtime Environment, Standard Edition (build pap64dev-20060511 (SR2)) IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 AIX ppc64-64 j9vmap6423-20060504 (JI T enabled) J9VM - 20060501_06428_BHdSMr JIT  - 2006

  • Creating Auto Fill Prefix for filling out forms

    I am trying to find a program or a setting in Safari that lets me save different profiles for filling out forms on different websites. I am a realtor who does several reports a week, and it would be nice for auto fill to fill out the form completely

  • Jdeveloper and Unix

    I really do not know if this place is the right forum to ask this question, but if any person can help me I will appreciate it. My client is currently using an old application that runs in UNIX, but they are planning for a major upgrade. One of their

  • Where is "Web Server Instance Location" for SWSE installation in HP-UX?

    Hi there, We are using Siebel CRM SIA 8.1.1, our database version is Oracle 10g 10.2.0.2. For Siebel Web Server Installation in HP-UX, it will asked where is the location for "Web Server Instance Location" in HP-UX. Previously we also having problem