Can anyone help me how to work with jms server in osb?

Hi,
I am new in osb. I have requirement in osb listeners.
I want to put some data in to jms server using osb in one project and then consume that data using osb in diffrent projects.
how to configure jms server to work above scenario?
how to construct business and proxy sevices?
jms protocal format?
My requirement is topic in jms server
Regards,
Raju..

Hi,
The below link will help you to create simple JMS in weblogic
https://blogs.oracle.com/soaproactive/entry/how_to_create_a_simple
How to push message and consume message
http://rangarb.wordpress.com/2012/04/18/working-with-jms-in-osb-11g/
Another example of subscription of jms
http://oraclesoaandoim.blogspot.co.uk/2012/04/oracle-service-11116-consume-jms.html
Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question.
Thanks,
Vijay

Similar Messages

  • My wifi is not working. It has no indication. I am living in Indonesia but I bought my iphone from apple online store. Can anyone help me how to fix my problem?

    My wifi is not working. It has no indication. I am living in Indonesia but I bought my iphone from apple online store. Can anyone help me how to fix my problem?

    The No Service means there is a problem with cellular service. You mention wifi in your title. Which is it you are having trouble with? What happens when you switch on and off as you state in your post? Are you saying that wifi does not connect while at home either?

  • Bought a new HD for my Mac mini, and now i can not do anything, i press com r and nothing appears, only gray screen and then appears a folder with a ? in it, can anyone help me how to solve this. Thank you

    ought a new HD for my Mac mini, and now i can not do anything, i press com r and nothing appears, only gray screen and then appears a folder with a ? in it, can anyone help me how to solve this. Thank you

    Thank you so much for your attention, it is allready working well.

  • Can anyone help please. how do i get the home button to appear on the touch screen my home button has stopped working?

    can anyone help please. how do i get the home button to appear on the touch screen my home button has stopped working?

    I have same problem.
    However, I am unable to turn on Assistive Touch.
    At one time I was able to activate it, but it went away and now I cant reactivate.
    What is the solution?

  • I am not able to see the airplay icon with Maverick. Can anyone help on how to go about this?

    I am not able to see the airplay icon with Maverick. Can anyone help on how to go about this?

    Does restarting the router help?
    Best.

  • I am residing in India and have purchased Ipad 3 from US, I have lost my invoice and also the small pin which helps in inserting sim card, Can anyone help me how can I get a copy of duplicate invoice from India and a PIN for my Ipad 3

    Dear Friends,
    I have purchased Ipad 3 from the US but unfortunately while returning back to India I have lost in transit the copy of Invoice and a tiny PIN which helps in inserting 3G card.
    Can anyone help me how can I get the duplicate copy of my invoice and an extra PIN from India and whether any Apple Store in India can issue me the duplicate copy of Invoice for the product purchased from US and also are the require to issue me an extra PIN on request.
    Thanking you all in anticipation....
    Regards,
    Bankim Mehta

    You can use a paper clip instead of the PIn that came with the iPad.
    http://support.verizonwireless.com/clc/devices/knowledge_base.html?id=54813
     Cheers, Tom

  • Can u explain me how to work with OOPs ABAP

    Hi,
    Can u explain me how to work with OOPS Abap,  If possible pls send me some sample programs regarding OOps concept used in Realtime.
    Thanks.

    hii,
    Please check this online document (starting page 1291).
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf
    Also check this links as well.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.futureobjects.de/content/intro_oo_e.html
    http://www.sap-img.com/abap/business-add-in-you-need-to-understand-abap-oo-interface-concept.htm
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    What is Object Orientation?
    Object orientation (OO), or to be more precise, object-oriented programming, is a problem-solving method in which the software solution reflects objects in the real world.
    A comprehensive introduction to object orientation as a whole would go far beyond the limits of this introduction to ABAP Objects. This documentation introduces a selection of terms that are used universally in object orientation and also occur in ABAP Objects. In subsequent sections, it goes on to discuss in more detail how these terms are used in ABAP Objects. The end of this section contains a list of further reading, with a selection of titles about object orientation.
    Objects
    An object is a section of source code that contains data and provides services. The data forms the attributes of the object. The services are known as methods (also known as operations or functions). Typically, methods operate on private data (the attributes, or state of the object), which is only visible to the methods of the object. Thus the attributes of an object cannot be changed directly by the user, but only by the methods of the object. This guarantees the internal consistency of the object.
    Classes
    Classes describe objects. From a technical point of view, objects are runtime instances of a class. In theory, you can create any number of objects based on a single class. Each instance (object) of a class has a unique identity and its own set of values for its attributes.
    Object References
    In a program, you identify and address objects using unique object references. Object references allow you to access the attributes and methods of an object.
    In object-oriented programming, objects usually have the following properties:
    Encapsulation
    Objects restrict the visibility of their resources (attributes and methods) to other users. Every object has an interface, which determines how other objects can interact with it. The implementation of the object is encapsulated, that is, invisible outside the object itself.
    Polymorphism
    Identical (identically-named) methods behave differently in different classes. Object-oriented programming contains constructions called interfaces. They enable you to address methods with the same name in different objects. Although the form of address is always the same, the implementation of the method is specific to a particular class.
    Inheritance
    You can use an existing class to derive a new class. Derived classes inherit the data and methods of the superclass. However, they can overwrite existing methods, and also add new ones.
    Uses of Object Orientation
    Below are some of the advantages of object-oriented programming:
    Complex software systems become easier to understand, since object-oriented structuring provides a closer representation of reality than other programming techniques.
    In a well-designed object-oriented system, it should be possible to implement changes at class level, without having to make alterations at other points in the system. This reduces the overall amount of maintenance required.
    Through polymorphism and inheritance, object-oriented programming allows you to reuse individual components.
    In an object-oriented system, the amount of work involved in revising and maintaining the system is reduced, since many problems can be detected and corrected in the design phase.
    Achieving these goals requires:
    Object-oriented programming languages
    Object-oriented programming techniques do not necessarily depend on object-oriented programming languages. However, the efficiency of object-oriented programming depends directly on how object-oriented language techniques are implemented in the system kernel.
    Object-oriented tools
    Object-oriented tools allow you to create object-oriented programs in object-oriented languages. They allow you to model and store development objects and the relationships between them.
    Object-oriented modeling
    The object-orientation modeling of a software system is the most important, most time-consuming, and most difficult requirement for attaining the above goals. Object-oriented design involves more than just object-oriented programming, and provides logical advantages that are independent of the actual implementation
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.geocities.com/victorav15/sapr3/abap_ood.html
    http://www.brabandt.de/html/abap_oo.html
    Check this cool weblog:
    /people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
    /people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
    /people/sap.user72/blog/2005/05/10/a-small-tip-for-the-beginners-in-oo-abap
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    /people/thomas.jung3/blog/2005/09/08/oo-abap-dynpro-programming
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b6254f411d194a60000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm
    http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://www.allsaplinks.com/
    http://www.sap-img.com/
    http://www.sapgenie.com/
    http://help.sap.com
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.sapgenie.com/abap/controls/index.htm
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    these links
    http://help.sap.com/saphelp_47x200/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm
    For funtion module to class
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5954f411d194a60000e8353423/content.htm
    for classes
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm
    for methods
    http://help.sap.com/saphelp_47x200/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm
    for inheritance
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm
    for interfaces
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b6254f411d194a60000e8353423/content.htm
    For basic stuff......
    abap oops
    http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt
    http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf
    http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/frameset.htm
    ABAP Business Development and Service Provisioning/ABAP Objects
    General information
    What is Object Orientation?
    some blogs
    A small tip for the beginners in OO ABAP
    Object Oriented ABAP (OO-ABAP)
    and others wiki OO Abap
    cheers,
    sharad
    Edited by: sharad narayan on Apr 29, 2008 12:19 PM

  • For some reason, the Flash Player on my MAC Pro stopped working, I've checked the install on my Adobe Flash Player and the are current, but the plug-ins don't seem to be working.  Can anyone help me get it working?

    For some reason, the Flash Player on my MAC Pro stopped working, I've checked the install on my Adobe Flash Player and the are current, but the plug-ins don't seem to be working.  Can anyone help me get it working?

    It happened w/ my MacPro 2.66 GHz Dual-Core Intel Xeon about 5 months ago; tried everything I could think of including multiple downloads of Flash, and hadn't seen any solutions here.  Adobe insisted many times that I download & update, but the newest vers. wouldn't work on the computer.
    On checking Adobe/Flash was reading the computer as being an earlier model. So the new version of Flash wouldn't work w/ it.  Snow Leopard 10.6.8 was being read correctly but not the computer model (can't remember what MP model  it was reading).
    Nothing worked. So -- a very old PC trick: If nothing else works get the hammer out and bludgeon it-- might work. So I reset everything by putting the Snow Leopard  install disk in, held down 'C' on restart and let it run. 
    Didn't take anything off the HDD first, just ran the install disk over everything.
    The experts on the forums are probably cringing right now & I'd like very much for them to jump in. Love to know how my computer model was being mis-read. All I can say is, for the brave and desparate, it worked for me. Something to keep in mind.
    It helped that I had a new computer on order & have 2 backups, one being mandatory. Might work only the one time but worth a check.
    Good luck on working this one out.

  • Hi can anyone help me how to install oracle 11gr2 in linux machine

    Hi can anyone help me how to install oracle 11gr2 in linux machine
    with some documentation or any screen shots ?

    Hello
    you can follow me article:
    Oracle desde Guatemala » Blog Archive » Instalar Oracle Database 12cR1 en OEL 6 con ASM
    Greetings,

  • Can anyone help me solving this problem with Mail?

    I haven´t being able to send emails with MAIL for two days. I have managed 7 email accounts with 3 different servers for more than 2 years with no problem until last Monday.
    Basically, what I can notice as unusual is this message from Connection Inspector:
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    But I have copy/pasted what Connection Inspector says:
    urityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    +OK
    WROTE Oct 16 14:09:36.480 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    CAPA
    READ Oct 16 14:09:36.531 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    +OK
    WROTE Oct 16 14:09:36.552 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    USER [email protected]
    WROTE Oct 16 14:09:36.622 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    USER [email protected]
    READ Oct 16 14:09:36.640 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1181804d0 -- thread:0x118731cd0
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:09:36.666 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x11adb69c0 -- thread:0x11445b140
    EHLO [192.168.2.5]
    READ Oct 16 14:09:36.677 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x11d403520 -- thread:0x11d40e9f0
    250-dime155.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:09:36.694 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    USER [email protected]
    WROTE Oct 16 14:09:36.720 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    USER [email protected]
    WROTE Oct 16 14:09:36.744 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    PASS ********
    WROTE Oct 16 14:09:36.795 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    PASS ********
    READ Oct 16 14:09:36.806 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:09:36.870 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    +OK
    WROTE Oct 16 14:09:36.871 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1181804d0 -- thread:0x118731cd0
    QUIT
    WROTE Oct 16 14:09:36.924 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x11d403520 -- thread:0x11d40e9f0
    QUIT
    READ Oct 16 14:09:36.948 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    +OK
    READ Oct 16 14:09:36.996 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x11adb69c0 -- thread:0x11445b140
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    READ Oct 16 14:09:37.012 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    +OK
    READ Oct 16 14:09:37.054 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    +OK
    WROTE Oct 16 14:09:37.065 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    USER [email protected]
    READ Oct 16 14:09:37.087 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    +OK Logged in.
    WROTE Oct 16 14:09:37.094 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    PASS ********
    READ Oct 16 14:09:37.124 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    +OK Logged in.
    WROTE Oct 16 14:09:37.179 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    PASS ********
    WROTE Oct 16 14:09:37.219 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x11adb69c0 -- thread:0x11445b140
    QUIT
    WROTE Oct 16 14:09:37.246 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    PASS ********
    WROTE Oct 16 14:09:37.274 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    PASS ********
    WROTE Oct 16 14:09:37.331 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    QUIT
    READ Oct 16 14:09:37.384 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK
    WROTE Oct 16 14:09:37.388 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    QUIT
    READ Oct 16 14:09:37.421 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    +OK Logged in.
    READ Oct 16 14:09:37.519 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    +OK Logged in.
    WROTE Oct 16 14:09:37.578 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    PASS ********
    READ Oct 16 14:09:37.580 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    +OK Logged in.
    READ Oct 16 14:09:37.602 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    +OK Logged in.
    READ Oct 16 14:09:37.649 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x117b0fc60 -- thread:0x117b8b340
    +OK Logging out.
    WROTE Oct 16 14:09:37.657 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    QUIT
    WROTE Oct 16 14:09:37.680 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    QUIT
    READ Oct 16 14:09:37.705 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11867d520 -- thread:0x11734ba80
    +OK Logging out.
    WROTE Oct 16 14:09:37.731 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    QUIT
    WROTE Oct 16 14:09:37.756 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    QUIT
    READ Oct 16 14:09:37.915 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK Logged in.
    WROTE Oct 16 14:09:37.945 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    QUIT
    READ Oct 16 14:09:37.976 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x119c3e2f0 -- thread:0x1189210d0
    +OK Logging out.
    READ Oct 16 14:09:38.010 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x11d40d8c0 -- thread:0x114462fe0
    +OK Logging out.
    READ Oct 16 14:09:38.051 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11863c650 -- thread:0x1168cdf20
    +OK Logging out.
    READ Oct 16 14:09:38.079 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x117349340 -- thread:0x1005af900
    +OK Logging out.
    READ Oct 16 14:09:38.270 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x118714190 -- thread:0x11872ee70
    +OK Logging out.
    CONNECTED Oct 16 14:11:00.752 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    CONNECTED Oct 16 14:11:00.752 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    CONNECTED Oct 16 14:11:00.753 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    CONNECTED Oct 16 14:11:00.754 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    CONNECTED Oct 16 14:11:00.755 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    CONNECTED Oct 16 14:11:00.755 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:25 -- socket:0x11ad0a7d0 -- thread:0x11b3406f0
    CONNECTED Oct 16 14:11:00.756 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    CONNECTED Oct 16 14:11:00.756 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:25 -- socket:0x119c94890 -- thread:0x11d40a2a0
    CONNECTED Oct 16 14:11:00.757 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    CONNECTED Oct 16 14:11:00.757 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    READ Oct 16 14:11:03.770 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:25 -- socket:0x11ad0a7d0 -- thread:0x11b3406f0
    451-The server has reached its limit for processing requests from your host.
    451 Please try again later.
    READ Oct 16 14:11:03.770 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:25 -- socket:0x119c94890 -- thread:0x11d40a2a0
    451-The server has reached its limit for processing requests from your host.
    451 Please try again later.
    READ Oct 16 14:11:03.777 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    220-dime155.dizinc.com ESMTP Exim 4.80 #2 Wed, 16 Oct 2013 13:11:02 -0400
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    WROTE Oct 16 14:11:03.863 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    EHLO [192.168.2.5]
    CONNECTED Oct 16 14:11:04.165 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    CONNECTED Oct 16 14:11:04.168 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    READ Oct 16 14:11:04.193 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    250-dime155.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:11:04.242 [kCFStreamSocketSecurityLevelNone]  -- host:mail.lamontana.com -- port:587 -- socket:0x1179d3df0 -- thread:0x11731e680
    QUIT
    READ Oct 16 14:11:04.262 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK Dovecot ready.
    WROTE Oct 16 14:11:04.300 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    CAPA
    READ Oct 16 14:11:04.486 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK Dovecot ready.
    READ Oct 16 14:11:04.491 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK Dovecot ready.
    READ Oct 16 14:11:04.493 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK Dovecot ready.
    READ Oct 16 14:11:04.495 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    220-dime124.dizinc.com ESMTP Exim 4.80.1 #2 Wed, 16 Oct 2013 13:11:05 -0400
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    READ Oct 16 14:11:04.496 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK Dovecot ready.
    READ Oct 16 14:11:04.497 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    220-dime124.dizinc.com ESMTP Exim 4.80.1 #2 Wed, 16 Oct 2013 13:11:05 -0400
    220-We do not authorize the use of this system to transport unsolicited,
    220 and/or bulk e-mail.
    READ Oct 16 14:11:04.499 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK Dovecot ready.
    WROTE Oct 16 14:11:04.511 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    CAPA
    WROTE Oct 16 14:11:04.536 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    CAPA
    WROTE Oct 16 14:11:04.561 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    CAPA
    READ Oct 16 14:11:04.586 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK Dovecot ready.
    WROTE Oct 16 14:11:04.594 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    EHLO [192.168.2.5]
    WROTE Oct 16 14:11:04.614 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    CAPA
    READ Oct 16 14:11:04.625 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:04.648 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    EHLO [192.168.2.5]
    WROTE Oct 16 14:11:04.667 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    CAPA
    WROTE Oct 16 14:11:04.778 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    CAPA
    READ Oct 16 14:11:04.838 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:04.859 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    USER [email protected]
    READ Oct 16 14:11:04.865 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:11:04.886 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:11:04.921 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    READ Oct 16 14:11:04.938 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    READ Oct 16 14:11:04.974 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    250-dime124.dizinc.com Hello [192.168.2.5] [190.49.30.228]
    250-SIZE 52428800
    250-8BITMIME
    250-PIPELINING
    250-AUTH PLAIN LOGIN
    250-STARTTLS
    250 HELP
    WROTE Oct 16 14:11:04.975 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    USER [email protected]
    READ Oct 16 14:11:04.989 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:05.027 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    USER [email protected]
    WROTE Oct 16 14:11:05.052 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    USER [email protected]
    WROTE Oct 16 14:11:05.080 [kCFStreamSocketSecurityLevelNone]  -- host:mail.spanishinbariloche.com -- port:587 -- socket:0x117944c00 -- thread:0x11b3406f0
    QUIT
    READ Oct 16 14:11:05.107 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK
    CAPA
    TOP
    UIDL
    RESP-CODES
    PIPELINING
    USER
    SASL PLAIN LOGIN
    WROTE Oct 16 14:11:05.116 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    USER [email protected]
    WROTE Oct 16 14:11:05.143 [kCFStreamSocketSecurityLevelNone]  -- host:mail.fundaciondeloslagos.org -- port:587 -- socket:0x1179f2fe0 -- thread:0x11d40a2a0
    QUIT
    READ Oct 16 14:11:05.182 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK
    WROTE Oct 16 14:11:05.200 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    USER [email protected]
    READ Oct 16 14:11:05.303 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK
    WROTE Oct 16 14:11:05.320 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    USER [email protected]
    READ Oct 16 14:11:05.355 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK
    READ Oct 16 14:11:05.379 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK
    WROTE Oct 16 14:11:05.406 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    PASS ********
    READ Oct 16 14:11:05.440 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK
    WROTE Oct 16 14:11:05.476 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    PASS ********
    READ Oct 16 14:11:05.523 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK
    WROTE Oct 16 14:11:05.534 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    PASS ********
    WROTE Oct 16 14:11:05.565 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    PASS ********
    WROTE Oct 16 14:11:05.624 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    PASS ********
    READ Oct 16 14:11:05.648 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK
    WROTE Oct 16 14:11:05.690 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    PASS ********
    READ Oct 16 14:11:05.742 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK Logged in.
    WROTE Oct 16 14:11:05.811 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    PASS ********
    WROTE Oct 16 14:11:05.864 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    QUIT
    READ Oct 16 14:11:05.872 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK Logged in.
    READ Oct 16 14:11:05.901 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK Logged in.
    WROTE Oct 16 14:11:05.947 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    QUIT
    READ Oct 16 14:11:05.969 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK Logged in.
    WROTE Oct 16 14:11:05.971 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    QUIT
    READ Oct 16 14:11:05.987 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK Logged in.
    WROTE Oct 16 14:11:06.023 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    QUIT
    READ Oct 16 14:11:06.028 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK Logged in.
    WROTE Oct 16 14:11:06.080 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    QUIT
    WROTE Oct 16 14:11:06.132 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    QUIT
    READ Oct 16 14:11:06.154 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK Logged in.
    READ Oct 16 14:11:06.189 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x115fbf290 -- thread:0x11867d890
    +OK Logging out.
    WROTE Oct 16 14:11:06.214 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    QUIT
    READ Oct 16 14:11:06.273 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.fundaciondeloslagos.org -- port:995 -- socket:0x11d4f2e80 -- thread:0x118150ca0
    +OK Logging out.
    READ Oct 16 14:11:06.294 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1173e2b40 -- thread:0x1189fad80
    +OK Logging out.
    READ Oct 16 14:11:06.346 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x11864c2e0 -- thread:0x117b48800
    +OK Logging out.
    READ Oct 16 14:11:06.406 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.lamontana.com -- port:995 -- socket:0x1167388b0 -- thread:0x116677ef0
    +OK Logging out.
    READ Oct 16 14:11:06.453 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1167c5cf0 -- thread:0x118151ef0
    +OK Logging out.
    READ Oct 16 14:11:06.540 [kCFStreamSocketSecurityLevelNegotiatedSSL]  -- host:mail.spanishinbariloche.com -- port:995 -- socket:0x1168c80b0 -- thread:0x1188b42a0
    +OK Logging out.

    Deep1974 wrote:
    Can anyone help me solving this question with explaination .
    Given:
    11. public String makinStrings() {
    12. String s = ?Fred?;
    13. s = s + ?47?;
    14. s = s.substring(2, 5);
    15. s = s.toUpperCase();
    16. return s.toString();
    17. }
    How many String objects will be created when this method is invoked?
    A. 1
    B. 2
    C. 3
    D. 4
    E. 5
    F. 61 is created at line 13 as a result of StringBuilder.toString().
    1 is created at line 14 as a result of substring().
    1 is created at line 15 as a result of toUpperCase().
    The Strings "Fred" and "47" at lines 12 and 13 are NOT created when that method is invoked. They are created when the class is loaded.
    Note, however, that some of this is based on current implementations, NOT on requirements of the JLS or VM spec, so really, the answers could be different. Overall, it's a poorly thought out question.
    Edited by: jverd on Jan 28, 2010 2:35 PM

  • Hi there, I'm Medel and I'm currently on Saudi Arabia. I forgot my security questions' answers and need to reset it but I just added an alternate email a while ago. Can anyone help me how to reset it even if I don't have a recovery email registered?

    Can anyone help me how to reset my security questions on my apple account? I forgot the answers and need to reset it. Please Help...

    An alternate email is not used for resetting security questions, do you know if you have a rescue email address on your account ? If you do then follow steps 1 to 5 half-way down this page and you should get a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in Saudi Arabia to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699#S
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • Hi can anyone help me how to get facetime application for iphone 4s

    Hi
    can anyone help me how to get facetime application for iphone 4s since i am not able to find it.

    FaceTime is builtin, there's no icon. Use your Contacts app and if the recipient has iPhone 4/4S, iPod Touch 4th G, iPad 2 or Mac, you can FaceTime them using Wi-Fi.
    Message was edited by: ckuan

  • HT2371 Can anyone help. How do I set my iPad to English in an Arabic country i.e. Qatar

    Can anyone help. How do I set my iPad to English in an Arabic country i.e. Qatar

    Hi Gary,
    Did you look under:
    Settings>General>International>Lauguage to see if English is an option?
    GB

  • Can anyone tell me how to deal with a forgotten password

    Can anyone tell me how to deal with a forgotten password

    Password for what?
    Itunes account?
    Passcode on the ipad?
    iPad 2 User Guide (For iOS 4.3 Software)

  • Just set-up my first IPad (Air) using ICloud.  This resulted in none of my desktop Outlook icons working.  Can anyone tell me how ICloud works and restore functional Outlook icons on my desktop.

    Just set-up my first IPad (Air) using ICloud.  This resulted in none of my desktop Outlook icons working.  Can anyone tell me how ICloud works and restore functional Outlook icons on my desktop?

    Just set-up my first IPad (Air) using ICloud.  This resulted in none of my desktop Outlook icons working.  Can anyone tell me how ICloud works and restore functional Outlook icons on my desktop?

