What is it? .cfm

Hi. this question might not relate to java. i noticed that some websites run on files with .cmf extention. Does anyone knows what kind of language it is and what server it runs on?
the web site i am talking about is MidAmericaBank.
http://www.midamericabank.com/services.cfm
is it possible that their website runs on Strut frameworks? i know that you can change .do to anything you want.

ColdFusion MX now runs on standard J2EE application servers.
See http://www.macromedia.com/software/coldfusion/j2ee/index.html
-Alexis

Similar Messages

  • What is a "cfm" file??

    I foud a file containing som javascripts called cfm. What does this cfm mean and is it possible to use it in a regular jsp page??

    .cfm is the MIME extension for the ColdFusion Server Application Programming Interface originally from Allaire and now offered through Adobe/Macromedia as ColdFusion MX. Before you simply pull out any Javascript from from the page, you are going to need to make sure that is not nested within the actual CFML. For example, CF allows you to build Javascript dynamically by nesting it within a <cfoutput> tag and using # signs to dynamically output server-side variable constructs. For example:
    <cfset x = "20">
    <script language ="javascript">
    <cfoutput>
    for (i = 1; i < #x#; i++) {
    alert(i);
    </cfoutput>
    </script>
    The variable x in this case is not being set via Javascript, but by the the CF server. Check through the JS code to make sure this is not happening or you're going to get frustrated when the code does not work.

  • Cfapplication troubleshooting help

    A little help for a rusty CF programmer. It's been a while
    since I created a site using CF (2 yrs.) and am currently working
    on a new project, where I thought I could just snag a bunch of code
    from an old site I did that was very similar. I'm on a register.com
    server running CF5. I'm not completely sure they've made the DSN
    connection in CF Admin yet, since I haven't received an email
    confirmation, but I was testing the site today to see if at least
    the CF5 service was running yet.
    Here's the error:
    Error Diagnostic Information
    An error has occurred while processing the expression:
    session.auth=CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode122333444455555654321
    Error near line 1, column 1.
    Attempt to access a Session variable when session management
    is not enabled. Use the CFAPPLICATION tag to enable session
    management.
    Note: This feature may have been disabled by the site
    administrator.
    The error occurred while processing an element with a general
    identifier of (CFPARAM), occupying document position (8:1) to
    (8:45).
    Date/Time: 06/22/07 09:47:58
    Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
    rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4[/h]
    Here is what my application.cfm code looks like:
    <!--- security measures. set logged in to default no
    --->
    <CFPARAM name="session.auth" DEFAULT="FALSE">
    <!--- Application parameters defined --->
    <CFAPPLICATION name="js2" clientmanagement="Yes"
    sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,1,0,0)#"
    applicationtimeout="#CreateTimeSpan(0,1,0,0)#">
    <!--- session timeout has been set for 1 hours,
    application timeout has been set for 1 hour --->
    <!--- set certain variables --->
    <CFSET Application.DSN = "js2">
    <cflock name="quickLock" timeout="20"
    throwontimeout="yes">
    <cfif NOT IsDefined("session.rollcount")>
    <cfset session.rollcount = 1>
    <cfcookie name="isOn" value="Testing">
    <cfset application.addToken =
    "cfid=#Client.cfid#&cftoken=#client.cftoken#">
    <cfelse>
    <!--- check to see if cookies are on. If not, make a
    query string variable with the CFID and CFTOKEN variables --->
    <cfset application.addToken = IIF(NOT
    IsDefined("cookie.isOn"),
    DE("cfid=#client.cfid#&cftoken=#client.cftoken#"), DE(""))>
    </cfif>
    </cflock>
    <!--- cfif --->
    As you can see I have cfapplication in the code and
    sessionmanagement has been set to yes. Any ideas? Thanks.

    Turns out the response from tech support at register.com says
    that I cannot use sessionmanagement. If I read their response
    correctly. I find that rather odd. I suppose they don't want to tie
    up their servers with extra memory.

  • Sometimes application variables don't reset

    In our application.cfm, many queries are run and set to arrays that are application scope. They are for code tables. To keep all this from happenning each time a template runs, there is a server scope variable that is set to true from another program and in application.cfm, there is something like <cfif the server variable is true> run queries,assign arrays,set server variable to false  </cfif>.
    When a new code is added to a code table, we set the server variable to true and the next template that runs resets all the application variables and the new code is in one of them.
    Sometimes this doesn't work. Only some of the arrays get reset and the others are empty. The arrays are there but have no elements.
    Repeating the process 2 to 4 times seems to make it work.
    What can cause it not to work the first time ?

    The problem happens even in a test area where I'm the only one using it.
    Why does the reset program sometimes have to be run more than once ?
    This is the reset program
    server.x=0
    This is what the application.cfm is like
    <cfapplication name="thename">
    <cfset ds="dsname">
    <cfparam name=server.x type="boolean" default="0">
    <cfif server.x eq 0>
       <cfset server.x=1>
       <cfset application.codes=arraynew(2)>
       <cfquery name="qcodes" datasource="#ds#">
          select codes, desc from tblcodes order by codes
       </cfquery>
      <cfloop query="qcodes">
          <cfset application.codes[currentrow][1]=qcodes.code[currentrow]>
          <cfset application.codes[currentrow][2]=qcodes.desc[currentrow]>
          <cfset application.codes[currentrow][3]=qcodes.place[currentrow]>
          <cfset application.codes[currentrow][4]=qcodes.date_eff[currentrow]>
          <cfset application.codes[currentrow][5]=qcodes.date_del[currentrow]>
      </cfloop>
       does this for well over 50 more tables
    </cfif>

  • File upload url

    Hi,
       I search for how to upload file using Adobe Flex, and I found many codes but all have the upload url=""http://www.[yourdomain].com/fileUploadScript.cfm" ??
    what is eaxctly the url mean? what I should replace it in my code?? what is fileUploadScript.cfm?
    Thanks,
    Reham

    fileUploadScript.cfm represents some script you would have on your server that receives the file you send from your Flex app. It could be written in many different languages, .cfm indicates a Cold Fusion script. But it could also be .PHP, .ASP, .ASPX. etc...

  • Cannot lock session scope

    Coldfusion 6.1, Dreamweaver 8.0, access 2003
    All code is being written by Dreamweaver in this discussion.
    I am not writing this code on my own.
    I am new to both Dreamweaver and Coldfusion. I am setting up
    the company intranet site. I want some parts restricted. I started
    by creating a login page by using dreamweaver. My first problem was
    when i was being directed towards the page for unsuccessful login
    even though I know I typed in the correct username and password. I
    have an access database holding this information. I am not using
    security level. While researching this with another forum, I
    decided to go to the next step and start putting the Restricted
    Page code. This is when I discovered my second problem. When I
    render the page, I get
    CANNOT LOCK SESSION SCOPE - CFLock cannot be used to lock the
    application or sessions shared scopes without these scopes being
    established through the use of the CFAPplication tag. ....
    My research tells me my problems are the result of same
    problem.
    In coldfusion Administrator, under Memory variables, I have
    check marks for Enable Application Variables and Enable Session
    Variables.
    Then I found this article
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16564&sliceId=2.
    I did what it said and it still does not work.
    I have the file in two places
    One at the root: C:\Inetpub\wwwroot\_mmServerScripts
    One within the site:
    C:\Inetpub\wwwroot\GIInet\_mmServerScripts
    Do you know which one should have this tag? Should I have
    both folders?
    <CFAPPLICATION NAME="Name" SESSIONMANAGEMENT="Yes" >
    Where it says "Name", do I leave Name there or do I put in a
    name that is relative to my site and what is this .. the root
    folder name?
    Why do I have to pay for support for something that is not
    obviously working?!?!

    "Do you know which one should have this tag? Should I have
    both folders?
    <CFAPPLICATION NAME="Name" SESSIONMANAGEMENT="Yes" >"
    Neither. It should be in the root folder of YOUR web
    application.
    'C:\\Inetpub\wwwroot' is a common web root for beginners. It
    must be
    included in every file that will be part of the same
    application as
    defined by the 'Name' parameter. The easiest way to do this
    is the use
    the Application.cfm|Application.cfc files that are
    automatically part of
    every file in the same and all sub directories.
    "Where it says "Name", do I leave Name there or do I put in a
    name that
    is relative to my site and what is this .. the root folder
    name?"
    It is whatever string you want to use to define an
    "Application" that
    all files that share it will belong to. All files that have
    the same
    "Name" will share Application, Session and other common scope
    variables
    and other functionality. Again this must be included in every
    file that
    you want to be part of the same "Application". That is what
    the
    Application.cfm and|or Application.cfc files are for, so one
    does not
    have to hard code this line in every file, thought that would
    be a
    functional, if impractical, option.
    "Why do I have to pay for support for something that is not
    obviously
    working?!?!"
    Well, this is all explained in quite some detail in the
    documentation
    included with Dreamweaver and|or ColdFusion as well as online
    at Adobe
    and many other sites. The details and ins and outs are also
    well
    discussed on numerous blogs, forums and discussion lists. And
    all those
    resources are free.
    But if one wants someone else to do the work for them, they
    generally
    need to pay for that help.

  • What could the possible cfm of the asp

    hi friends, what could be the generic cfm code of this, i
    tried but not working
    Dim Myvar as String
    Dim MySQL as string = "Select email from yourTableName"
    Dim MyConn As SqlConnection = New
    SqlConnection(ConfigurationSettings.AppSettings("UrAppString"))
    Dim objDR as SQLDataReader
    Dim Cmd as New SQLCommand(MySQL, MyConn)
    MyConn.Open()
    objDR=Cmd.ExecuteReader(system.data.CommandBehavior.CloseConnection)
    MyVar=""
    While objDR.Read()
    MyVar+=objDR("email")& ";"
    End While
    MyVar=MyVar.substring(0,(MyVar.Length-1))
    Regards and Thanks

    AFAIK, it's just

  • [ SAP CFM ] Program RFID_BR_TRBAL_CUST. What is it?

    Hello Experts,
    This is a thread of SAP CFM.
    Does someone know what is the use of RFID_BR_TRBAL_CUST program?
    Thanks,
    Daniel.

    All right Deepak. If you have any updates, can you post it here?
    Thanks,
    Daniel.

  • Coldfusion will only display index.cfm no matter what .cfm page is opened

    I am currently learning ColdFusion using the tutorials on lynda.com. In doing the exercises I am running into a particularly unusual problem. No matter what .cfm document I have opened and I am attempting to work on the only page that will preview in Dreamweaver's Live View and in any browser is the index.cfm page of the exercises that I am working on. I have worked on these exercises on another computer, a laptop, with no problems. Both of the computer were running Windows 7 and all of the Site Setup information seems to be the same on both computers. Any ideas on what could be causing this? I cannot proceed effectively with the tutorials if this problem persists. I have all of the required components installed on my computer so I really don't know what the problem could be. Any help would be appreciated. Let me add that this is not happening with every CF document but with a particular Site Setup and exercises that I am working on through the tutorials that come with the Coldfusion tutorial provided by Lynda.com.
    NOTE: I am learning ColdFusion MX at the moment, but I have ColdFusion 9.1 installed on the computer that I am having the problem on.

    Adam,
    Thanks for getting back to me. I have attached a .pdf and two (2) text documents which should serve to explain the problem in greater detail. I am sending this from my email which is how I am able to attach the documents. The pdf really shows my screen and what is actually happening. If you cannot open the files let me try to explain:
    I have two (2) separate CF sites set up on my computer. I have the same sites set up on my laptop. I have downloaded lessons from Lynda.com so that I can learn CF. In one of the CF sites, which has graphics included, no matter what page I am working on when I go to view that page in "Live View" or any browser the only page that displays is the index.cfm page. I do not get an error message, what displays is only the index.cfm page. In other words, the only page that will display in this particular site in the index.cfm page. I do not have this problem on the laptop. I hope that clarifies the situation. If not please let me know. I am attempting to fix the problem but I do not know what to do as I have tried several things, including deleting the site setup and setting it up again. Any help would be appreciated. Thanks.
    Click here for ColdFusion Problem.pdf or copy and past this link to your browser: http://luvchoseu.theggoc.com/images/stories/ColdFusion-Problem.pdf
    Click here for  user_list.cfm document or copy and paste this link in your browser: http://luvchoseu.theggoc.com/images/stories/ColdFusion_user_list.cfm_Code.txt
    Click here for storyteller.cfm document or copy and paste this link in your browser: http://luvchoseu.theggoc.com/images/stories/ColdFusion_storyteller.cfm_Code.txt
    Peter
    Message was edited by: Peter G.

  • What might be slowing down cfm pages on Plesk system?

    Hi
    We have CF MX7 running on a Win2003 server with Plesk. It is processing cfm pages quickly enough but then serves them up very slowly. So, a simple template which just has the number 1 - 32,000 listed out in plain text with a cfoutput to add a timestamp at the start and end of process takes many seconds to load in the browser, even though the timestamps show the CF page processing took no time at all.
    The same page with a htm extension serves up in less than a second.
    So, CF appears to be able to do its processing nice an quickly but is seems to hit some kind of bottleneck when it comes to passing the processed data onto whatever process is transporting it to the client browser.
    The two sample pages run on a dedicated server take about the same (very quick) time to arrive at the client browser so we think this has to be something to do with the set up of CFMX 7 with Plesk running.
    Any ideas?
    Chris

    Chris Pamplin wrote:
     So, CF appears to be able to do its processing nice an quickly but is seems to hit some kind of bottleneck when it comes to passing the processed data onto whatever process is transporting it to the client browser
    That would almost always be the web server.
    If you and determined that ColdFusion is not the bottleneck, you will probably need to start sniffing around your network and see where the packets are going and how long they are taking to get there.  A partial list of places that could be bottleneks; web server, proxy server, firewalls, client browser.

  • What is POP, POP3, and IMAP When I Setup My Email Account in the HP ePrint App?

    I have done as much research as I can do in regards to setting up the HP ePrint App Email Accounts.  If you do not see your email information listed here, feel free to post it below or contact your internet service provider, phone or email company, or whomever else that might know this. I am certain there are many more that could be added but this is a rather extensive list.  I hope you find what you need to finish setting up your email applications.
    I have noticed information differs from website to website but as I have learned over time, with domain masking and companies buying out other companies, I just researched all the information I could find and that way if one of the hostnames or ports don’t work, then you can continue to view further into this page to see if that information is the same. At that point, if you can’t find what you need here, I would say you have done all that you can do before contacting the appropriate support team for your email information.  
    Most of the links are active and the ones listed below should send you directly the pages I pulled this information from but only a few of them were from the actual support sites themselves (Apple support was vague, as well as Microsoft, Macintosh, and commonly used ISPs). Save yourself some time by searching here first. I hope you find what you need in this one-stop-shop and if you get an email address not listed here please post it below and I will add it to this original document.
    Lastly, as this information is from forum-based and other unofficial websites, I would like to add that this is a copy/paste/edit-for-easy-reading document I created in my spare time. This is a very long document so I do recommend using the search and find quick keys to search for the email you need but the top part of this has definitions as to what servers, ports, and hostnames are and the basic setup in case you need to know what these options are used for and what they mean.
    Below are the most common settings needed to set up most POP3/IMAP Email Clients or Devices:
    The following information below can be found at http://www.swestcom.com/Support/q4.htm
    “What is POP3?
    Post Office Protocol version 3 (POP3) is a standard mail protocol used to receive emails from a remote server to a local email client. POP3 allows you to download email messages on your local computer and read them even when you are offline."
    "What is IMAP?
    The Internet Message Access Protocol (IMAP) is a mail protocol used for accessing email on a remote web server from a local client. IMAP and POP3 are the two most commonly used Internet mail protocols for retrieving emails. Both protocols are supported by all modern email clients and web servers."
    "Main difference between IMAP and POP3:
    The POP3 protocol assumes that there is only one client connected to the mailbox. In contrast, the IMAP protocol allows simultaneous access by multiple clients. IMAP is suitable for you if your mailbox is about to be managed by multiple users."
    "What is SMTP?
    Simple Mail Transfer Protocol (SMTP) is the standard protocol for sending emails across the Internet. SMTP uses TCP port 25 or 2525 and sometimes you can have problems to send your messages in case your ISP has closed port 25 (How to check if port 25 is open?). To determine the SMTP server for a given domain name, the MX (Mail eXchange) should have more information."
    "When setting up:
    POP - choose POP and the incoming server port will default to 110
    IMAP - choose IMAP and the incoming server port will default to 143
    All other settings are the same.
    Username = [email protected]
    Password = the password you set up when you configured your mail box
    Incoming Mail Server = mail.yourdomain.com
    Outgoing Mail Server= smtp.yourdomain.com
    Outgoing Server Requires Authentication (typically found in advanced options or settings)
    Do NOT check "Log on Using Secure Password Authentication"
    Use the same Username and Password as Incoming or select "Use Same Settings as Incoming"
    Outgoing Server Port= 2525 or 587This is subject to change based on the individual preferences of your ISP"
    Note - Substitute your actual domain name for "yourdomain.com" and substitute the first part of your email address for "user."
    Email Ports
    For networks, a port means an endpoint to a logical connection. The port number identifies what type of port it is. Here are the default email ports for:     
    POP3 - port 110
    IMAP - port 143
    SMTP - port 25
    HTTP - port 80
    Secure SMTP (SSMTP) - port 465
    Secure IMAP (IMAP4-SSL) - port 585
    IMAP4 over SSL (IMAPS) - port 993
    Secure POP3 (SSL-POP) - port 995.
    For Mozilla, Outlook, Windows mail, Windows Live, Outlook 2003-2010, Entourage for Mac OS, and Mail for Mac OS follow this link: http://help.outlook.com/en-ca/140/cc875899.aspx    (this website has not been looked over for validation but may assist in other leads towards the right direction)
    Have you ever wished you could use your AOL email account with something else, something more powerful, something more convenient than AOL, something like Outlook, Windows Mail, Outlook Express, or The Bat!? Thanks to the wonders of IMAP, you can.
    If you set up your AOL email account in any email client capable of IMAP, you can receive and send messages easily. Even the AOL folders — Spam, Saved, Sent Items and your Trash will be there automatically. Of course, you can also use POP to fetch incoming mail in an uncomplicated fashion.
    For instructions on how to assist you with this you can also follow this link: http://email.about.com/od/aoltips/qt/Access_an_AOL_Email_Account_with_any_POP_IMAP_Email_Program.htm
    Set Up POP or IMAP E-Mail on an Android G1 How do I set up POP or IMAP E-Mail on an Android Device?
    From the home screen, tap Applications > Settings > Accounts & sync > Add account > Manual setup.
    On the Incoming settings screen, in the Protocol drop-down menu, select IMAP or POP3. We suggest you select IMAP because it supports more features.
    In the Email address and Username text boxes, enter your full e-mail address, for example [email protected], and then select Next. Your user name is the same as your e-mail address.
    In the Password text box, enter your password.
    In the IMAP server or POP3 server text box, enter your IMAP or POP server name. For information about how to look up the server settings you need to complete this step and other steps in this procedure, see “How do I find the server settings” later in this topic.
    In the Security type drop-down menu and Server port text boxes, specify the POP or IMAP settings that you looked up in step 5, and then tap Next. Your e-mail application will check your IMAP or POP settings.
    On the Outgoing server settings screen, the Login required option should be selected for you, and the Username and Password text boxes should be filled in.
    In the SMTP server text box, enter the SMTP server name you looked up in step 5.
    In the Security type drop down menu and Server port text box, specify the SMTP settings that you located in step 5, and click Next.
    In the Account name, text box, enter a name for your account (for example “Office 365 email” or “Work email”). In the Your name text box, enter the name you want displayed when you send e-mail to others (for example “Tony Smith”), and then select Finish Setup.
    What else do I need to know?
    If your e-mail account is the type that requires registration, you must register it the first time you sign in to Outlook Web App. Connecting to your e-mail account through a mobile phone will fail if you haven't registered your account through Outlook Web App. After you sign in to your account, sign out. Then try to connect using your mobile phone. For more information about how to sign in to your account using Outlook Web App, see How to Sign In to Your E-Mail Using a Web Browser. If you have trouble signing in, see FAQs: Sign-in and Password Issues or contact the person who manages your e-mail account.
    Information below provided by: http://www.defcon-5.com/support/index.cfm?docid=95
    Yahoo:
    POP3: pop.mail.yahoo.com Port 995
    SMTP: smtp.mail.yahoo.com Port 465
    ESMTP should be enabled
    SSL: YES
    User name must not include the @yahoo.com
    GMail:
    POP3: pop.gmail.com Port 995
    SMTP: smtp.gmail.com Port 465
    ESTMP should be enabled
    SSL: YES
    AOL:
    IMAP: imap.aol.com Port 143
    SMTP: smtp.aol.com
    SSL: NO
    ATT World Net:
    POP3: ipostoffice.worldnet.att.net Port 995
    SMTP: imailhost.worldnet.att.net Port 465
    SSL REQUIRED for Incoming and Outgoing
    Cox:
    NOTE: With Cox you can only use their SMTP servers while on their network.
    Central
    POP3: pop.central.cox.net
    SMTP: smtp.central.cox.net
    ESMTP should be enabled
    SSL: NO
    East Cost
    POP3: pop.east.cox.net
    SMTP: smtp.east.cox.net
    ESMTP should be enabled
    SSL: NO
    West Cost
    POP3: pop.west.cox.net
    SMTP: smtp.west.cox.net
    ESMTP should be enabled
    SSL: NO
    Comcast:
    POP3: pop3.comcast.net Port 110
    SMTP: smtp.comcast.net Port 587
    ESMTP should be enabled
    SSL: NO
    User name must NOT include @comcast.net
    Comcast SMART ZONE:
    POP3:  sz-pop.mail.comcast.net Port 995
    SMTP: smtp.compcast.net Port 587
    ESMTP should be enabled
    SSL: NO
    User name must NOT include @comcast.net
    Earthlink:
    POP3: pop.earthlink.net Port 110
    SMTP: smtpauth.earthlink.net Port 587
    ESMTP should be enabled
    SSL: NO
    User name must include @earthlink.net
    Hughes Net:
    POP3: mail.hughes.net Port 110
    SMTP: smtp.hughest.net Port 25
    ESMTP should be enabled
    SSL: NO
    User name must include @hughes.net
    Metrocast:
    POP3: pop.va.metrocast.net Port 110
    SMTP: smtp.va.metrocast.net Port 25
    ESMTP should NOT be enabled
    User name MUST be full email address
    SSL: NO
    MSN:
    POP3: pop 3 . live. com  port #995.
    SMTP: smtp.live. com port #25
    SSL: YES
    ESMTP: should be enabled
    User name must have the full email address
    NetZero:
    POP3: pop.netzero.com Port 110
    SMTP: smtpauth.netzero.com Port 25
    ESMTP should be enabled
    SSL: NO
    User name must include @netzero.com
    Verizon:
    POP3: incoming.verizon.net Port 110
    SMTP: outgoing.verizon.net Port 25
    ESMTP should be enabled
    SSL: NO
    The following information is according to a forum comment at the bottom of this webpage concerning HOTMAIL and mail server settings:
     “As other web based email services, Hotmail is using the HTTP protocol for connecting you to your mailbox. If you want to send and receive Hotmail emails using an email client software, then your software must support Hotmail HTTP access for your email account. Some email clients, such as Outlook Express or Microsoft Outlook, offer builtin support for Hotmail accounts, so you only have to select HTTP when you are asked to select your email account type and select Hotmail as the HTTP Mail Service Provider.”
    Mail Server Settings for Hotmail using the Microsoft Outlook Connector
    If you are using Microsoft Outlook & the Outlook Connector, you can define your Hotmail account just like any regular POP3 email account:
    Hotmail Incoming Mail Server (POP3) - pop3 . live. com  (logon using Secure Password Authentification - SPA, mail server port: 995)
    Hotmail Outgoing Mail Server (SMTP) -smtp . live . com (SSL enabled, port 25)
    Additional information from this website has not been confirmed or validated as of yet but it does include additional information or perhaps corrected information. If the above steps do not fix the problem with setting up an email account for the HP Apps then read on:
    Yahoo! Mail Settings
    Yahoo Mail offers standard POP3 access for receiving emails incoming through your Yahoo mailbox, by using your favorite email client software. To setup your email client for working with your Yahoo account, you need to select the POP3 protocol and use the following mail server settings:
    Yahoo Incoming Mail Server (POP3) - pop.mail.yahoo.com (port 110)
    Yahoo Outgoing Mail Server (SMTP) - smtp.mail.yahoo.com (port 25)
    POP Yahoo! Mail Plus email server settings
    Yahoo Plus Incoming Mail Server (POP3) - plus.pop.mail.yahoo.com (SSL enabled, port 995)
    Yahoo Plus Outgoing Mail Server (SMTP) - plus.smtp.mail.yahoo.com (SSL enabled, port 465, use authentication)
    · Google GMail Settings
    The Google GMail service offers email client access for retrieving and sending emails through your Gmail account. However, for security reasons, GMail uses POP3 over an SSL connection, so make sure your email client supports encrypted SSL connections.
    Google Gmail Incoming Mail Server (POP3) - pop.gmail.com (SSL enabled, port 995)
    Outgoing Mail Server - use the SMTP mail server address provided by your local ISP or smtp.gmail.com (SSL enabled, port 465)
     MSN Mail Settings
    The MSN email service allows you to use the MSN POP3 and SMTP servers to access your MSN mailbox.
    MSN Incoming Mail Server (POP3) - pop3.email.msn.com (port 110, using Secure Password Authentication - SPA)
    MSN Outgoing Mail Server - smtp.email.msn.com (select "My outgoing server requires authentication")
     Lycos Mail Settings
    The Lycos Mail Plus service allows you to use POP3 and SMTP servers for accessing your Lycos mailbox.
    Lycos Mail Incoming Mail Server (POP3) - pop.mail.lycos.com (port 110)
    Outgoing Mail Server - smtp.mail.lycos.com or use your local ISP SMTP mail server
     AOL Mail Settings
    The AOL email service is a web based system, designed for managing your AOL mailbox via HTTP IMAP access. Unlike Hotmail, you can use any email client to access your AOL mailbox, as long as it supports the IMAP protocol.
    AOL Incoming Mail Server (IMAP) - imap.aol.com (port 143)
    AOL Outgoing Mail Server - smtp.aol.com or use your local ISP SMTP mail server
     Mail.com Mail Settings
    The Mail.com email service allows you to use POP3 and SMTP servers for accessing your Mail.com mailbox.
    Mail.com Mail Incoming Mail Server (POP3) - pop1.mail.com (port 110)
    Outgoing Mail Server - use your local ISP SMTP mail server
     Netscape Internet Service Mail Settings
    The Netscape e-mail system is web-based, which means you can access their e-mail from any Internet connection. Netscape Internet Service also supports AOL® Communicator, Microsoft® Outlook, Microsoft® Outlook Express, and other POP3 e-mail software. The outgoing mail server needs SSL support, so make sure your email client software supports SSL connections over the SMTP protocol.
    Netscape Internet Service Incoming Mail Server (POP3) - pop.3.isp.netscape.com (port 110)
    Netscape Internet Service Outgoing Mail Server - smtp.isp.netscape.com (port 25, using a secure SSL connection)
    Tiscali Mail Settings
    The Tiscali email service allows you to use POP3 and SMTP servers for accessing your Tiscali mailbox.
    Tiscali Incoming Mail Server (POP3) - pop.tiscali.com (port 110)
    Outgoing Mail Server - use your local ISP SMTP mail server
    Freeserve Mail Settings
    The Freeserve email service allows you to use POP3 and SMTP servers for accessing your Freeserve mailbox.
    Freeserve Incoming Mail Server (POP3) - pop.freeserve.com (port 110)
    Outgoing Mail Server - use your local ISP SMTP mail server
    Supanet Mail Settings
    The Supanet email service allows you to use POP3 and SMTP servers for accessing your Supanet mailbox.
    Supanet Incoming Mail Server (POP3) - pop.supanet.com (port 110)
    Outgoing Mail Server - use your local ISP SMTP mail se
    AT&T SMTP IMAP Server
    smtp.att.yahoo.com
    SSL Port 465
    imap.att.yahoo.com
    SSL Port 993
    Iphone POP/IMAP Setup
    Although I am sure it is out of scope for HP to assist with iPhone setup with mail, contact, calendars, etc so here is a PDF with pictures and a walkthrough from:
    https://www.millikin.edu/it/services/HandH/Documents/iPhone%20IMAP%20POP%20Setup.pdf 
    This hyperlink seems inactive so you may have to copy and paste for a direct walkthrough of this comprehensive pdf.
    Lastly if the above information is incorrect or does help, here is one last website to provide you with a complete list that I found located at att.com to assist their customers trying to setup emails in conjunctions with their apps.
     Popular POP and IMAP e-mail providers and their incoming server names
    http://www.wireless.att.com/support_static_files/KB/KB5892.html
    SUBJECT:
    Popular POP and IMAP e-mail providers and their incoming server names
    What are the AT&T outgoing (SMTP) server names?
    SYMPTOM:
    ISP E-mail servers
     E-mail
    ADVISORY:
    This information has been retrieved from the proper e-mail provider support pages. This is not an exhaustive list, please refer to your e-mail provider for additional information and compatibility.
    FIX:
    Outgoing Servers
    AT&T outgoing SMTP server policy
    Incoming Servers
    Users must contact their e-mail service providers for server addresses not included in this list.
    Incoming POP3 server uses default port of 110.
    Incoming IMAP4 server uses default port of 143.
    When using SSL (Secure Socket Layer):
    The incoming POP3 port needs to be set to 995.
    The incoming IMAP4 port needs to be set at 993.
    Internet Service Provider (ISP)
    Incoming Server Address
    Username
    Port
    1and1.com
    POP: pop.1and1.com
    IMAP4: imap.1and1.com
    More information at 1and1.com Article.
    full e-mail address
    POP3: 110
    IMAP4: 143
    Adelphia
    mail.adelphia.net
    username only
    POP3: 110
    Airmail.net (Internet America)
    pop3.airmail.net
    username only
    Alltel.net
    (See Windstream)
    Ameritech (at&t Yahoo!)
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    AOL (America Online)
    Instructions and Disclaimer
    username only
    IMAP4: 143
    AIM Mail
    Instructions and Disclaimer
    username only
    IMAP4: 143
    AT&T Broadband Internet (ATTBI)
    mail.attbi.com
    AT&T Worldnet
    ipop.worldnet.att.net
    -or-
    ipostoffice.worldnet.att.net
    Informational only:
    AT&T WorldNet e-mail may not be accessible from any device e-mail client due to firewall restrictions implemented by AT&T WorldNet.
    See alternatives for accessing AT&T WorldNet:
    - Former AT&T Wireless customers
    - New and Existing AT&T wireless services customers
    full e-mail address
    POP3: 995 uses SSL
    Bell Atlantic (Verizon)
    pop.bellatlantic.net
    Bell South
    mail.bellsouth.net
    username only
    Cable One
    mail.cableone.net
    More information at Cable One.
    username only
    Cablevision
    mail.optonline.net
    username only
    Charter
    pop.charter.net
    username only
    Clearwire
    mail.clearwire.net
    More information at Clearwire Article.
    full e-mail address
    POP3: 110
    Comcast
    mail.comcast.net
    More information at Comcast Article.
    username only
    POP3: 110
    ComNetcom.net (Earthlink)
    pop.comnetcom.net
    Compuserve Classic
    pop.compuserve.com
    Compuserve
    imap.cs.com
    username only
    Concentric
    pop3.concentric.net
    Coqui (Puerto Rico)
    pop.coqui.net
    Covad
    pop3.covad.net
    More information on support article.
    full e-mail address
    POP3: 110
    Cox Central
    pop.central.cox.net
    More information at Cox Article.
    username only
    POP3: 110
    Cox East
    pop.east.cox.net
    More information at Cox Article.
    username only
    POP3: 110
    Cox West
    pop.west.cox.net
    More information at Cox Article.
    username only
    POP3: 110
    Cox Business
    pop.coxmail.com
    More information at Cox Business Article.
    full e-mail address
    POP3: 110
    Earthlink
    pop.earthlink.net
    full e-mail address
    POP3: 110
    Eudora
    mail.speakeasy.net
    Excite
    pop3.excite.com - Requires "Premium/Gold" subscription for POP3 access. More information at Excite.com Article.
    full e-mail address
    POP3: 110
    Flash (SBC Yahoo!)
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    Gmail (Google Mail)
    Instructions and Disclaimer
    full e-mail address
    POP3: 995 uses SSL
    Go Daddy.com
    pop.secureserver.net
    More information at Go Daddy.com Article.
    full e-mail address
    POP3: 110
    Grande
    mail.grandecom.net
    More information at Grande Article.
    username only
    POP3: 110
    GTE.net (Verizon)
    mail.gte.net
    Hughes Direcway
    mail.hughes.net
    More information at Hughes Direcway Article.
    full e-mail address
    POP3: 110
    Ix.Netcom.com (Earthlink)
    pop.ix.netcom.com
    Insight Broadband
    mail.insightbb.com (SSL must be enabled for remote access)
    More information at Insight Broadband Article.
    username only
    Juno
    POP3/IMAP4 is not available.
    More information on support article.
    Lightfirst (Avenew)
    inmail.lightfirst.com
    Mac.com (Apple Computer)
    mail.mac.com
    POP3 access will not work with "alias" accounts.
    More information at Mac.com. Related articles 25275, 51729, and 86685.
    username only
    POP3: 110
    IMAP4: 143
    Mail.com
    pop1.mail.com
    POP3: 110
    Mediacom
    mail.mchsi.com
    More information at Mediacom Article.
    full e-mail address
    POP3: 995 uses SSL
    MEdia Net
    POP3 access is currently not available to MEdia Net e-mail accounts. Please access MEdia Net e-mail through the device browser.
    POP3: 110
    Mindspring (Earthlink)
    pop.mindspring.com
    full e-mail address
    POP3: 110
    mMode
    pop.mymmode.com
    username only
    POP3: 110
    MSN
    pop3.live.com
    For subscribers that use (and pay for) MSN as their Internet Service Provider, MSN provides POP3 access to their e-mail. More information on configuring e-mail applications, see Microsoft Article 930008.
    Alternatives for accessing MSN from a mobile device:
    - Former AT&T Wireless customers
    - New and Existing AT&T wireless services customers
    full e-mail address
    POP3: 995
    uses SSL 
    MSN Hotmail
    MSN Hotmail is a HTTP e-mail service so a POP3 server name is not offered by MSN Hotmail. While some 3rd party e-mail servers allow access to Hotmail accounts, this may put e-mail security at risk. AT&T will not house 3rd party e-mail server information.
    Alternatives for accessing MSN Hotmail from a mobile device:
    - Former AT&T Wireless customers
    - New and Existing AT&T wireless services customers
    NetAddress or Usa.net
    pop.netaddress.com
    POP3: 110
    Network Solutions
    mail.yourdomain.com
    Network Solutions Support Page
    full e-mail address
    POP3: 110
    NetZero (United Online)
    pop.netzero.com
    NetZero E-mail Support Page
    username only
    POP3: 110
    Netscape
    pop3.isp.netscape.com
    Netscape E-mail Support Page
    full e-mail address
    POP3: 110
    NVBell (SBC Yahoo!)
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    OptOnline
    mail.optonline.net
    OptOnline Support Article
    username only
    PacBell (SBC Yahoo!)
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    PeoplePC
    mail.peoplepc.com
    - or -
    pop.peoplepc.com
    PeoplePC Support Article
    full e-mail address
    POP3: 110
    Pipeline (Earthlink)
    pop.pipeline.com
    POP3: 110
    Prodigy (SBC Yahoo!)
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    Qwest in Albuquerque, New Mexico
    pop.albq.qwest.net
    POP3: 110
    Road Runner
    pop-server.xxxx.com
    "xxxx" equals the users e-mail domain, which can be in the region format ("cfl.rr" for Central Florida or "nyc.rr" for New York City) or simply "roadrunner". The domain can be found after the @ symbol in the e-mail address i.e. [email protected] or [email protected]
    Road Runner Support Pages - Choose the appropriate region/state and select the Help menu to locate e-mail settings as they are different based on each region/state.
     username only
    POP3: 110
    sbcglobal.net
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    snet.net
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    Surewest
    pop.surewest.net
    More information at Surewest Article.
    full e-mail address
    POP3: 110
    swbell.net
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    Verizon
    incoming.verizon.net
    username only
    POP3: 110
    Verizon (custom server)
    pop.verizonemail.net
    POP3: 110
    Verizon (Yahoo! Mail)
    incoming.yahoo.verizon.net
    More information at Verizon Yahoo! Article.
    full e-mail address
    POP3: 110
    wans.net
    pop.att.yahoo.com
    More information on support article.
    full e-mail address
    POP3: 995
    uses SSL
    Websitepros
    Server information varies on product.
    Contact Information
    Windstream
    pop.windstream.net
    More information on support article.
    full e-mail address
    POP3: 110
    Yahoo!
    pop.mail.yahoo.com - Requires a monthly subscription fee for POP3 access.
    More information on support article.
    See Alternatives for accessing Yahoo! E-mail:
    - Former AT&T Wireless customers
    - New and Existing AT&T wireless services customers
    username only
    POP3: 995
    uses SSL
    Yahoo Small Business
    pop.bizmail.yahoo.com
    "Forwarding" must be disabled and "POP access" must be enabled. Yahoo Small Business Support Page
    SPAM/Bulk folders should be emptied if receiving errors occur.
    full e-mail address
    POP3: 110
    If you are viewing information on devices or services, please note: content reflects instructions for devices and services purchased from AT&T. Some differences may exist for devices not purchased from AT&T.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!
    This question was solved.
    View Solution.

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • What else to try? I've tried these steps to get Flash to work

    I'm running Vista Ultimate 32 bit, with IE9. I've had flash on my computer for years. Current version is 10.3.183.10. Yesterday it stopped working. Web pages are saying that I need to download Flash. Used your uninstall utility to remove what I had. Restart. Download again. The animation comes up and says it's successful. If I opened a new tab on the browser and tried to play a clip, it worked. When I closed browser and reopened, it would not work. Got the same message that I needed Flash. Repeated this many, many times. I installed as Administrator. I disabled firewall and all active programs while doing this.
    I downloaded uninstall utility and install file to desktop and tried to install from there. Didn't work. Active x was not checked in Security, so that wasn't the issue.
    In toolbar extensions, Shockwave Flash is enabled. Java is enabled. Java Script has scripting enabled in security tab.
    I checked "use software rendering instead of GPU rendering."
    In Control Panel there is an icon for Flash that says Flash Player settings Manager. It says allow sites to save information on this computer.
    Under Programs and Features, it shows Flash is installed.
    Under Windows, System 32, Macromed, Flash here are the files that show up:
    Flash Player Trust              8-21-2011  File Folder        
    Flash 10x.ocx                    9-27-2011  Active X Control    6,235 KB
    Flash Install                       9-27-2011  Text Document       143 KB
    Flash Util 10x_Activex.dll    9-27-2011  Application Exten    322 KB
    FlashUtil10x_Activex          9-27-2011   Application             238 KB  
    install                                4-10-2010  Text Document         37 KB
    When I tried to go to http://www.adobe.com/software/flash/about/   at the top of the page is says " an error occured while processing this directive."  I tried many times.
    This appears on one of your pages: Is your Flash Player a debugger version, video capable, audio capable, and local File input/output enabled? The following displays the type of Flash Player version that this browser is running, and its capabilities. Usually, only developers creating content for Flash Player require this information: Content on this page requires a newer version of Adobe Flash Player.  You're OWN page requires an update!
    I have been to every page and have tried everything I have read in the posts. When I tried to sign in to post this, my computer went into a frenzy opening new tabs that alternately flashed "adobe.com" and "Redirecting" and tried to access adobe.com/cfusion/entitlement/index.cfm?e=ca&returnurl (then I couldn't read the rest. It wouldn't stop. I had to use control, alt, delete to get out of it. I had to open Chrome to sign into this forum.  Flash works in Chrome, but it's built in, right. What is going on with IE?
    Common, Adobe, how about some help (with no charge!) for the legions of us that can't get your program working properly? We would be ever so grateful to get our lives back!

    I thought maybe I could download Flash Player to my computer through Chrome, but since it's integral in Chrome that didn't work. I used the uninstall flash. I did a system restore. I ran Microsoft Essentials and current Spybot with no issues except a few cookies. I cleaned up hard drive of unused programs, and all temp files. I ran "temp", "%temp%", and "prefetch" and emptied the recycle bin. I restarted, and downloaded flash again. If I opened a new tab on the same browser, I could play clips. If I closed the browser and reopened, Flash Player would not work, it was not recognized. When I tried to sign in to the forum on IE, the browser did this crazy thing again switching tabs furiously from "adobe.com" to "redirecting" to "blank page." It finally crashed the browser again on a blank page, and a control, alt, delete was necessary.
    I then tried the malwarebytes utility that Chris suggested. It did pick up some issues, and the free version only fixed some, so I purchased a downloaded version and ran it. FLASH PLAYER NOW WORKS!
    However, when I tried to sign in again to this forum IE, it still does that wild cycling tab thing. I tried several times more with no luck. So I am only able to login through Chrome. I can live with that.
    Obviously we don't know what caused the issue, ( whenever you closed the browser window from which you downloaded, it would never again recognize that flash player was installed. )
    I am THRILLED that I can finally walk away from my computer for awhile! My family missed me!
    Thanks, Chris and Carl!

  • What are worthy upgrades for my mid-2009 MBP?

    My 13in Macbook Pro is coming to the end of its AppleCare warranty and is currently in the shop for freezing issues. The thing ran great when I first got it but its really starting to show its 3 y/o age now. I have six more years of graduate school/training to do and I hope to use this laptop as long as possible but I'm wililng to make minor upgrades. With that, which of the following things do you think would upgrade speed/functionality
    It's the mid-2009 13in MBP with:
    2.53ghz Core 2 Duo
    4gb ram
    250gb HD at 5400rpm
    The obvious things to me are the 4gb ram and 5400rpm hard drive. I could go up to 8gb ram (I like a lot of windows open) or get an SSD drive. I want an upgrade option that will signficantly improve the performance.
    Thanks for any advice!

    OWC offers what they call a "data doubler" http://eshop.macsales.com/Search/Search.cfm?Ntk=Primary&Ns=P_Popularity%7c1&Ne=5 000&N=7854&Ntt=data+doubler
    It is a mount that you can use to replace your MBP's optical drive with a hard drive.  What I would recommend is installing a smaller less expensive SSD and moving your current HDD (or a newer larger traditional HDD) over to your optical drive's spot.  They also make conversion kits to turn your superdrive into an external USB optical drive.  You're computer is most likely out of warranty, but it wasn't this would certainly void your warranty.
    My personal disclaimer, only endevour to upgrade something you're completely comfortable executing.

  • Problem with application.cfm

    I'm just getting back into coldfusion after a few years...and
    i'm already running into a problem with the application.cfm
    What could cause this simple error when I try to go to a
    coldfusion page (the cfm page would load prior to adding the
    application.cfm). Also, can the application name be pretty much
    anything? Thanks!
    "unknown context error reached at the end of the CFML
    templateInvalid expression format. The usual cause is an error in
    the expression structure. The last successfully parsed CFML
    construct was the CFML template beginning occupying document
    position (1:1) to (1:1)."

    What are your Operating System, Coldfusion version and web
    server? What happens when you experiment with an application file
    as simple as this one?
    Application.cfm
    =============
    <cfapplication name="myApp"
    applicationtimeout="#createtimespan(1,0,0,0)#"
    sessiontimeout="#createtimespan(0,0,20,0)#"
    sessionmanagement="yes"
    setclientcookies="yes">

  • Using Session Variables for User Login - sometimes they don't persist... what am I doing wrong?

    Hi all,
    I'm running a site that requires user login.  I approached the building of this site as almost a complete newb to CF (and dynamic coding in general), and it's been a great learing experience (with lots of help from you guys).
    However, I guess I never learned the correct way to handle a user login.  It seemed to me that I could just test the user-entered credentials against those stored in a database, then set a session variable containg that user's record number.  Then, not only would I have an easy way of knowing who this user was and therefore what info to serve him, but I could test for the existence of a valid login on every page in the protected folder, by adding this code to my application.cfc in that folder:
    <cfset This.Sessionmanagement=true>
    <cfset This.Sessiontimeout="#createtimespan(0,8,0,0)#">
       <cfif NOT isDefined ("session.username") or NOT isDefined ("session.password") or NOT isDefined ("session.storeID")>
         <cflocation url="../index.cfm" addtoken="no">
       </cfif>
    ...and it goes on to run a query and verify that the session.username and session.password match for the store defined by session.storeID.  If not, all session variables are cleared and it bounces you back to the login page.  When the user clicks Logout, all I do is delete all the session variables.
    This seemed to work great for like a year, but lately I've been getting reports that the login doesn't seem to persist for longer than approx. 20 minutes of inactivity.  You can see I specified session variables to remain active for 8 hours (I know that seems like a drastically long login, but it's what's necessary for this application).  I've only gotten this report from a few people, and I myself can't seem to duplicate it... I've tested an inactive login for 45 minutes now and it held.
    SO:  any reason you can think of why session variables would be spontaneously clearing for some people?  Would having your router reset its IP address invalidate the session or something?  Also, the problem seemed to begin appearing after my host upgraded all their servers to CF9... could there be any relation?
    And on a more general note... did I go about this completely the wrong way to begin with?  If so, what's the standard way to manage a login?
    Lots of questions, I know... thanks very much for any answers or suggestions!
    Joe

    Ian,
    Thanks very much - very helpful information.
    Sounds like passing the tokens in every request is probably the way to go for this.  I don't think it's likely that any users will be sharing links, unless they actually intend for the recipient to see their info anyway.
    Is that all I would have to do, is add the tokens to every path?  Would that guarantee that all the session variables would remain valid until timeout or being cleared?
    Again, thanks, you've been really helpful.
    Joe
    On Jun 23, 2010 4:37 PM, Ian Skinner &lt;[email protected]&gt; wrote:
    Unfortunately this is the nature of HTTP web applications.  There is NO state maintained from HTTP request to request.  This is by design in the HTTP protocol specifications.
    ColdFusion provides two methods to circumvent this limitation.  Each method has limitations and caveats.  They both rely on the passing of tokens between the client and the server with every request.  These tokens can be passed as cookies OR URL (GET) variables.  You are using the cookie method, which is the simpler and most common. You may be experiencing the limitation of this method.  If something happens to the cookies the session can be lost.
    You could pass the (CFID &amp; CFTOKEN) OR JESSIONID tokens through the URL query string with every request.  This requires one to add these values to every link, form action, cflocation or other request path in our application.  ColdFusion provides the session.urltoken variable to make this easier to do.  The tokens will be visible to the user.  Also if the links with an individual token is share with other users, via e-mail, chat, social networks, etc and one of these users utilize the link during the life of a session (8 hours apparently in your case).  Then that user will access the session of the original user.
    Cookie session management is by far the most common choice by CF developers.  If these methods do not meet your needs you would need to go beyond the HTTP limitations of web applications.  One might be able to accomplish this with a Flex|Air|Flash applications that can be configured to use a continuous connection to the server.  Thus not suffer the stateless nature of the normal HTTP request-response cycle.
    I do not know if a router resetting would cause cookies to be discarded or otherwise invalidated.  But I would not think it is beyond the relm of possibilities.

Maybe you are looking for

  • How to transfer data from one table to another without duplicates

    This is what I use to quote bathroom remodels. The first thing I do is completely fill in the Master Item List with every Product or Service we can think of to do the project. The Type column has a pop-up menu which includes Combo because some Contra

  • Firefox hangs while loading pages.

    When loading a new page (not always in a new tab, not always an additional tab or tabs, but it seems to happen more when opening multiple tabs) the little rotating circle will either remain dark and if an attempt is made to reload the location bar ch

  • Performance issue of Concurrency in TimesTen

    Hi, Our project is to test the performance of TimesTen. But we found performance issue when multi processes run concurrently. [Product Version] OS: HP-UX B.11.11 U 4CPU Oracle DB: 9.2.0.4 ?? TimesTen: 7.0.2 [Deployment Description] Oracle DB and Time

  • Acrobat 9 Pro: Open all documents in same window - don't want!!

    In Acrobat 7 there was a setting under Edit/Preferences/Documents that said "Show each document in its own window" I had this unchecked. I can't find this setting in 9, there is no such option (at least what I can find). I don't want all documents in

  • TS3694 my itunes wont connect with the apple server

    my itunes wont connect to apple servers, since i got new windows 7 pc, i keep getting an error message half way through A SYNC OR EVEN WITH NONE OF MY DEVICES ATTACHED, it wont connect, error says to check my connection and try again, but my conectio