Running JPDA on several VMs

i read that you could connect to several VM's running JPDA at the same time. I think this is rather a dumb question, but I just want to confirm, as I'm a newbie to the JPDA . . . I guess each VM would have to ahve it's own port number for the server side debugger stuff? Is this right?

Oops - that last post ended prematurely due to this wiki editor not understanding xemacs key bindings :-)
As I was saying before I was rudely interrupted...
Actually, this is not a dumb question at all. JPDA supports two modes of operation:
a- a debugger listens for incoming connections from debuggees
In this case, the debugger will use a JDI ListeningConnector to listen for incoming connections at
some transport address, say xxx, and the debuggees will be started with options such as
-agentlib=jdwp:transport=dt_socket,address=xxx,server=n,... ...
b- a debuggee listens for an incoming connection from a debugger.
In this case, the debuggee is started in 'server mode':
-agentlib=jdwp:transport=dt_socket,address=xxx,server=y,... ...
And the debugger uses a JDI AttachingConnector to attach to address xxx.
See http://java.sun.com/javase/6/docs/technotes/guides/jpda/conninv.html
for more info.
Now, on to your question at last :-)
Some transports support mulitple connections as specified in the above
doc page. In the current JDK from Sun, only the socket transport does so.
This means that if you use the socket transport then if you use method a-
shown above, then multiple debuggees could connect to your debugger,
all using the same address, xxx.
However, if you use method b- above where the debuggee is the transport 'server',
then you are correct that each debuggee needs a separate transport address at
which to listen for connections from debuggers.
HTH

