OSB proxy mail read problem from inbox

Hi,
I have made one osb process.It is reading data from one particular mailbox.For that I have configured one proxy,and mentioned one service account in that proxy configuration.It is working fine in my local server and printing logs(I have put some log activity in message flow).
But when I deployed it to one cluster env,It is not printing anything in logs.But I think it is reading data from mailbox.I have set post read action to archive and the mails are archived properly in cluster env,so I am assuming that osb proxy is reading mails.
Anybody has any idea of the above problem?

Did you check in weblogic console, if you click in your proxy service (the one which consumes from email server) -> Operational settings, is logging enabled?
In your pipeline, are you logging at the end of the message flow? Do you mind adding a global exception handing and log there as well?
This is what I can think of. Otherwise, try to use a report action from your proxy, just to see if the issue is the logging or the consumption.
If none of this work, I would stop of the managed servers, leave only one running. Then you have a couple of options: Enable tracing or run a tcpdump. These 2 will be the source of truth of what is going on.
Regards,
Fabio Douek

Similar Messages

  • Reading message from inbox

    I want to write a J2ME application which will read message from inbox.i used the following code to open fileconnection with inbox
    FileConnection filecon = (FileConnection)
    Connector.open("file:///c:/system/mail/directory");
    I am using Nokia 6610i.I am getting the following error:"The requested protocol does not exist file:///c:/system/mail/directory"
    Can anyone help me out?

    Hi
    If you want to be able to store data and then retrieve it, the you can use RMS, but if you want to get data already stored on your phone then you need the FileConnection API. There is no work around this as far as I know.
    Mihai

  • How do I change the mail reading pane from horizontal to vertical ?

    How do I change the mail reading pane from horizontal to vertical ?  Help !!

    Mail > Preferences > Viewing
    Select or deselect:  Use classic layout

  • Newbie: Mail Transfer Problems from Mac 10.6.2 to Mac 10.8.2

    I am giving my old macbookpro away (OS 10.6.2) and got a new OS 10.8.2
    How do I transfer my Mail (everything from inbox to sent items) from the old mac os to the new MacbookPro laptop's Mail?
    I am a newbie but uses the Mac's Mail for my business and all emails are important to me.
    Please help me with a step-by-step "idiots" guide. Thanks a lot!!!
    If there's any other info you need from me, let me know. Thanks!

    See How do I set up a new Mac from an old one, its backups, or a PC?

  • Yahoo mail not removed from inbox ios7

    I have an iPhone 4s with ios 7.0.2.  I have 2 different yahoo accounts that are showing the same issue.  If I delete or move an email from my yahoo inbox on my PC either via web or mail client, they still show in the inbox on my iPhone.  Even if I manually update the accounts (swipe down) they still are there.  I have tried waiting 10-15 minutes with the same result.  If I use the task manager to close mail and then re start it, they immediately are removed from the inbox.  Has anyone else noticed this issue?

    Check whether the same happens if Preferences > Accounts > Advanced > Remove copy from server is OFF, i.e. if messages aren’t supposed to be removed from the server at all. I’ve seen it reported in other cases that messages were removed from the server even with that setting OFF, but it ended up being a server issue that happened when using other mail clients as well — and IIRC it also was a Yahoo account...
    Try disabling the account in Mail (i.e. turn OFF Preferences > Accounts > Advanced > Enable this account), or just don’t run Mail at all, set up the account in another mail client such as Thunderbird, and see what happens.
    If you set up the account in Thunderbird, refuse to download anything when asked to do so immediately afterwards (so that you can customize the server settings first), then in the account’s Server Settings turn ON Leave messages on server if you don’t want the messages to be removed from the server as a result of downloading them with Thunderbird. If messages that you would like to have in Mail end up being removed from the server nevertheless, you may use Eudora Mailbox Cleaner to import them from Thunderbird into Mail.

  • How can i delete readed msg from inbox

    i am developing blog application using struts. how can i delete msg from inbox folder.
    i am using following code to read mail. how to delete messages :?
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Store;
    public class MainClassSimple {
    public static void main(String[] args) throws Exception {
    Properties props = new Properties();
    String host = "hostname.com";
    String username = "[email protected]";
    String password = "password";
    String provider = "pop3";
    Session session = Session.getDefaultInstance(props, null);
    Store store = session.getStore(provider);
    store.connect(host, username, password);
    Folder inbox = store.getFolder("INBOX");
    if (inbox == null) {
    System.out.println("No INBOX");
    System.exit(1);
    inbox.open(Folder.READ_WRITE);
    Message[] messages = inbox.getMessages();
    for (int i = 0; i < messages.length; i++) {
    System.out.println("Message " + (i + 1));
    //messages.writeTo(System.out);
    Address address[] =messages[i].getFrom();
    for (int j = 0; j < address.length; j++) {
              getMailAddress(address[j].toString());
    messages = inbox.expunge();
    //System.out.println(messages[0].isExpunged());
    inbox.close(false);
    store.close();
    private static void getMailAddress(String address) {
         int i = address.indexOf("<");
         address = address.substring(i+1, address.length()-1);
         System.err.println(address);

    i am developing blog application using struts. how can i delete msg from inbox folder.
    i am using following code to read mail. how to delete messages :?
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Store;
    public class MainClassSimple {
    public static void main(String[] args) throws Exception {
    Properties props = new Properties();
    String host = "hostname.com";
    String username = "[email protected]";
    String password = "password";
    String provider = "pop3";
    Session session = Session.getDefaultInstance(props, null);
    Store store = session.getStore(provider);
    store.connect(host, username, password);
    Folder inbox = store.getFolder("INBOX");
    if (inbox == null) {
    System.out.println("No INBOX");
    System.exit(1);
    inbox.open(Folder.READ_WRITE);
    Message[] messages = inbox.getMessages();
    for (int i = 0; i < messages.length; i++) {
    System.out.println("Message " + (i + 1));
    //messages.writeTo(System.out);
    Address address[] =messages[i].getFrom();
    for (int j = 0; j < address.length; j++) {
              getMailAddress(address[j].toString());
    messages = inbox.expunge();
    //System.out.println(messages[0].isExpunged());
    inbox.close(false);
    store.close();
    private static void getMailAddress(String address) {
         int i = address.indexOf("<");
         address = address.substring(i+1, address.length()-1);
         System.err.println(address);

  • Mail - IMAP problem accessing inbox

    I have an issue accessing my Yahoo Inbox using IMAP with Mail 8.1 on my MacBook Pro running Yosemite 10.10.1.  The Connection Doctor confirms connection and login for both IMAP and SMTP.  When I select Get Account Info at the bottom of the left column in the Inbox pane, the Quota Limits tab shows the number of messages in several mail folders I have on the server, but shows the Inbox with 0 messages, which is not correct.  When I select Get New Mail from the Mailbox tab, the Yahoo mailbox is grayed out.  On one attempt when it was not grayed out, it returned the message "The server returned the error: the attempt to read data from the server imap.mail.yahoo.com failed". 
    The following solutions found online have been tried without success:
    --take account offline then Get All New Mail
    --remove and reinstall the Yahoo internet account in System Preferences
    --remove the Yahoo internet account, then re-add as an "Other" mail account
    --delete com.apple.mail.plist files in the Library, then restore by restarting the program
    --delete com.apple.mail folder in the Library, then restore by restarting the program
    --reduce password characters to 8, alphanumeric
    As a final attempt, I removed Mac OS X from the "Manage apps and website connections" section in my Yahoo account profile.  I removed and restored the Yahoo account in Mail, but this did not restore Mac OS X in my Yahoo account.
    IMAP access worked fine until just a few days ago.  Access through Web browser and my iOS devices has fortunately been unaffected.  What broke?

    ok, I've been doing some digging in here, and I managed to find out some logs that might help.
    This is from the email account that is not working;
    WROTE Jan 17 22:13:53.796 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x6000008adf80 -- thread:0x60800246fb00
    5680.80 FETCH 44 (FLAGS UID)
    READ Jan 17 22:13:54.037 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x6000008adf80 -- thread:0x60800246fb00
    5680.80 NO [SERVERBUG] FETCH Server error - Please try again later
    WROTE Jan 17 22:13:54.037 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x6000008adf80 -- thread:0x60800226e700
    5681.80 FETCH 45 (FLAGS UID)
    READ Jan 17 22:13:54.193 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x6000008adf80 -- thread:0x60800226e700
    5681.80 NO [SERVERBUG] FETCH Server error - Please try again later
    WROTE Jan 17 22:13:54.194 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x6000008adf80 -- thread:0x60800246fb00
    5682.80 FETCH 46 (FLAGS UID)
    READ Jan 17 22:13:54.341 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x6000008adf80 -- thread:0x60800246fb00
    5682.80 NO [SERVERBUG] FETCH Server error - Please try again later
    The other set of logs are from the account that works;
    WROTE Jan 17 22:13:54.794 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x600000ab5ba0 -- thread:0x60800226e700
    4818.105 FETCH 3285 (FLAGS UID)
    READ Jan 17 22:13:54.863 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x600000ab5ba0 -- thread:0x60800226e700
    * 3285 FETCH (FLAGS (\Seen) UID 10632)
    4818.105 OK FETCH completed
    WROTE Jan 17 22:13:54.866 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x600000ab5ba0 -- thread:0x608001665700
    4819.105 FETCH 3286 (FLAGS UID)
    READ Jan 17 22:13:54.935 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:imap.mail.yahoo.com -- port:993 -- socket:0x600000ab5ba0 -- thread:0x608001665700
    * 3286 FETCH (FLAGS (\Seen) UID 10633)
    4819.105 OK FETCH completed
    some how I'm sensing an issue with that UID flag. not sure if I'm correct, but I feel that my mac is not setting it write while sending the request, and then it can't find it when receiving the reply.

  • Is it possible to read SMS from Inbox?

    Hi All,
    I just wanted to know that is it possible to read SMS from my inbox using j2me?
    If so plz tell how? and which apis I should use?

    I just wanted to know that when an midlet waits for an sms on the default port that is port 0 will it receive all SMS (By all I mean normal SMS as well as SMS send to it using j2me application running on other devices)
    Thanks
    Sagar

  • Email that I've read disappears from inbox and I want to keep it

    Hi there-
    I am helping a friend who has Leopard and the latest Apple Mail. She says that she has read some of her email and then after a while it disappears from her in box. I can show her how to delete old mail, but she wants to keep it. Does it have to do with keeping it on the server? She has AOL and uses Apple Mail to maintain it all.
    thanks for your help.
    Anne Z

    Anne,
    AOL by policy deletes messages in the Inbox (and also the Sent) after 27 days. To save longer, the messages must be moved to the folder named Saved that AOL sets up on the server. There is nothing in Mail to cause this, but AOL's own action.
    Is this perhaps what she is having issue with?
    Ernie

  • Java mail reader problem

    hi
    Geeting following exception while connecting to Exchange Mail server to Read my inbox
    javax.mail.AuthenticationFailedException: The requested mailbox is not available on this server
    could you please help me.... :)

    Supply the correct username and password.
    See the JavaMail FAQ if you're stuck.

  • Mail reader problems

    Mail window does not scroll -- so I cannot read material below the bottom of the first page.
    Mailbox items do not scroll either.  If I am reading a 2012 e-mail I cannot scroll back up to the most recent e-mail.

    LousyFool in another response nailed it.  Go to Systems Preferences --> Scroll Bar Always.  It works.
    (I haven't had to show scroll bars before, but this fixes my problem.)

  • SEnde Mail adapter problem from txt to xml

    Hi All
    I have the following scenario - Mail->XI->RFC.
    My interface keep crashing because of mapping errors. The attachment I am receiving from 3rd party like follow:
    ENG_TYPE|INDUST_NO|COMPANY_NUMBER|SURNAME|INITIALS|NAMES|REGISTERED|MALE|EXPERIENCE|RACE|MARITAL_CODE
    V|A0359214|137871|MASSANGO|J|JOSE|2007/01/18|1|458|A|7|4|1953/01/06|SHANGAAN|STANDARD
    V|A0359214|137871|MASSANGO|J|JOSE|2007/01/18|1|458|A|7|4|1953/01/06|SHANGAAN|STANDARD
    V|A0359214|137871|MASSANGO|J|JOSE|2007/01/18|1|458|A|7|4|1953/01/06|SHANGAAN|STANDARD
    V|A0359214|137871|MASSANGO|J|JOSE|2007/01/18|1|458|A|7|4|1953/01/06|SHANGAAN|STANDARD
    This is also how the data come into XI, and then the mapping crashes, how do I change to XML for the mapping to no crash.
    I cannot seem to find anything on the module configuration to work for the Sender Mail adapter.
    Thanks
    Clinton

    Hi,
    1. You can use MessageTranformBean to convert the Text to XML.
    Please look into this article for a demo on this,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f02d12a7-0201-0010-5780-8bfc7d12f891
    it talks about JMS but the messagetransformbean can be used for Mail adapters as well.
    Regards
    Bhavesh

  • Visa Read problem from a PIC24's UART port

    Thanks for taking the time to read my post.
    I am using Labview 8 on Win XP CPU 3.4, 2GB RAM PC.
    I am using a microcontroller PIC24 (on the Explorer 16 development board), which I have programmed to acquire an AC singal at a rate of about 4 kHz. The PIC24 has a 10bit ADC and the acquire value is then padded to16bits in total (format: 000000xxxxxxxxxx).
    The serial setting for the pic and my Labview program are 115200, 8 data bits, no parity, 1 stop bit.
    In order to send the acquired value to my PCs serial port (Remember UART = 8-bits of data only) I divide the 16 bit word into MSB and LSB. I then send the MSB and LSB 8-bit value one after the other.
    The total data rate for this communication is about 64kbps.
    The problem is that when I run the code I have written in Labview the CPU usage shoot up to 70% and I also see buffer overruns (a non continuous sine wave). If I a time delay in my while loop the buffer overruns increase.
    Also if I try and use the ‘bytes at port’ VI the data I get is meaningless.
    I would be grateful if someone can look at my code and give me some suggestion as to how I could make the ‘Visa Read’ VI more efficient.
    Regards
    Alex
    Attachments:
    Serial Client for PIC24.vi ‏101 KB

    Dear all,
    I do not know if you have been following my post, but I am still getting buffer overruns (a non continuous sine wave) when using VISA Serial Read.
    The only way to avoid this, is by making the VISA Read VI, read 2-bytes at a time (with no time delay in the main while loop). However, when I do this I see the CPU usage shoot up to around 60% (which is something I would expect anyway, as the main while loop is executing as fast as possible).
    I have attached the working code below and would appreciate ANY comments BIG or small.
    I am still puzzled as to why when I connect the ‘Bytes at Port’ Property Node, the data I get is not correct.
    I have gone through the Labview Examples, as well as the LV Basics 1 course examples (which are similar) and I have also looked in the Labview for Everyone / Labview Graphical Programming books.
    However, I have found the examples to be far too simple, for what I am trying to achieve.
    I am seriously thinking of purchasing the LV Instrument Control Self-Paced Course, but I am not quite certain this would help me much. I have read the Course outline provided by NI, but this did not provide me with more valuable information.
    Can anyone that has ‘done’ this course advice me as to whether the material contains info on ‘high’ speed acquisition using VISA Serial Read/Write?
    The course is slightly price at a cost of around £240(with academic discount) and as far as I understand the courses examples (might) use two HP instruments (Multimeter and Function Generator) and a Tektronix oscilloscope, all of which I am not in direct contact with.
    Regards
    Alex
    Attachments:
    Serial Client PIC24-Serial - Read 2-bytes.vi ‏42 KB

  • @ mail zending problems from abroad

    last week I was in Tunisia, I received mail, but couldn't sent any and....... I have 3 different accounts on my IPad: gmail and hotmail and another. I looked up what I had to do, close your I pad and start again bur still NO Sending! I hersd Thatcher friends have THE Same problemen but nobody knowes how to solve it. Thx fot helping me out MAJK

    MobileMe closed over a year ago, and smtp.me.com no longer works.
    It was (partially) replaced by iCloud. If you migrated your MobileMe account (assuming you did in fact have one) to iCloud before the end of August 2012 then you have an iCloud account, however you can only access its email on Snow Leopard, by setting Mail up as indicated here:
    Entering iCloud email settings manually in Snow Leopard or Leopard
    You can't use iCloud's other facilities with Snow Leopard.
    If you did not migrate your MobileMe account then you don't have an iCloud account, and you cannot create one on Snow Leopard. You would need a Mac running Lion or Mountain Lion, an iOS5 or above device, or a Windows 7/8 PC; or you would need to upgrade your Mac to Lion or Mountain Lion., provided it meets thue requirements.
    The requirements for Lion are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    To purchase it you will have to ring Apple at the number given at the bottom left of this page.
    The requirements for Mountain Lion are:
    OS X v10.6.8 or later
    2GB of memory
    8GB of available space
    and the supported models are:
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    Xserve (Early 2009)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    It is available from the Mac App Store (in Applications).
    You should be aware that PPC programs (such as AppleWorks) will not run on Lion or above; and some other applications may not be compatible - there is a useful compatibility checklist at http://roaringapps.com/apps:table

  • OSB Proxy design

    Hi All,
    I am developing a OSB proxy to read from JMS queue and write the message to another JMS Queue. while writing to JMS Queue if the JMS server is down, the proxy should retry for 3 times and then it should go to sleep mode for 20 minutes. After 20 minutes the proxy should wakeup , read from the queue and write to the queue.
    Can anyone tell me how to implement this OSB Proxy?
    Thanks,

    use the retry in business service configuration to retry the message 3 times.(http://docs.oracle.com/cd/E23943_01/admin.1111/e15867/endpointurimgmt.htm).
    In the queue from weblogic console under delivery failure settings set the parameter for Redelivery Delay Override to 20 mins. (http://docs.oracle.com/cd/E28280_01/apirefs.1111/e13952/pagehelp/JMSjmsdestinationsjmsqueueredeliverytitle.html)
    Make sure the connection factory is xa enabled and the proxy service participates in the xa transaction.

Maybe you are looking for

  • Problem of where downloads/attachments go in Mail

    Mail Attachment Download I use the Mac's mail application, Mail. The default setting for where attachments are found is HOME >> Library >> Mail Downloads. I went into Mail Preferences and changed the downloads location to a folder I created, Attachme

  • My iMac G5 has suddenly started to run slowly and I don't know how to fix it. I've run utilities which says it's working fine.

    My iMac G5 has suddenly started running very slow. I've already gone through all the tricks I can think of, including reinstalling Snow Leopard and running a hardware test, which tells me my computer is OK, which it most definitely is not. Every litt

  • Lion:  file sharing

    I have two users on my iMac which is running Lion.  I am trying to share files between users.  I have followed the instructions in help and am getting nowhere (after about an hour and a half).  Can anyone help?

  • BADI for FBL1N transaction.

    Hi All,   I have used BADI "BADI_FDCB_SUBBAS01" to add new fields in transaction FB60 in the "Basic_Data" tab. But when i execute FBL1N transaction and select the required vendor line item and click display i cannot see the new fields which i added.

  • Gmail forwarding and delivery confirmation receipts

    I know this has been discussed, but I am unable to resolve the issue.  So here is the situation . . . I have a work email address (we manage our own email system internally).  Emails sent to my work address get forwarded to my gmail account (so I can