Maybe you are looking for

  • Upgraded to Desktop 6.2.2, now 755P crashes

    I've been a happy treo user for years. A few days ago, I had a problem. I upgraded Palm Desktop to 6.2.2 and synched my 755P. Somewhere in the process (it might have been from the download page), I got a message that some programs might be incompatib

  • How to preserve group ownership

    I recently created a group called "special", added some users (including myself), and successfully created a directory where all users in the "special" group can read and write. The umasks have been changed from the default 0022 to 0002 in /etc/launc

  • Designer asks "Can my computer go on?"

    I am a full time freelance graphic designer. I usually have Photoshop, Illustrator, Chrome, Mail, Bridge and a few other support programs going at once, all day long. I have a 24" imac, mid 2007 (OMG, where does the time go?!), 2.4 GHz Intel Core 2 D

  • Help with "The iTunes Library file cannot be saved. An unknown error occurred (-54)"

    Hi, Has anyone else had this problem?  And how do I correct it?  "The iTunes Library file cannot be saved. An unknown error occurred (-54)"

  • [q] variables not seen in WLPI business operation window

    hI, I am assigning a java object instance to WLPI variable. Then I try to call one of the methods of this Java Object (Using business operation) but in the Drop Down list in the WLPI I don't see the assigned variable ! Am I missing something ? ( I Us