How to mark ALBPM messages as non-persistent?

Hi,
When using the WLS JMS Server, persistence for the messages sent through the queue is not required since ALBPM uses the JMS Queue as a dispatching mechanism only. However, since the messages sent to the Queue are marked as “Persistent”, you must mark the Queue as “Store Enable”. This will allow the WLS JMS Server to accept messages that are marked as “Persistent”. Is there any setting by which we can make these messages as non-persistent so that queues don't have to be store enabled?
Regards,
Xavier

The idea behind this is to increase the speed by using non-persistent queue.
Please help.
Regards,
Xavier

Similar Messages

  • HT3529 On ipad3, wifi only, how can I send messages to non iOS users?

    On ipad3, wifi only, how can I send messages to non iOS users?
    I have MacBook, and iPhone 4 as well

    Your're wrong on the overly sensitive part. I couldn't care less about android or some other stuff that you are comparing, what i do care about... enough to take the time to explain, is that your view on things colors the choices you make.
    You clearly state your decision making process and the marketing is doing their work on you.
    You think in terms of comparisons and competitors and that will always get you. The truth is, I'm glad Apple finally focused on how "something makes you feel" with iOS 7. There is so much truth in that one sentence!
    There is so much noise out there about screen size, n core processors and price comparisons you can never get a good feel of what the product really is. By the time you figure out you were taken on a marketing hike, a new model comes out and the story starts all over again. (think of the nokia 40 megapixel camera, or the quad core samsung, those are exagerations to impress the consumer) Imagine the size of the jpg's on that phone, all those megapixels with the quality of a phone camera, ridiculous. Soon we will have 12-core phones with 7 inch screens, and people being led into thinking you can do everything on it, "one thing to rule them all", buy now! I saw a woman on the metro the other day with a 6' phone, I swear the thing was almost half the size of her head.
    It's almost 2014 and you are complaining you can't send sms(which is a 25 year old technology by the way) with this new device. All your friends are using outdated tech and because you want to talk to them you want outdated tech too. Sms is insecure, easily snooped upon and recorded, the carrier charges for it and charges more for international sms, and so on... and on... internet chat has been free since the 1990s and it's about time it got free on our phones too.
    Just forget about it. Enjoy other people taking the decisions, you can't take yourself, for you. Trust them, see if it fits, care about life, act emotionally when you "feel" like it. You deserve that, you are human, take the feeling home with you, share it with others.
    Who cares if it's the 2014 edition or quad core... I gave my old iPad 3 to my grandmother so I could call her on Facetime. I bought the iPad Air on a whim, I just "felt" I wanted it. After a couple of weeks she thought about asking me if she could call my brother in the UK too, and how much it would cost. I said it was free, and she looked at me in disbelief. She is now calling my brother weekly by herself... she is 78. Can you imagine that... all I did is give her my "old" iPad.
    Buying the iPad Air was the single best decision of my life, not because of the size or the weight or even iOS 7 (i do enjoy them by the way) but because it made me give my old iPad to my grandmother.
    She doesn't even understand how it works, I figured it would be too much useless stuff to mention... it just does! Here put your finger here and here, then tap the name... wait for him to answer. Unbelievable!!!
    PS. I figured the best gift I can make is give my old Apple devices to people who would never in a million years buy one for themselves. You see them in shops, they are our mothers and friends... they look at the huge prices and they would never give that much to themselves, they feel they don't deserve it. They gave me money to buy all the useless cr@p I ever wanted in my youth, the least I could do is gift them my "old tech" to enrich their lives. Going to buy a 5S soon and give my 4S to someone for free, but it's going to be someone I care deeply about, deeply enough to change their lives.

  • Difference between a persistent messages  and non persistent messages in JM

    Hi
    This question is with respect to persistent messages , and non persistent messages .
    As per the docs it says that for persistent messages the QueueSender.send() blocks until it recivies an acknowledgement .
    Here my question is what is the difference between a persistent messages , and non persistent messages
    Thanks in advance .

    The exact behaviour depends on the JMS provider being used. But since non-persistent messages are defined to be unreliable, the provider may indeed decide that it's not necessary for the server to acknowledge the receipt of a non-durable message from a producer.
    Nigel

  • How to mark email messages as Not Junk?

    When I look in the Junk email folder in Mac Mail, I see messages that I did not mark as junk mail.  I guess Mac Mail is somehow filtering and classifying the messages as junk.  Within the Junk folder, however, there are messages that are not junk.  How to I mark these items (and future messages from the same source) as not junk, so that they appear in my Inbox and not in my Junk folder?
    What I Think I Am Supposed To Do
    1. Open a message in the Junk folder that I do not want to be classifled as junk.
    2. By default, a "thumbs down" icon appears in the toolbar (View > Show Toolbar).  I click on thumbs down to mark the message as junk. The thumbs down icon changes to a "thumps up" icon.
    3. I click on the thumbs up icon to mark the item as not junk
    Is this the right thing to do?  When I do the above steps, the message remains in the Junk folder - it does not move my Inbox folder.  But will future messages from the same source go into my Inbox?
    Thanks

    In case other are having this problem: With Outlook.com email, I found that mark email items as Not Junk within Mac Mail had not effect.  Subsequent emails from the same sender still went into the Junk folder.
    I had to sign on to my Outlook.com email at www.outlook.com website and mark the emails there as Not Junk.  Subsequent emails from the same sender than arrived in my Mac Mail Inbox, as desired.

  • Marking a field as non-persistent?

    Hi folks,
    We've been building up a distributed data store that has a BDB at each leaf node. There are a few layers that our objects go through, and up until now we've been able to use our Entity objects directly throughout the code. They get serialized by RMI and make their way to our BDB nodes and get persisted by the DPL.
    But now we have a situation where we have a field that we want serialized (non-transient) so that it makes its way all the way through our system, but then not persistent when it reaches the DPL. (We also have a search index at each leaf, and this bit of data includes some instructions for the search engine.)
    The best solution (from my perspective!) would be simply to have an @NonPersistent annotation to make the DPL ignore a particular field. Lacking that, I came up with a couple options, neither of which I like. First, I could add a wrapper object that isn't an Entity class that contains my non-persistent data. I don't really like this idea, but it could work (makes all my objects a little larger and they get serialized a LOT). Second, I could modify readObject and writeObject to manually throw in the transient fields that I wanted to keep around. I don't really like that either (for different reasons), but it also could work.
    Any other thoughts? Is there anything I'm missing that would allow me to do this easily?
    Thanks!
    Jeff

    Hi Jeff,
    I think the addition of @NonPersistent is a reasonable request and probably the only good solution. One of the primary goals of the DPL is to be able to persist objects that are used in other ways -- RMI is a good example. In other words, the DPL intends to be a pure POJO persistence solution. However, we didn't consider the case of a field that is persistent with respect to RMI but not the DPL, or vice-versa. So I think solving this is important.
    Let us spend some time on that and we'll see if we can get this into a 3.3 dot release. This is a fairly simply addition, but we'll need to also consider the reverse situation -- a field that is persistent WRT the DPL but not RMI. In other words, we may need both @Persistent and @NonPersistent to apply to a field to override the default rules. And we'll need to encapsulate this information in the EntityModel abstraction so that it can be used without annotations.
    In the meantime, I suggest using one of the workarounds you mentioned, or perhaps even modifying the DPL source code in a way that works for you, temporarily.. If you choose the latter, note that there is only one place where field persistence is determined, which is in the getInstanceFields method of this class:
    src/com/sleepycat/persist/impl/FieldInfo.java
    See the call to Modifier.isTransient.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • JMS ignoring settings to send a message as non-persistent

    I'm trying to send a BUFFERED (as opposed to PERSISTENT) message using JMS. I
    would expect the Oracle implementation of JMS to map the JMS
    non-peristent delivery mode in the Oracle BUFFERED delivery mode.
    However, try as I might JMS always sends messages as
    persistent, sample below. Is there any way I can send a BUFFERED AQ message
    using JMS?
    import javax.jms.*;
    import oracle.jms.*;
    import oracle.xdb.*;
    public class jmsbuftest
    public static void main (String args [])
    throws java.sql.SQLException, ClassNotFoundException, JMSException
    try
    String ora_sid = "***";
    String host = "***";
    String schema = "***";
    String password = "***";
    String queueName = "***";
    int port = 1521;
    Enqueue(ora_sid, host, schema, password, queueName, port);
    System.out.println("You should see 3 messages in " + queueName.
    They should be buffered but are persistent instead");
    catch (Exception ex)
    System.out.println("Exception: " + ex);
    public static void Enqueue(String ora_sid, String host,
    String schema, String password, String queueName, int port)
    QueueConnectionFactory qc_fact = null;
    QueueConnection q_conn = null;
    QueueSession q_sess = null;
    java.sql.Connection db_conn = null;
    Queue queue = null;
    AdtMessage adt_msg = null;
    QueueSender q_sender = null;
    oracle.xdb.XMLType xtype = null;
    String data = null;
    try
    qc_fact = AQjmsFactory.getQueueConnectionFactory(host,
    ora_sid, port, "thin");
    q_conn = qc_fact.createQueueConnection(schema, password);
    q_sess = q_conn.createQueueSession(true,
    Session.CLIENT_ACKNOWLEDGE);
    q_conn.start();
    db_conn = ((AQjmsSession)q_sess).getDBConnection();
    queue = ((AQjmsSession)q_sess).getQueue(schema, queueName);
    q_sender = q_sess.createSender(queue);
    adt_msg = ((AQjmsSession)q_sess).createAdtMessage();
    data = "<bolek>olek</bolek>";
    xtype = oracle.xdb.XMLType.createXML(db_conn, data);
    adt_msg.setAdtPayload(xtype);
    //try sending a buffered message, different ways, none of them
    works!
    ((AQjmsQueueSender)q_sender).send(queue, adt_msg,
    DeliveryMode.NON_PERSISTENT, 1,
    AQjmsConstants.EXPIRATION_NEVER);
    q_sender.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
    ((AQjmsQueueSender)q_sender).send(queue, adt_msg,
    DeliveryMode.NON_PERSISTENT, 1,
    AQjmsConstants.EXPIRATION_NEVER);
    adt_msg.setJMSDeliveryMode(DeliveryMode.NON_PERSISTENT);
    ((AQjmsQueueSender)q_sender).send(queue, adt_msg,
    DeliveryMode.NON_PERSISTENT, 1,
    AQjmsConstants.EXPIRATION_NEVER);
    q_sess.commit();
    q_sess.close();
    q_conn.close();
    catch (Exception e)
    System.out.println("Exception: " + e);
    }

    I believe you need to use the Oracle specific methods with "buffer"in their name,
    ie. (AQjmsProducer) bufferSend and (AQjmsProducer) bufferPublish. (Page 11-15 of Oracle® Streams Advanced Queuing User's Guide and Reference 10g Release 2 (10.2) )
    So far I've been producing my buffered messages in PL/SQL. I'm receiving them using (AQjmsConsumer) .bufferReceive.
    These require using the (now recommended) generic objects (not specific to Queue or Topic) ConnectionFactory, Connection, Session, MessageProducer.
    I have tried to send buffered messages, and got close, but not got it to work. My core code is:
    ConnectionFactory cfact = AQjmsFactory.getConnectionFactory(args[1], args[0], Integer.parseInt(args[2]), args[3]);
    Connection conn = cfact.createConnection(SCHEMANAME, SCHEMAPWD); // user& password
    // Send buffered probably needs non-transacted session
    Session sess = conn.createSession(false, Session.DUPS_OK_ACKNOWLEDGE);
    conn.start();
    Queue queue = ((AQjmsSession)sess).getQueue(SCHEMANAME, QUEUENAME);
    AQjmsProducer q_sender = (AQjmsProducer) sess.createProducer(queue);
    q_sender.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
    TextMessage txtmsg = sess.createTextMessage();
    txtmsg.setText("Cars Distribution");
    txtmsg.setJMSType("glopt");
    txtmsg.setJMSDeliveryMode(DeliveryMode.NON_PERSISTENT);
    q_sender.bufferSend(queue, txtmsg, 1,600);
    Unfortunately I get errors :
    JMS-204: An error occurred in the AQ JNI layer
    JMS-242: Illegal attempt to enqueue message with both immediate visibility and three phase enqueue process.
    It looks like I need to set visibility immediate, but I don't know how to do that in JMS. The AQjmsProducer.bufferSend API documentation says "When the in-memory queue is used, the enqueue operation is required to be in immediate visibility mode"
    The queue create for this example was:
    exec DBMS_AQADM.DROP_QUEUE_TABLE('DBEVENTQ_TABLE', force => true);
    begin DBMS_AQADM.CREATE_QUEUE_TABLE(
    Queue_table => 'DBEVENTQ_TABLE',
    Queue_payload_type => 'SYS.AQ$_JMS_TEXT_MESSAGE',
    Multiple_consumers => FALSE,
    message_grouping => DBMS_AQADM.NONE,
    Compatible => '10.0'
    end;
    begin DBMS_AQADM.CREATE_QUEUE(
    Queue_name => 'DBEVENTQ',
    Queue_table => 'DBEVENTQ_TABLE',
    Queue_type => DBMS_AQADM.NORMAL_QUEUE,
    Max_retries => 5,
    Retry_delay => 0,
    retention_time => 0 /* dont retain messages */
    end;
    exec DBMS_AQADM.START_QUEUE ('DBEVENTQ');
    If you get past this JMS-242: Illegal attempt to enqueue message with both immediate visibility and three phase enqueue process, please tell me.
    Regards, David

  • How to display debug message on non-debug player

    I have a debug version of flash player on my computer and in case of error it displays detailed messages together with affected filenames and stack trace. I would like to achieve the same on a non-debug player, for example filling a TextArea with all these error messages and then displaying it. I tried this:
    loaderInfo.uncaughtErrorEvents.addEventListener function, where I call the errorEvent.toString();
    the output is as follows:
    > [SecurityErrorEvent type="securityError" bubbles=false cancelable=false
    > eventPhase=2 text="Error #2048"]
    it is not very detailed. Is there possibility to have more detailed information on what is going on, which file is affected? I need this because my flex application behaves differently on different computers - sometimes it seems to have security problem while loading a file.

    The non-debug player doesn't output anything.  Some folks build facilities
    into their app like a hidden text control that stores output for later
    display with some magic key sequence.

  • Difference between Persistent Messaging and Non Persitent Messaging

    Hi ,
    I have a confusion related to Persistent messaging.
    According to my knowledge the message becomes persistent if the flag JMSDeliveryMode is set
    SO what is it by defalut ??
    Where do messges get stored for time being for non -persistent messages.
    Thanks in Advance:)

    Message persistence is set by Delivery mode attribute of the message producer in the JMS client or it can bet set on a message basis during the send operation. The default value for the delivery mode on the message producer is PERSISTENT.
    Weblogic JMS has a feature to override the delivery mode set by the message producer. This is at the Destination configuration where there is an attribute called the Delivery Mode Override which can take the values:
    No-Delivery: Delivery mode of the message producer will not be overridden
    Persistent: All messages are marked as persistent irrespective of the message producer setting
    Non Persistent: All Messages are marked as non persistent irrespective of the message producer setting.
    All non persistent messages are stored in memory in normal case. If there is a pile up of messages, weblogic moves the body Messages to disk within what is called as a paging store for the JMS server, only retaining message headers in memory. The characteristic of non persistent messages is that it can't survive server restart. So these messages even when they are on the disk within the paging store wont survive the server restarts.

  • How can I make a rule to mark all messages sent to Mail Trash as Read?

    How can I make a rule to mark all messages sent to Mail Trash as Read?
    When I look at some emails on my phone, I can see from the title that I don't need to read the email so I delete it without opening it. When I go to my Macbook Pro and open mail, the number of unread messages in my Trash shows next to the name. It drives me nuts. Can I just set a rule to mark all messages sent to trash as read? If that isn't possible, I'd take just making the number not show beside the Trash folder.

    Just in the case that I actually do need to go back to them for some reason. I have some OCD tendencies which is also why the number beside the folder drives me nuts.

  • How to forward support messages to SAP in non-working time automatically?

    Hi colleagues and Happy New Year!
    I have a question: how to forward support messages to SAP at non-working time automatically?
    Details:
    when a support message is created at working time it shouldn't leave my system, but when
    a support message is created at non working time, for example, on saturday night it should be sent to SAP automatically. Where in the system I can find the options to customize it to provide these requirements?
    Edited by: Helen Rudnikovskaja on Jan 3, 2009 12:36 PM

    Hi These 2 notes wil solve your problem,
    Note 1084744 - Problems with the automatic function "Send to SAP"
    Note 1225682
    Pls assign pts.

  • How do I set up hotmail in mail app to not mark every message it syncs to be new?

    Hello,
    Using Mail App Version 5.2 on OSX Lion.
    How do I set up hotmail in mail app to not mark every message it syncs to be new? (as in if if I check my mail on the browser and I have a new message.. and I read it.. but then open my mail app it syncs that email but says its new and unread)Here are my setting... what do I change?

    irodalgo wrote:
    but how come it does on my iphone?
    What do you mean it does on your iPhone?
    If you download a new email to your computer and read that mail and then download it to the iPhone it sees it as already read? Then maybe the iPhone is using the Hotmail IMAP system? Not sure.

  • My Hotmail is marking certain messages as Junk; these messages do not appear in my Mac Mail Junk folder. How can I rectify this?

    I am using Mountain Lion (OS X 10.8.2) on my MacBook (mid-2009); Mail version 6.1 (1498).
    My Junk Mail permissions are as follows:
    - Enable junk mail filering
    - When junk mail arrives: Move it to the Junk mailbox
    - The following types of messages are exempt from junk mail filtering: Sender of messafe is in my Contacts and my Previous Recipients, Message is addressed using my full name
    - Trust junk mail headers in messages
    My junk messages are never automatically deleted
    My incoming mail server is pop3.live.com
    I do not know where to find the junk mail settings on the hotmail website.
    How do I make sure I'm not missing reading my junk when I use Mac Mail?
    Many thanks for your help in advance.

    Part of training the junk filter is also to mark good messages 'As Not Junk'.
    http://kb.mozillazine.org/Junk_Mail_Controls#Training_the_Junk_Mail_Controls

  • How to activate Acrobat Pro XI on a non persistant VDI desktop?

    Hi,
    I installed Acrobat Pro XI on a Citrix XenDesktop non persistant environment. I used the customization wizard and all seems to work without any questions for activation, but... When I logon to the desktop I start Acrobat Pro XI and I don't have the "PRO" options enabled (like for example  PDF Portfolio). When I close the program and open it again I do have the PRO options so it looks like the program is activating online at the first startup of the program.
    I don't think my users like to start a program then have to close it and start again to use the full options and it shouldn't be working like that.
    Does somebody know how to fix this?
    Kind regards,
    Freek van Ekkendonk

    When the user is logging on he gets a random desktop from the pool, al the virtual desktops have the same image. The registration has been done once on the master image. It could be that when the computer name changes to a random name in the pool the license gets expired because of the changed computername and then tries to activate again online.
    I don't think I have a volume serial number and I don't use the off-line exception because I couldn't get it to work. Below is the error log.
    2014-07-30 08:10:13 [6208]  Adobe PRTK: *** Adobe PRTK tool START ***
    2014-07-30 08:10:13 [6208]  Adobe PRTK: Adobe PRTK tool VolumeSerialize invoked
    2014-07-30 08:10:13 [6208]  Adobe PRTK: C:\Users\F8B95~1.VAN\AppData\Local\Temp\Cus47EB1100
    2014-07-30 08:10:13 [6208]  Adobe PRTK: creating  C:\Users\F8B95~1.VAN\AppData\Local\Temp\Cus47EB1100\prov.xml
    2014-07-30 08:10:13 [6208]  OOBELib: __OOBELIB_LOG_FILE__
    2014-07-30 08:10:13 [6208]  OOBELib: *************OOBELib Session Starts*************
    2014-07-30 08:10:13 [6208]  OOBELib: Version 6.2.0.42,6.2
    2014-07-30 08:10:13 [6208]  PCDService: PCD Service in non-threaded mode
    2014-07-30 08:10:13 [6208]  OPMWrapper: Failed in getting value for key in OPMGetValueForKey
    2014-07-30 08:10:13 [6208]  OOBELib: Failed to get Proxy username in OPM DB
    2014-07-30 08:10:13 [6208]  AXFBLicensing: Failed to load axlib.dll, trying again
    2014-07-30 08:10:13 [6208]  AXFBLicensing: Failed to load axlib.dll, trying again with axlib in ACF
    2014-07-30 08:10:14 [6208]  AXFBLicensing: All function pointers successfully retrieved
    2014-07-30 08:10:14 [6208]  OOBELib: Received Params for Online Validation : Driver : V6{}AcrobatPro-AS2-Win-GM, Caller : 3
    2014-07-30 08:10:14 [6208]  OOBELib: received LEID : V6{}AcrobatPro-AS2-Win-GM
    2014-07-30 08:10:14 [6208]  OOBELib: Supported Locales : ALL
    2014-07-30 08:10:14 [6208]  OOBELib: OOBELib ValidateSerialOnline
    2014-07-30 08:10:14 [6208]  OOBELib: Validate using Driver LEID : V6{}AcrobatPro-AS2-Win-GM, App LEID : <blank>, SN : XXXXXXXXXXXXXXXXXXXXXXX
    2014-07-30 08:10:14 [6208]  OOBELib: Failed to get system default proxy in setProxyCredentialsForIALSession
    2014-07-30 08:10:14 [6208]  OOBELib: Failed to set proxy credentials for IAL session while validating serial number
    2014-07-30 08:10:14 [6208]  OOBELib: HTTPCommunicationAgent::processMessage is https://lm.licenses.adobe.com/aes/aes/v1/serialInfo (extURL=)
    2014-07-30 08:10:15 [6208]  OOBELib: HTTP Request Status code 200.
    2014-07-30 08:10:15 [6208]  OOBELib: HTTPCommunicationAgent- Return Code:[0] response size-[3068] time taken-[1038.97]ms.
    2014-07-30 08:10:15 [6208]  OOBELib: Validate Serial status-[0] took-[1060.15]ms.
    2014-07-30 08:10:15 [6208]  OOBELib: checking LEID V6{}AcrobatPro-AS2-Win-GM
    2014-07-30 08:10:15 [6208]  OOBELib: LEID : V6{}AcrobatPro-AS2-Win-GM qualifies for install
    2014-07-30 08:10:15 [6208]  OOBELib: Cannot accept a Retail SN in the AAMEE workflow
    2014-07-30 08:10:15 [6208]  OOBELib: Using Driver/ALL combination for offline/invalid SNs scenario
    2014-07-30 08:10:15 [6208]  OOBELib: SN validated for AAMEE mode
    2014-07-30 08:10:15 [6208]  OOBELib: OOBELib stat = 27
    2014-07-30 08:10:16 [6208]  Adobe PRTK: Failed to validate the serial number
    2014-07-30 08:10:16 [6208]  Adobe PRTK: Return code 14
    2014-07-30 08:10:16 [6208]  Adobe PRTK: *** Adobe PRTK tool END ***

  • How maintaining the connection table for sticky/persistent/non-persistent?

    Question about how to maintain the connection table for the source(client) and destination(server) in the CSM(or CSS).
    I know the sticky has the table and max size such as 128K(css11501)as per CCO but not clear how works the persistant and non-persistant case.
    Q1) persistant. does it maintain the conntion table to tracking the session? then, any information the table size?
    Q2) non-persistant. is this also have connection table? then, how it works?
    why I'm asking is want to understand how the session keep tracking. for example, the router based on the routing table(stateless) versus PIX firewall has stateful table. As analogue, is the non-persistnet stateless and statefull for the persistent and sticky?
    Thnaks in advance,

    The CSS uses FCB to maintain information about active connections.
    Each connections requires 2 FCB - one for client to vip and one for server to client.
    When you boot the CSS it will immediately reserver a good amount of memory to create a list of FCB.
    Each connection will then take 2 FCB from the list.
    You can do a 'flow stat' from llama mode to verify how much free/used FCB you have.
    When running low on FCB, the CSS will try to allocate more memory.
    Gilles.

  • How to Fix ''The messaging interface has returned an unknown error. If the problem persists, restart Outlook.' Error

    How to Fix ''The messaging interface has returned an unknown error. If the problem persists, restart Outlook.' Error, user has outlook 2007 connected to exchange 2010 server , I tried scan pst, configuring new profile but no luck so far. Please suggest !
    Aditya Mediratta

    Hi,
    Please try the steps mentioned below and check if it helps:
    Open Computer > Local Disk C > Program Files > Microsoft Office > Office 12 > Outlook.exe.
    Right click on outlook.exe and click on Properties and then click on
    Compatibility tab. Uncheck the box ‘run this program in compatibility mode for’ under compatibility mode, click on Apply and OK.
    Note: If you are using 64 bit computer then the file location of the file will be
    Computer>Local Disk C>Program Files (x86) >Microsoft Office>Office 12>Outlook.exe
    Similar thread:
    https://social.technet.microsoft.com/Forums/en-US/aa396c9e-0ce5-4de5-99e3-4f0d771b07e0/exchange-2007-messaging-interface-has-returned-an-unknown-error
    Best Regards.