Similar Messages

  • I can't find the mac app store on my imac. i am running snow leopard, and i have run "update software" several times. what's up?

    I am trying to upgrade to Lion. I need to go through Mac App store to buy it. I need to get the Mac App store icon in my dock. I have run Update Software several times, trying to get the Mac App store onto my iMac, but with no luck. It doesn't show up in the dock, it doesn't show up in Finder under Applications, and it doesn't show up when I search in Searchlight for App Store, Store, Mac App Store, etc. What am I doing wrong?

    I am running snow leopard
    James....
    You arne't necessarily doing anything wrong.
    Install the Mac OS X 10.6.8 Update Combo
    That should reinstall the App Store for you.
    Restart your Mac after the combo is finished installing.
    You should see the App Store icon in the Dock and be able to access from your Apple menu also.
    Make sure your Mac meet's Lion's requirements

  • How to run a query several times?

    Hi all,
    Anyone has a clue for the following situation:
    We have made a query (on the web) with several characteristics and key-figures. One of the characteristics has unique values that occurs only once (something like numbers for documents in R/3). The query was build with only one user-input variable based on this characteristic. The query was build especially for printing and fits exactly on a A4-paper.
    We would like to give the end-user a tool in which he/she can store several values for the characteristic. On the basis of these stored values the system has to run the query several times.
    Something for the Reporting Agent or is there an other solution?
    Thanks in advance,
    Henk.

    hi Henk,
    'control query' in few words is to filter data with combination of characteristic value.
    http://help.sap.com/saphelp_nw04s/helpdata/en/6e/b5663a5fb46752e10000000a11402f/frameset.htm
    Control Query for Pre-calculating Web Templates
    Definition
    A control query is a help query that you execute before you execute the queries in the Web template, and use the result to parameterize the Web template.
    Use
    You can specify a control query as significant information in the Reporting Agent settings for a Web template. When you specify a control query, the system does not pre-calculate the Web template itself, but a number of filtered views from the Web template.
    We particularly recommend this procedure when wanting to calculate several Web templates only distinguished by their filter values in one swoop.
    Using a control query in particular allows you to formulate complex selection criteria for the data to be pre-calculated.
    Pre-calculate only the TOP50 customers, whose data is frequently requested, for example.
    Structure
    A very simple query, which contains exactly those characteristics in the drilldown in the rows according to which the Web template will be filtered, is particularly suitable as a control query. Every row in the table that a control query delivers, subsequently serves as a dynamic filter for the Web template views.
    The respective combination of characteristic values is used as a filter for the Web template Data Provider for each table row. The background run produces pre-calculated data records, in actual fact one data record for each table row that delivers a control query.
    If a characteristic does not appear in a view, the filter value is ignored.
    In addition, you automatically get only those filter value combinations, for which data exists in the InfoCube used to define the control query.
    Example
    A typical application of this approach for pre-calculating a Web template is with cockpit applications, since they are controlled mainly through selection lists and no real OLAP navigation is necessary.
    You can also use a control query for filtering when pre-calculating Crystal reports queries. You can find additional information under Defining Crystal Reports Queries Settings.

  • I am running Windows XP, SP3. I have tried to run Firefox 4 several times but it doesn't work properly. The main page comes up showing the logo, below that is the search box, and below that is another box with nothing in it.

    I am running Windows XP, SP3. I have tried to run Firefox 4 several times but it doesn't work properly. The main page comes up showing the logo, below that is the search box, and below that is another box with nothing in it.

    The external DVD/CD Writer will Not appear on your desktop when you attach it to your iMac.  It will appear in "Finder", which is in your Dock.
    Hope this helps

  • SharePoint publishing website runs wrong after several days, but return correct after reset IIS

    SharePoint publishing website runs wrong after several days, but return correct after IISReset.
    I have a custom solution on this publishing site, which looks up sharepoint resources, I've changed 
    "List View Lookup Threshold" up to 50 in resource throttling, but this keep occurs sometimes.
    could you give me some clue to solve this permanently?
    Thanks very much in advance!
    ~Rosone

    I am sure you are using BLOB cache. Try to disable it and check. I have seen this issue with BLOB cache.
    Do we see some error in ULS logs and Event viewer
    Use fiddler and check if there is something like 404.
    Try below tool on your code
    https://spdisposecheck2012.codeplex.com/
    If this helped you resolve your issue, please mark it Answered

  • Running jobs as severent users

    The job I am creating in the Job Scheduler needs to run SQL as several different users. I have heard that 11g will allow this. However I am wondering whether there is any way to do it in 10gR2. I have tried to embed a CONNECT user/password within the PL/SQL block as EXECUTE IMMEDIATE and stand alone. Nothing seems to work. Does anyone have any suggestions on a way to do this before 11g?

    Hi,
    The Scheduler can run stored procedures and pl/sql blocks but it runs all PL/SQL as the job owner. The limitation of not being able to run different SQL as different users is a PL/SQL limitation.
    There is a workaround however. For each SQL that needs to run as a particular user create a PL/SQL stored procedure in that user's schema . By default (do not use the authid current_user clause) these stored procedures run with the privileges of their owner. Then grant execute on these stored procedures to the job owner. Now the job owner can call any of these procedures when he needs to run SQL as another user.
    One thing to watch out for is that stored procedures do not use role privileges , so do not rely on role privileges in your SQL statements.
    This should do what you need.
    Hope this helps,
    Ravi.

  • Export current running configs from several devices

    We are currently running LMS 4.0 and have been collecting running configs on several of our devices.  Is there a folder that retains the running configs or do I need to run a report and export from the report?  If a report what report do I run.  I have been digging into the interface and I am not finding a solution so any assistance would be great.

    CSM event viewer supports events from the ASA/FWSM virtual contexts ony if each context is discovered in CSM configuration manager with separete mangement IP.
    Please try to discover the contexts as independent devices with separate management IP.

  • Is there something wrong if I run language import several time?

    Is there something wrong if I run language import several time? For supplementation I am sure but for import not

    Hi Tina ,
                       You can import many times. If you have any test system try to import basis patch on it and import language pack.
    Regards,
    Hari.

  • AttachCurrentThread fails when several VMs running in different threads

    Hi,
    I would like to build an application that runs several JVMs in parallel. I'm using Java6 and according to the JNI specs this should be possible as long as each VM instance is running in a separate thread.
    In the below mentioned demo application two threads are created. Both instantiate a VM (which works well). But only one thread seems to be able to run AttachCurrentThread. When AttachCurrentThread is called for the second one I get the following error:
    # An unexpected error has been detected by Java Runtime Environment:
    #  SIGSEGV (0xb) at pc=0x080486ae, pid=1428, tid=3035118512
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # C  [jvmthreads+0x6ae]But because one thread successfully instantiates a java class I think that the basic code structure is OK. It seems to be a threading issue. My application looks as follows:
    #include <stdlib.h>
    #include <jni.h>
    #include <pthread.h>
    #define USER_CLASSPATH "myclasses.jar"
    #define CLASS_NAME "com.foobar/DummyRtbosFiller"
    JavaVM* JavaThreads_createJVM(){
         JNIEnv *env;
        JavaVM *vm;
        jint res;
        setenv("JAVA_VM_VERSION", "1.5", 1);
    //    setenv("JAVA_VM_VERSION", "1.5", 0);
        JavaVMInitArgs vm_args;
        JavaVMOption options[7];
        options[0].optionString = malloc(3000*sizeof(char));
        sprintf(options[0].optionString, "-Djava.class.path="USER_CLASSPATH);
        options[1].optionString = "-Xmx64m";
         int enableRemDebugging = 0;
         if(enableRemDebugging){
             printf("enable remote debugging");
              // intellij remote debugging support
              options[2].optionString = "-Xdebug";
              options[3].optionString = "-Xnoagent";
              options[4].optionString = "-Djava.compiler=NONE";
              options[5].optionString = "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=34343";
              vm_args.nOptions = 6;
         }else{
              vm_args.nOptions = 2;
         vm_args.options = options;
        vm_args.version = JNI_VERSION_1_4;
        vm_args.ignoreUnrecognized = JNI_TRUE;
        /* Create the Java VM */
        res = JNI_CreateJavaVM(&vm, (void**)&env, &vm_args);
        printf("java started.\n");
         return vm;
    * \brief Shuts down an existing java virtual machine.
    * \param jvm Pointer to the jvm to be destroyed.
    * This method is used to shut down an existing java virtual machine.
    int JavaThreads_destroyJVM(JavaVM *jvm){
    //     JNIEnv *env = getAttachedEnv(self, jvm);
    //     if ((*env)->ExceptionOccurred(env)) {
    //        (*env)->ExceptionDescribe(env);
          // detach the current thread from the vm
        (*jvm)->DetachCurrentThread(jvm);
        (*jvm)->DestroyJavaVM(jvm);
         return 0;
    * \brief Attaches the current thread to a given vm instance
    * \param self Pointer to bbcm-instance
    * \param jvm Pointer to the jvm use for attachment
    * This method is used to attach the current thread to a given vm instance
    JNIEnv* getAttachedEnv(JavaVM *jvm){
         JNIEnv *localEnv = NULL;
         int envErr = 0;
         /* get a local java env */
         envErr = (*jvm)->AttachCurrentThread( jvm, (void**)&localEnv, NULL );
         if ( envErr != 0 ){
              if ( (*localEnv)->ExceptionCheck( localEnv ) == JNI_TRUE ){
                (*localEnv)->ExceptionDescribe( localEnv );
         if((*localEnv)->ExceptionOccurred(localEnv)){
             (*localEnv)->ExceptionDescribe(localEnv);
         if (localEnv == NULL) {
            printf("ERROR: failed to get ENV pointer in pushContext");
              //  JavaThreads_destroyJVM(jvm);
            return (JNIEnv*) NULL;
         return localEnv;
    * \brief Create a new instance of the transcriber application
    * \return Pointer to the java object
    * This method is used to create a new instance transcriber application
    jobject startJavaSubSystem(JavaVM *jvm, char* argString){
        printf("attaching env pointer.\n");
         JNIEnv *env = getAttachedEnv(jvm);
        printf("thread attachment done.\n");
         jclass cls;
         jmethodID mid;
         jobject transcriber;
         cls = (*env)->FindClass(env, CLASS_NAME);
        if (cls == NULL) {
            JavaThreads_destroyJVM(jvm);
         jstring jArgumentString = (*env)->NewStringUTF(env, argString);
        mid = (*env)->GetMethodID(env, cls, "<init>", "(ILjava/lang/String;)V");
         if (mid == NULL) {
            JavaThreads_destroyJVM(jvm);
        printf("starting object instantiation\n");
        (*env)->NewObject(env, cls, mid, 1, jArgumentString);
         return transcriber;
    void startJavaThread(char* arg){
         JavaVM *jvm;
        printf("create a jvm instance for component '%s'\n", arg);
         jvm = JavaThreads_createJVM();
        printf("attempting to start component '%s'\n", arg);
        startJavaSubSystem(jvm, arg);
        printf("component '%s' started !\n", arg);
        // sleep forever to keep the thread alive
        sleep(10000);
    int main(int argc, char **argv) {
          pthread_t thread1, thread2;
          /* Create independent threads each of which will instantiate a java VM. */
         int iret1 = pthread_create( &thread1, NULL, startJavaThread,  (void*) "test47");
         sleep(1);
         int iret2 = pthread_create( &thread2, NULL, startJavaThread, (void*) "test48");
         pthread_join( thread1, NULL);
         pthread_join( thread2, NULL);
         printf("Thread 1 returns: %d\n",iret1);
         printf("Thread 2 returns: %d\n",iret2);
         return 0;
    }What could be my mistake?
    Any help (links, docs, ideas) is welcome.
    Best regards, Holger

    You're right. I got confused by the specs of JNI_GetCreatedJVMs:
    JNI_GetCreatedJavaVMs function returns all virtual machine instances
    that have been created in the current process.But unfortunately you're completely right (cf. http://java.sun.com/javase/6/docs/technotes/guides/jni/spec/invocation.html#wp9502 )
    As of JDK/JRE 1.2, creation of multiple VMs in a single process is not supported.Nothing seems to have changed since then. :-(
    thanks for the help, bg, holger

  • Connecting to SCVMM remotely via install on workstation cannot run console windows to VMs (locally on scvmm it works)

    We recently installed a SCVMM 2012 machine and connected it to a few HyperV2012 hosts.
    From the SCVMM console locally on the machine it is installed on, I can connect to the Console of the VMs on the remote HyperV machines.  However for some reason when I run it remotely from my workstation, I can connect to SCVMM just fine, but connecting
    to the console of the VMs gives me the error:
    Virtual Machine Manager lost the connection to the virtual machine for one of the following reasons:
    Another connection was established to the console of this manchine.
    The virtual machine has been shut down or put into the saved state.
    The user credentials do not have the necessary privilege to connect.
    0x0003, 0x0000
    The firewall is not detecting any dropped packets (I enabled logging) and I am logging in with the same user as I do locally to the SCVMM server, so it is not permissions.
    Any advice would be extremely helpful.  Thanks,
    Nicholas

    I also find a matching Success Security Audit for trying (even though it doesnt work):
    An account was successfully logged on.
    Subject:
    Security ID:
    NULL SID
    Account Name:
    Account Domain:
    Logon ID:
    0x0
    Logon Type: 3
    Impersonation Level: Impersonation
    New Logon:
    Security ID:
    DOMAIN\MyNonDomainAccount
    Account Name:
    MyNonDomainAccount
    Account Domain:
    DOMAIN
    Logon ID:
    0x156DC3A5C
    Logon GUID:
    {bcdbadca-0910-a383-c130-2b86551f6d33}
    Process Information:
    Process ID:
    0x0
    Process Name:
    Network Information:
    Workstation Name:
    Source Network Address:
    Source Port:
    Detailed Authentication Information:
    Logon Process:
    Kerberos
    Authentication Package:
    Kerberos
    Transited Services:
    Package Name (NTLM only):
    Key Length:
    0

  • Restriction on running Apex on Open VMS?

    Hi,
    I have a client that is looking at Apex but is unsure if it is available and supported under Open VMS. They are running 10g Rel. 1.
    The confusion comes from a text on the download page of Apex that says :
    Note: Oracle Application Express 3.0 is supported on all Standard and Enterprise Edition versions of the Oracle database, 9.2.0.3 and higher. We specifically support the following platforms:
    Linux x86
    Microsoft Windows (32-bit)
    Mac OS X Server
    Linux on Power
    Linux x86-64
    z/Linux
    Linux Itanium
    Solaris x86
    Microsoft Windows (64-bit Itanium)
    Microsoft Windows (x64)
    Solaris Operating System (SPARC) (64 bit)
    AIX5L
    HP-UX PA-RISC
    HP Tru64 UNIX
    HP-UX Itanium
    It does mention that Apex is supported on ALL versions of the database but OpenVMS is not listed.
    thanks

    Hi Yvan,
    APEX runs inside the database, so assuming you have a DB that meets the minimum version requirements you should be fine.
    Regarding the OHS/HTTP server, you do not have to install it on the same machine, in other words you could easily install a Windows or Linux version of the OHS/HTTP Server on another machine and point it at your APEX installation in the DB.
    One other think, as far as I'm aware there aren't that many other VMS users using APEX, so asking for clarification that it works might mean you have to wait a long time for someone to answer. So I'd suggest....can you not just try it yourself? (I'm pretty sure it should be fine given then previous requirements constraints).
    John.

  • My track pad highlights applications and files and then opens them without my doing anything. I run MacKeeper and having run the scan several times only get cleaning issues (5 -). Any ideas as MacKeeper Kromtech have not responded to my calls nor email.

    Folks
    I run an iMac. Today for some reason when I run the cursor across the screen applications and files are highlighted and then opened without me doing anything (no clicking etc) In fact print at times opens. As far as I can tell I have not changed any settings except to open firewall.
    I run MacKeeper and when I run a scan only a few cleaning items open. Safe and fast are as they should be. I run fix. If I again run the scan I get a few more but different claeing items to fix.
    I have rung MacKeeper several times without getting through. The occasion I did get through the bloke said he could not help and passed me to a higher authority. Needless to say the line dropped out after 30 minutes waiting.
    As it is the weekend and I do not live near an Apple store I am quite keen to get the problem identified and fixed so I can continue working.
    Your assistance please.

    Remove the "MacKeeper" scam product as follows. First, back up all data.
    "MacKeeper" has only one useful feature: it deletes itself.
    Note: These instructions apply to the version of the product that I downloaded and tested in early 2012. I can't be sure that they apply to other versions.
    IMPORTANT: "MacKeeper" has what the developer calls an “encryption” feature. In my tests, I didn't try to verify what this feature really does. If you used it to “encrypt” any of your files, “decrypt” them before you uninstall, or (preferably) restore the files from backups made before they were “encrypted.” As the developer is not trustworthy, you should assume that the "decrypted" files are corrupt unless proven otherwise.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A. The "MacKeeper" application is in the folder that opens. Quit it if it's running, then drag it to the Trash. You'll be prompted for your login password. Click the Uninstall MacKeeper button in the dialog that appears. All the functional components of the software will be deleted. Reboot.
    ☞ Quit MacKeeper before dragging it to the Trash.
    ☞ Don't empty the Trash. Let MacKeeper delete itself.
    ☞ Don't try to drag the MacKeeper Dock icon to the Trash.

  • Running domain controller as VMs on a hyper-v 2012 cluster

    Hi gurus
    I have a question. I want to run two VMs on a Hyper-v cluster. I want to make these VMs as domain controller and leverage the cluster. Can I do this? I have not been able find any information on this. The hyper-v is running on windows 2012, but it can be
    upgraded to R2 if there are any benefits associated with this.
    Any help will be appreciated.
    Regards

    Hi,
    Additional, you can deploy your DC on failover cluster, but we recommend that your clustered servers be member servers. If they are, you need an additional server that acts
    as the domain controller in the domain that contains your failover cluster.
    And same time, you should attempt to avoid creating potential single points of failure when you plan your virtual domain controller deployment. You can avoid introducing potential
    single points of failure by implementing system redundancy. For example, consider the following recommendations while keeping in mind the potential for increases in the cost of administration:
    1. Run at least two virtualized domain controllers per domain on different virtualization hosts, which reduces the risk of losing all domain controllers if a single virtualization
    host fails.
    2. As recommended for other technologies, diversify the hardware (using different CPUs, motherboards, network adapters, or other hardware) on which the domain controllers
    are running. Hardware diversification limits the damage that might be caused by a malfunction that is specific to a vendor configuration, a driver, or a single piece or type of hardware.
    3. If possible, domain controllers should be running on hardware that is located in different regions of the world. This helps to reduce the impact of a disaster or failure
    that affects a site at which the domain controllers are hosted.
    4. Maintain physical domain controllers in each of your domains. This mitigates the risk of a virtualization platform malfunction that affects all host systems that use that
    platform.
    The related KB:
    Hyper-V: Using Hyper-V and Failover Clustering
    http://technet.microsoft.com/es-es/library/cc732181(v=ws.10).aspx
    Running Domain Controllers in Hyper-V
    http://technet.microsoft.com/en-us/library/d2cae85b-41ac-497f-8cd1-5fbaa6740ffe(v=ws.10)#usn_and_usn_rollback
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Attribute Change Run terminating - repeated several times - not locked

    I had a failure in my master data chain tonight.  The attribute change run that ran yesterday ran for 11k seconds and was cancelled (it says manually). When the chain ran tonight, the process failed again.  I checked the log and it says "UNCAUGHT_EXCEPTION"  and it created a short dump.  I tried repeating to see if it did anything and it gave me the same message. 
    I went into the change run monitor and reset the status and manually tried to run the change run again.  Same result "UNCAUGHT_EXCEPTION".
    I then checked table RSDDAGGRMODSTATE and there was no blank CNSID entries, but there was a blank "completed flag" entry.  I don't have change access to the table in prod so I cannot manually change it to X (meaning closed). I reset the status again in the chagne run monitor and the record with the blank "completed flag" disappeared.  I repeated the change run and it failed again and a new record with the "completed flag" being blank appeared in the RSDDAGGRMODSTATE table.
    I checked SM12 and there are no locks there.  I'm on 7.0 so I can't manually right click on 0CUSTOMER and activate the master data either.
    As a last resort I did run the function module RSDDS_AGGR_MOD_CLOSE but that short dumped too. 
    Any ideas?  Please?  This will fail my other chains that have 0CUSTOMER in the aggregates.  Thanks.

    HI,
    Firstly try this FM RSDDS_AGGREGATES_MAINTAIN
    if not possible
    Try doing it manually
    Uncaught exception may come due to many reasons
    IN RSA1 go to tools  and select attribute change run
    Check the blog it shows you how to manually do attribute change run step by Step (for BI7.0 also)
    /people/debjani.das/blog/2009/03/30/attribute-change-run-acr
    Regards,
    MADhu.
    Edited by: MadhuMarupudi on Aug 21, 2009 5:49 AM

  • Firefox will download some of the new messages. Hang and eventualy say no new messages. Run again and several messages will download and mess up again.

    This happened some time after I cleaned up and deleted many old emails. The reason I did this is the system was really slow downloading messages.
    Shortly after that it would say I had 300 messages download a random number. 1,50,200 etc then stop. Saying no new messages.
    My server provider is ATT Uverse. I checked the mail server changing to the latest recommeded settings for the sbcglobal.net domain. Problem is still there.
    I configured Outlook on my computer for the first time. Outlook works perfectly. Thunderbird does not.
    I first noticed the problems a couple of weeks ago. Got worse after cleaning up old emails late last week.
    I have compacted all the folders and rebuilt the index. Tried safe mode worked once second try same problem.
    Stopping MCaFee did not help ether
    My system configuration is shown below.
    Application Basics
    Name: Thunderbird
    Version: 24.6.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20140610001341
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Crash Reports: about:crashes
    Memory Use: about:memory
    Mail and News Accounts
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    account3:
    INCOMING: account3, , (nntp) news-server.houston.rr.com:119, plain, passwordCleartext
    OUTGOING: smtp.att.yahoo.com:465, SSL, passwordCleartext, true
    account6:
    INCOMING: account6, , (nntp) msnews.microsoft.com:119, plain, passwordCleartext
    OUTGOING: smtp.att.yahoo.com:465, SSL, passwordCleartext, true
    account7:
    INCOMING: account7, , (pop3) inbound.att.net:995, SSL, passwordCleartext
    OUTGOING: smtp.att.yahoo.com:465, SSL, passwordCleartext, true
    account8:
    INCOMING: account8, , (nntp) news.houston.sbcglobal.net:563, SSL, passwordCleartext
    OUTGOING: smtp.att.yahoo.com:465, SSL, passwordCleartext, true
    Extensions
    Important Modified Preferences
    Name: Value
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    extensions.lastAppVersion: 24.6.0
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 17
    gfx.blacklist.suggested-driver-version: 257.21
    mail.openMessageBehavior.version: 1
    mail.winsearch.enable: true
    mail.winsearch.firstRunDone: true
    mail.winsearch.global_reindex_time: 1394331871
    mailnews.database.global.datastore.id: 82890a5d-bb66-4a10-85f9-0a92d79efdf
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1332557978
    places.history.expiration.transient_current_max_pages: 53638
    plugin.importedState: true
    plugin.state.java: 0
    plugins.update.notifyUser: true
    print.print_printer: \\TMEHRKAMDESKTOP\HP Photosmart C5200 series
    Graphics
    Adapter Description: Intel(R) HD Graphics Family
    Vendor ID: 0x8086
    Device ID: 0x0a16
    Adapter RAM: Unknown
    Adapter Drivers: igdumdim64 igd10iumd64 igd10iumd64 igdumdim32 igd10iumd32 igd10iumd32
    Driver Version: 10.18.10.3345
    Driver Date: 10-31-2013
    Direct2D Enabled: false
    DirectWrite Enabled: false (6.2.9200.16571)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 0
    AzureCanvasBackend: skia
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: none
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.2
    4.10.2
    NSS
    3.15.4 Basic ECC
    3.15.4 Basic ECC
    NSS Util
    3.15.4
    3.15.4
    NSS SSL
    3.15.4 Basic ECC
    3.15.4 Basic ECC
    NSS S/MIME
    3.15.4 Basic ECC
    3.15.4 Basic ECC

    Turning off Real Time Email Attachment scanning fixed the problem.
    I turned the Mcafee Fire wall back on and the plugin . Will experiment to see what if it is just the Attachment Scanning or if the other parts need to be disabled also.
    Thank you.

Maybe you are looking for

  • HP Officejet Pro 8500A Periodically resets itself

    About every 20 minutes the screen on my HP Officejet Pro 8500A goes blank, then redisplays, followed by the carriage shifting sounding like the printer is resetting itself to print a job.  I'm set up on a WiFi connection and have no screen blanking s

  • File Name for Proxy to File

    Hi experts, My Scenario proxy to file(FTP). Currently in my Sender Data Type Proxy one of the field holds the file name to be created at the FTP. Could anyone help me how to use that field data (name) to create the file(FTP) with that name? Thank you

  • ILife '08 on the MacBook...

    Hey, has anyone tried iLife '08 on a MacBook yet? How does it run? I use iPhoto '06 a lot at the moment but even that runs quite slowing...

  • Moved Photoshop Application to my Desktop for easy access and now recieving an error message, help?

    Installed CS6 Design and Web Premium, then moved Photoshop Application to my Desktop from Program Files for easy access and now recieving an error message, saying application is unable to start correctly. Can anyone help me troubleshoot this please?

  • How to open multiple worksheet by redirecting discoverer plus URL ?

    Hi, Version : Discoverer Plus 11g I am able to open discoverer report with report workbook and worksheet from my UI screen by redirecting its URL. This is done by providing URL input parameter opendbid (workbook id) & sheetid (worksheet id of the wor