OPMN and HTTP server problem

Hi all,
I'm trying to install Application Server Infrastructure on RHEL 3, I Managed the connect the OID with database repository on another server..
But the installation failed at OPMN configuration assistant-start HTTP server!
I continued the installation anyway and used configToolCommands to configure the rest of the required tool, so now every thing is configured well exept for the (OPMN configuration assistant-start HTTP server)
in the installation log file, this was what I found:
ias-component/process-type/process-set:
HTTP_Server/HTTP_Server/HTTP_Server
Error
--> Process (pid=14674)
failed to start a managed process after the maximum retry limit
Log:
/u01/app/oracle/product/9.0.4/IMHome/opmn/logs/HTTP_Server~1
Invalid Exit Code. The following result code will be used for configuration assistants: 1
Configuration assistant "OPMN Configuration Assistant - start HTTP Server" failed
So..Any idea what could be the problem? and how can I solve it?
Plz,reply as soon as you can, it's urgent..
Thx.
Asma

try this...there might be a port conflict with webcache and Http.
if you do not need webcache..stop it and start http.
opmnctl stopproc ias-component=Webc{C}ahe
opmnctl startproc ias-component=HTTP_Server
i am positive it will be port conflict. try running your http in a different port.

Similar Messages

  • Error Message when installing Companion CD for HTMLDB 1.6 and HTTP Server

    Hi. First time forum user so bear with me.
    I'm not sure if this is the correct forum for this but the assistance of anyone who may be able to shed some light on the problem whould be greatly appreciated. I am having a problem when attempting to install the Companion CD for HTMLDB 1.6 and HTTP Server, details given below:
    The following Oracle components have been successfully installed
         Oracle 10gR2 Database.
         Oracle 10gR2 Database patch 10.2.03.
         Critical patch up date (security).
    The following Oracle component failed to install.
         Companion CD for HTMLDB 1.6 and HTTP server
    Scenario leading up to failure
         Extracted companion CD installation files to D:\oracle\utilities\Oracle_10_2_0_Companion
         Executed D:\oracle\utilities\Oracle_10_2_0_Companion\companion\setup.exe.
    The following error message is displayed in a "JAVA VIRTUAL MACHINE LAUNCHER" dialog box
         "Could not find the main event class. Program will exit."
    I have been attmepting to resolve this problem for over a week and have already checked the following with no resolution to the problem:
    Cause. This issue may have to do with two issues (and may occur more on Windows):-
    1. Within the ORACLE_HOME directory full pathname there is a space.
    2. The directory from where the software / patch is being installed has a space within the directory full
    pathname (where the file for the installation by default is named products.jar or products.xml).
    Solution. To implement the solution, please execute the following steps:-
    1. Rename the full pathname directory NOT to contain a space.
    2. Launch again the OUI... and verify if the problem occurs.
    Any further guidance would be greatly appreciated.
    Edited by: user10386555 on 03-Oct-2008 02:51

    Can you install using OUI from the RDBMS installation? IIRC, there is a problem using OUI on companion to install companion items.

  • Oracle database (10.2.0.4) and HTTP server / HTML DB conflict

    Hi there,
    I installed a fresh 10.2.0.1 (patched with 10.2.0.4) oracle database on Oracle Entreprise linux 5.7, and HTTP server + HTML DB products from the companion CD. Both are located in different home directory:
    ODB:  $ORACLE_BASE/product/10.2.0/db_1
    APEX: $ORACLE_BASE/product/10.2.0/apex
    I just discovered that logs files ($APEX/opmn/logs/) have filled up my entire disk this week end. After some googling / digging, I've read that there is a conflict between the ONS services that run for both products on the same port. Opening the configuration files of both products:
    +$ODB/opnm/conf/ons.config+
    +$APEX/opnm/conf/opnm.xml+ (btw, ons.conf is empty)
    I indeed saw that they both use port 6113 as local port and 6200 as remote port. The workaround I've found in variuos places is to either change the port number, or unsuscribe ONS for the database listener (and sometimes both).
    Question 1: what is the best solution ? what are the consequences for the database listener in case of unsuscribtion ?
    I also saw that opnm.xml in APEX configuration file is making use of the $ORACLE_HOME environment variable, which I define in my /etc/profile as $ORACLE_BASE/product/10.2.0/db_1. So I guess the opnm of APEX is looking at the wrong place... Yet if I change ORACLE_HOME in my /etc/profile, I won't be able to run dbstart upon stgartup, as it is run using ORACLE_HOME in a init.d script...
    Question 2: Can someone clarify things up about the exact relationship between oracle database and HTTP server ? How should I deal with ORACLE_HOME environment variable, which one use it and when... ?
    Note that I'm completely new to Oracle (and hence APEX).
    Thanks in advance!

    Billy  Verreynne  wrote:
    There should be no conflicts - except for configuration ones.
    Oracle is multi home capable. Thus multiple Oracle s/w products installed into different homes and these products running side by side.
    The conflict is system resources - like a TCP port. That port cannot be shared by multiple processes. So you need to make sure that each s/w component that needs a TCP listener end-point, has a unique port number allocated for it to use.
    As mentioned, the Oracle Apache server is an Oracle client with respect to Oracle client-server architecture. It simply needs a client OCI driver to connect to the Oracle database instance. So whether you run Oracle Apache on the same server as the database instance, or on another server all together - this makes no difference. The Oracle Apache s/w will be using its home for running. It has no need for anything from the database instance's home directory. Thus there are no conflicts - as long as you correctly keep them separated and not set the wrong home for the wrong component or include the wrong path (to another home's executables).
    OK, so to summarize a bit:
    - I should just be carefull when running startup script which will launch all services upon startup, i.e. changing the value of ORACLE_HOME before running each product startup script (dbstart => ORACLE_HOME = (..)/10.2.0/db_1, opmnctl => ORACLE_HOME = (..)/apex). I'm still quite worried because ORACLE_HOME is heavily used in opmn.xml but anyways.
    - That's basically it: when each product's services are running, they do not use ORACLE_HOME (and such) anymore, hence no conflict from this point of view.
    Also do not attempt to use IPC connectivity between the mod_plsql Apache module and the database instance. Does not make sense ito performance. Shared server should be considered and localhost TCP connectivity can be used.Well as I don't really know IPC yet, so hopefully I won't get into troubles. Just to be clear about that, i've this in my listener.ora:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = apex.nwk)(PORT = 1521))
    Does that mean that ICP will be used somehow ?
    Thanks again from your help.
    Edited by: lv on 27 févr. 2012 06:42

  • Oracle service, Listener and http server does not start automatically

    Hello,
    I have Oracle 9i release 2 installed on Unix HP box if system restart in case of power failure the Oracle service, Listener and http server does not start automatically, is there any ready reference available to check what's wrong is happening(I don't have knowledge of Unix).
    Thanks, Khawar.

    Hi Rajesh,
    Thanks for reply, I will check this link and will be back if facing problem.
    Regards, Khawar.

  • Oracle and http server to install apex

    Dears,
    My old configuration was a solarisx86 (installation : 10202_database_solx86 ,10202_companion_solx86).
    I would like to install a new version of apex on a node of a cluster HP UX.
    Could someone tell me what and where can i find an oracle 10 compatible apex and and http server for this?
    thanks in advance.
    Celio

    [10g Release 2 downloads on OTN|http://www.oracle.com/technology/software/products/database/index.html]. (Can't be more specific than this because you haven't identified your flavour of HP-UX.) Oracle HTTP Server is on the Companion CD.

  • Single Sign-on and HTTP Server not started

    I have installed oracle9iAS on SuSE Linux Enterprise Server 8 (SLES 8) which is certified by Oracle to run oracle9iAS. Everything was working propely after installation but when I restarted the server, the listener, the iasdb instance, and the EM started properly but when I went to http://servername:1810 and clicked on start all i got them all started but the HTTP Server and the Single Sign-on. When I tried to start the HTTP Server individually i got the following error:
    oracle.sysman.emSDK.util.jdk.EMException: The opmn request has failed. From opmn: HTTP/1.1 204 No Content Content-Length: 0 Content-Type: text/html Response: 0 of 1 processes started. Check opmn log files such as ipm.log and ons.log for detailed.
    I checked the log and its showing the following:
    03/10/25 16:44:23 Connection 0,192.168.10.11,6200 message missing 'Content-Lengt
    h'
    GET /dms0/Spy?recurse=all&format=xml&operation=get&value=false&units=true&descri
    ption=true&name=%2F HTTP/1.1
    Host: linux2.future:6200
    Connection: Keep-Alive, TE
    TE: trailers, deflate, gzip, compress
    User-Agent: RPT-HTTPClient/0.3-3
    Cache-Control: no-cache
    Pragma: no-cache
    Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
    I tried to start it from command line with the command
    $dcmctl start -ct ohs
    and it returned ADMN-906025
    Anyone can help me solving this problem??

    This error Can be caused by a syntax error in your httpd.conf file, check it / correct it try reloading OHS.
    Ensure that emctl is not running when you run any dcmctl commands! If you have already run any dcmctl commands with emctl running that can cause your problem - if so to fix it solution is really to re-install.

  • Intermedia Database Agent and HTTP Server

    I have intermedia web agent 8.1.5.4 running on nt sp6. i am
    trying to have a username and password in the database agent for
    uploading and retrieving files.
    this works when i use IIS 4.0, however it does not work when i
    use HTTP server. it will ask for username and password.
    here is the database agent description
    service = oracle
    database_user = icras2
    database_password = <password>
    authorized_request_class = clipboard
    authorized_sql_statements = any
    authorized_sql_procedures = *
    display_name = icras2
    authentication_realm_name = icras2
    retrieve_database_agent
    upload_database_agent
    clipboard_user = icras2
    Thanks
    Melissa

    I think it would be helpful if you described the reason that you would like to do this.
    I know that in some environments the powers that be will not install Apex on the database server.
    In such an environment you could create a local Oracle instance and install Apex yourself and access
    the database containing the data via dblinks. You'd have to be careful if you are processing lots of data
    in such a setup.
    I saw another response to your post and it looks like the person that responded assumed that you would install
    apex into the daabase that keeps all the data. However, if ypur administrators will not install Apex (and I have
    come across this) then you cannot follow that advice.

  • Web Center Installation and HTTP Server

    I am new to server technologies. Trying to install Web Center on windows server, but it appears Web server HTTP address and port is required to install UCM.
    May I know how to find if any Web server is already exists on my system which is Window server 2003?
    I already installed Web logic and SOA Suite. By chance any of them include Web Server? If not, can you recommend one HTTP server for UCM?
    Appreciate your help
    Thanks
    Reddy N

    Thanks for the info. When I tried to install Web Tier I am getting the following exception. Any idea about this error and resolution? Appreciate help.
    0000IFRK85hDwWWFLzrI8A1AhljR000008,0] ***************************************************
    [2009-09-20T23:37:09.859-07:00] [as] [WARNING] [] [oracle.as.config] [tid: 17] [ecid: 0000IFRK85hDwWWFLzrI8A1AhljR000008,0] Failed to start component ohs1[[
    oracle.as.config.ProvisionException: HTTP status code = 204 : 0 of 1 processes started.
         at oracle.as.config.impl.OracleASComponentBaseImpl.manageProcess(OracleASComponentBaseImpl.java:892)
         at oracle.as.config.impl.OracleASComponentBaseImpl.start(OracleASComponentBaseImpl.java:1011)
         at oracle.as.install.webtiercd.webtierconfig.util.CreateComponent.createOHSComponentWrapper(CreateComponent.java:153)
         at oracle.as.install.webtiercd.webtierconfig.util.CreateComponent.createOHSComponentAndRegisterWithDomain(CreateComponent.java:416)
         at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.configureOHSWithDomain(WebtierConfigurationAction.java:310)
         at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.configureWithDomain(WebtierConfigurationAction.java:192)
         at oracle.as.install.webtiercd.webtierconfig.actions.WebtierConfigurationAction.doExecute(WebtierConfigurationAction.java:177)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:82)
         at java.lang.Thread.run(Thread.java:619)
    Regds
    Reddy

  • Difference between HTTP Server port and HTTP Server listen port

    Hi,
    What's the difference between the following?
    Oracle HTTP Server port = 7780
    Oracle HTTP Server listen port = 7781
    They are the ports used in my 9ias 9.0.3 instance.
    Please advise.
    Thank you.

    Hi,
    The server port, 7780, is port where HTTP server response and listen ports are other ports tha HTTP Server can listen. In IAS, the default configuration, the server port is response for Web Cache and Web Cache connect with HTTP Server in listen port.
    Marcio Mesti

  • Client Applet and EJB Server problem

    Hi,
    I developed a applet client that tries to connect to an EJB on the server side. The Applet runs okay in JDev3 but if I deploy it and test it outside the JDev tool I get an error. I tracked the problem to the following line of code:
    ic = new InitialContext(environment);
    Do I run into an applet security problem? If so what do i have to do to allow the applet to read/write to the local system?
    Thanks for any hints!
    Peter
    Error I get
    JAR cache enabled.
    Opening http://pete/gateway/clientmanagement.jar no proxy
    CacheHandler file name: C:\WINNT\Profiles\peter.000\Temporary Internet Files\Content.IE5\ALMN6PAZ\clientmanagement[1].jar
    Creating an initial context
    Opening http://pete/gateway/oracle/oas/container/nls/Version_en_US.class no proxy
    CacheHandler file name: null
    null

    Hi,
    I have still problems getting the client applet running. I tested it with the appletviewer and I modified the security.policy file. I allow the applet to almost everthing but i still get the following error:
    What do I do wrong? Do I really have to sign the jar file? Do I miss some stub classes?
    Thanks for any hints...
    Peter
    JAR cache disabled.
    Opening http://pete/Gateway/. no proxy
    Opening http://pete/Gateway/. no proxy
    Opening http://pete/Gateway/test/Client.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\peter.000\Temporary Internet Files\Content.IE5\ALMN6PAZ\Client[1].class
    Opening http://pete/Gateway/test/Client$1.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\peter.000\Temporary Internet Files\Content.IE5\ALMN6PAZ\Client$1[1].class
    Creating an initial context
    Looking for the EJB published as 'Gateway/GatewayProcessorRemote'
    Opening http://pete:80/_RMProxyURL_ no proxy
    Naming exception!
    [Root exception is org.omg.CORBA.NO_IMPLEMENT: minor code: 0 completed: No]javax.naming.ServiceUnavailableException
    at oracle.oas.jndi.oas.SecCosNamingContext.resolve(SecCosNamingContext.java:265)
    at oracle.oas.jndi.oas.BeanContext.lookup(BeanContext.java:328)
    at oracle.oas.jndi.oas.BeanInitialContext.resolve(BeanInitialContext.java:265)
    at oracle.oas.jndi.oas.BeanContext.lookup(BeanContext.java:328)
    at oracle.oas.jndi.oas.BeanInitialContext.lookup(BeanInitialContext.java:165)
    at oracle.oas.jndi.oas.WrapperContext.lookup(WrapperContext.java:78)
    at oracle.oas.jndi.oas.BeanContext.lookup(BeanContext.java:422)
    at javax.naming.InitialContext.lookup(InitialContext.java:288)
    at test.Client.initializeEJB(Client.java:104)
    at test.Client.startButton_actionPerformed(Client.java, Compiled Code)
    at test.Client$1.actionPerformed(Client.java:55)
    at java.awt.Button.processActionEvent(Button.java:308)
    at java.awt.Button.processEvent(Button.java:281)
    at java.awt.Component.dispatchEventImpl(Component.java, Compiled Code)
    at java.awt.Component.dispatchEvent(Component.java, Compiled Code)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java, Compiled Code)
    at java.awt.EventDispatchThread.pumpOneEvent(EventDispatchThread.java, Compiled Code)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:92)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:83)
    null

  • Security Update 2008-007 and Exchange Server Problem

    At work I access an exchange server using Entourage 2004 under Leopard 10.5.5. I just installed the 2008-007 Security Update and now I can no longer connect with the exchange server. Other network services are working, just can't access exchange. Oddly, I am also unable to access the my work mail using Outlook Web Access (OWA) in Safari, but it works in Firefox. Has anyone else run into these problems? Any advice? Thanks.
    M. Ward

    Hi,
    I'm having exactly the same problem at work. We use a Microsoft Exchange Server 2007 here and I can't connect to my folder in the server since yesterday, either on my desktop iMac and on my MacBook. When I click on the server icon I have for a long time in the dock, after sometime waiting I get the message "Connection failed-Maybe the server doesn't exist......". I also tried through the "connect" icon in a Finder window and even changing the server adress to smb://nameoftheserver doesn't work.
    I don't have the OWA problem since it works with https:// and not with http://
    Hope somebody can help us.
    Ansumane

  • Mail.app and Exchange Server Problems?

    I am an Apple Mail user and my university just switched to an Exchange Server 2003 for student e-mail. The university is only supporting Entourage, but I have configured Mail to work with Exchange without any major problem. This week, I have noticed that I have a problem where Mail.app will say that I have four new e-mails in my Exchange in-box. When I click on my Exchange in-box, no new e-mail appears. After experiencing this problem for about a week, I finally logged onto our Exchange web access site for the university. I discovered that I did indeed have four new e-mails in my in-box, but these e-mails were not showing up in Mail.app. Interestingly, all of the e-mails were undeliverable e-mails that had popped back because I had the wrong address. I am wondering why these e-mails would show up in on web access, but not show up in Mail.app.
    I have spoken with our university tech. support numerous times and they have been unable to figure out the problem. It seems this may be a Mail.app isse as opposed to an Exchange problem.
    Thanks,
    Joe Biedlingmaier

    I use Exchange at work and have 5 Macs working with it w/o problems. The trick is to correctly specify SMPT and Outlook Web Access Server.
    Do the following:
    When you create a new mail account, choose IMAP or Exchange (if it shows on the list)
    for Email Address specify your exchange email address
    continue
    for Incoming Mail Server: use name of the server without any prefixes such as mail. (The example shown under the box is wrong. It took me forever to figure it out)
    for username and password use the same one you use when log in into exchange webmail
    continue
    for outgoing email server use the name of the server, again without smtp.
    you may need to use authentification in order to send mail. In that case use the same user and password as when you log into your exchange
    I was doing it as I was writing this to make sure it workes. It does.

  • Upload and http auth problem

    Hello.
    I wrote flex application with http basic authorization. After
    I successfuly loginin i try to upload file and independently of
    used browser I recieve authorization window from IE and I have to
    enter login/passwd second time. After it everything work fine and I
    can upload more files without authorization window. How can I make
    away this window? Is there any securinty flash settings?
    bye...

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - Working with file upload and download:
    The SWF tried to upload a file to a server that requires
    authentication (such as a user name and password). During upload,
    Flash Player does not provide a
    Link:
    http://livedocs.adobe.com/flex/3/html/17_Networking_and_communications_7.html
    9 Flex File Upload Examples Visited:
    Flash 8 File Upload Download. As we know the Flex Upload is
    actually use the Flash 8 FileReference object to do the work. The
    guy who is writing the book
    Link:
    http://www.flex888.com/296/9-flex-file-upload-examples-visited.html
    Flex 3 - Example: Uploading and downloading files:
    The main application file in Flash (FLA) or Flex (MXML). ...
    A class that includes methods for uploading files to a server.
    Link:
    http://livedocs.adobe.com/flex/3/html/17_Networking_and_communications_9.html
    File Upload in Flex/Flash in Internet Explorer:
    Because Macromedia Flash doesn't include the capability to
    upload files, a Macromedia Flex developer will need to use multiple
    technologies to add uploading
    Link:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19382
    Adobe - Developer Center : Multiple file upload with Flex
    and:
    Sep 11, 2006 ... Through the Multi-File Upload application,
    you will learn how to do the ... capabilities of Flex 2, Flash
    Player 9, and ColdFusion MX 7 file
    Link:
    http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html
    Derrick Grigg's Blog, Flex and Flash file uploading with
    return data:
    I see one for Flex and other for Coldfusion, but none for
    Flash. Maybe the title should be Flex and CF file uploading with
    return data?
    Link:
    http://www.dgrigg.com/post.cfm/08/02/2007/Flex-and-Flash-file-uploading-with-return-data
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • OSB call to remote Web Service via https proxy and https CONNECT problem

    Hi
    I have a service that calls a web service on another server as a web service. This call is via https and the certificate validation raises no errors.
    I now want this call to go via a squid httpd proxy on port 3128 on some machine. So I would like to use HTTP CONNECT (RFC 2817) proxying,. But when I set up this as a proxy, I am getting "Certificate chain" error messages. The certifcate chains is no different now from when I called without the http proxy, so what am I doing wrong? Does OSB support HTTP CONNECT?
    -Johan

    The exeption we are getting is BEA-380000
    General runtime error: [Security:090477]Certificate chain received from XXX - 123.123.123.123 --> test.salesforce.com was not trusted causing SSL handshake failure.
    This is of course not relevant if the callout were using CONNECT. In the CONNECT scenario, OSB would not care about XXX's certificate.

  • Thunderbird 24.0 and mail server problem (STARTTLS mode)

    Apple XServer MAC OS 10.6.8
    Server Apps 10.6.5 (328.4)
    I have thunderbid 24.0 problem with Apple XServer 10.6 in STARTTLS mode? Thunderbird 17.0 working fine with mail server without any problem.
    In TB 24, when you use STARTTLS to make security connection to mail server. And you send the message, you getting error messages that you failed to sent? In TB 17, no error and able to sent message without any problem.
    Also note: that Thunderbird 24 for Windows ALSO problem as well. same problem as above.
    I wonder if mail server need update or change setting to be working with Thunderbird 24.0?
    Thanks!
    Worlaan

    That what problem I have.
    When I sent the message and got error message: Send Message Error. Sending of message failed. The message could not be sent using SMTP server mail.****.*** for an unknown reason. Please verify that your SMTP server settings are correct and try again, or contact your network administrator.
    smtp.log from TB 24:
    1882811584[100330240]: SMTP Connecting to: mail.****.***
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 220 ****.*** ESMTP Postfix
    1882811584[100330240]: SMTP entering state: 14
    1882811584[100330240]: SMTP Send: EHLO Fanwood-200.local
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-****.***
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-PIPELINING
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-SIZE 67108864
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-VRFY
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-ETRN
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-STARTTLS
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-ENHANCEDSTATUSCODES
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250-8BITMIME
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 250 DSN
    1882811584[100330240]: SMTP entering state: 4
    1882811584[100330240]: SMTP entering state: 21
    1882811584[100330240]: SMTP Send: STARTTLS
    1882811584[100330240]: SMTP entering state: 0
    1882811584[100330240]: SMTP Response: 220 2.0.0 Ready to start TLS
    1882811584[100330240]: SMTP entering state: 19
    1882811584[100330240]: SMTP entering state: 14
    1882811584[100330240]: SMTP Send: EHLO Fanwood-200.local
    (It stopped here.)
    And it never show security certificate alert.  Note: I changed domain name to hide. (****.***)

Maybe you are looking for

  • How do I find a photo file in the Finder + future migration question

    Being a recent Mac convert, I am just getting used to the 'complete control' approach to photo management that iPhoto has. I'm used to knowing where my photos physically reside on my computer - this is useful for doing things like uploading photos to

  • Toshiba PX1267E-1G32 Ext HD Error Message says USB device has malfunctioned

    Hi I have Windows XP and have been using my Toshiba External HD for a few years. I am a novice. Suddenly yesterday the below message appeared and I cannot get any computer to recognise the device. "+USB Device Not Recognized+ +One of the USB devices

  • QM integration with WM and PLM

    Dears, Can any body tell me what are the intergartion area for SAP WM and SAP PLM with QM module Thanks in advance Abu Fathima Edited by: Abu Fathima on Feb 15, 2012 4:22 AM

  • PrintWriter not working !!

    import java.io.*; public class FileDemo {      public static void main(String args[]) {           if (args.length != 1) {                System.out.println("Must enter text to write to file");                return;           try {           PrintWri

  • Spry and Lightroom?

    Just curious if Adobe is considering adding Spry photo gallery solution as an option to Lightroom? Any Spry developer heard anything, if not go kick on the devs of LR and make it happen please.