Maybe you are looking for

  • How do I use Itunes from external drive as main sync for Iphone 4

    I apologize if this is obvious but I have searched for quite awhile without finding result. I currently have my iTunes synced to my Macbook Pro. I purchased a Macbook Air for ease in travel. I would like to move sync of my material on iTunes to my Ai

  • Unable to install Flash 10.0.2 update on Windows 7

    Hi to all, Recently I installed a fresh copy of Windows 7 32 bit on my HP laptop, and installed all the CS4 applications of Design Premium. The installation went fine, and almost all the updates (Photoshop  11.0.1, InDesign 6.0.4, etc..) installed wi

  • How to disable ipv6 mail in Server?

    I'm not doing ipv6 addressing on my server, and I'd prefer not to get the "No route to host" messages in the mail log for the v6 attempts.  I've turned off ipv6 addressing altogether with the "networksetup" command, and did the "usual" thing of setti

  • Problem Targeting Frame From Flash

    Seems to be a new problem. Trying to open a html page in a frameset page from flash seems to have stopped working correctly. It's opening in a new window every time. HOWEVER, did notice if I publish to a live server, seems to work fine. Just makes fo

  • Word processing for iPad

    have not been able to find an Apple or 3rd party word processing ap for iPad....maybe I am not looking at the right place....can you help.