MSA: Conntrans send failing

Dear colleagues,
I am working on CRM 4.0, MSA 4.0 release.
MSA is installed on laptop and working fine. At this point, Conntrans is also sending and receiving data successfully.
But don't know why, after some time, sending is failing. Still the Receiving is working fine.
I tested the Adaptor connection in Client console. it is successful. Also I released and reassign the site again, but still the problem exists.
Appreciate your help....
Regards
Milind

Take a look at the system log(sm21) and check for any errors during the time of the conntrans.
--> also check for short-dumps (st22), ... you never know.
if none of this provides any answers, activate the RFC trace for the communication user and perform the conntrans.
--> the trace file should give you a clue as to why the send is not performed.
If you can't find anything on the server, the problem is probably linked to the client itself. You can activate the profiler to check whether any SQL statements are going bad when activating the send.
Michael.

Similar Messages

  • MSA Conntrans fails after machine name change

    Hi
    I have 5 remote laptops that have had their name changed and conntrans will no longer work.
    When I ran  SELECT @@SERVERNAME  on database it retunred old name so I then ran 
    sp_dropserver  'oldname'
    sp_addserver 'newname' , local
    Stop / start SQL server 
    SELECT @@SERVERNAME   now returns new name . However Conntrans still failing. Is the machine name embedded anywhere else ?
    The mobile application does open it appears to be just the conntrans process that will not function.
    Has anyone done this before ? Is it possible ?
    Best Regards M

    Hi Melita,
    Please check note 1253027. This should solve your problem.
    regards
    Vivek

  • How to log "send failed" to a file instead of showing a pop-up message

    Hi, I am working with Flex 4.1 on Linux but I suppose this problem must be common to all versions of Flex.
    I am working on a Flex client front-end which connects to a Java back-end (in Tomcat) via BlazeDS. All of this works OK 99.9% of the time. However, from time to time (let's say, if the client browser has been open for several hours), the user gets a pop-up message saying "Send failed". It seems to be a harmless transient error -- if the user closes the pop-up, the front-end carries on as usual and seems to continue to work as expected.
    Is there a way to have the "send failed" message written to a log file instead of opening a pop-up message?
    As a separate problem, if anyone has seen occasional, transient "send failed" errors, I would be interested to hear about that. If you have some solution to make them go away, that would be terrific.
    Thanks for your time, I appreciate your help.
    Robert Dodier

    Firefox since 20.0 has had the current download history way it is now. It was possible to enable the old manager up until Firefox 26.0 was released.
    One way to have Downloads in a tab is to use '''about:downloads''' in a tab which can be found in the about: urls list about:about

  • Javax.xml.soap.SOAPException: Message send failed: Connection timed out

    Hi,
    where can i adjust the timeout for:
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: Connection timed out: connect
    The webservice needs 5min to return a message....
    I found a duplicate of this on thread:
    error initiating a test instance
    But no answer
    Message was edited by:
    HEWizard

    I found http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/events.htm#BABGGADB
    Setting Timeouts for Synchronous Processes
    For synchronous processes that connect to a remote database, you must increase the syncMaxWaitTime timeout property in the SOA_Oracle_Home\bpel\domains\default\config\domain.xml file:
    <property id="syncMaxWaitTime">
    <name>Delivery result receiver maximum wait time</name>
    <value>60000000</value>
    <comment>
    <![CDATA[The maximum time the process result receiver will wait for a
    result before returning.  Results from asynchronous BPEL processes are
    retrieved synchronously via a receiver that will wait for a result from the
    container.
            <p/>
            The default value is 60 seconds.]]>
    </comment>
    </property>
    But this changes nothing...
    Is this value ignored?

  • HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: String index out of range: -7

    All -
    I'm new to consuming web services in JDeveloper. I'm using Oracle JDEV 10.1.3.3/OC4J.  I'm using this version since it is compatible with Oracle EBS 12.1.3.  My intent is to pull data from our third party recruitment app (Success Factors) and load that data into Oracle HRIS.  I'm already doing this through a .NET application.  I'm converting it to be a Java Concurrent Program in EBS.  The code listed below is a stub call to verify I'm on the right track. I created a JDeveloper Web Services proxy project.  I'm testing it locally on my windows desktop.  When I'm able to consume the service successfully, then I'll think about moving it to the EBS server.
    I'm getting the following error when I invoke the following service:
    HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: String index out of range: -7
    End point is: https://api4.successfactors.com/sfapi/v1/soap?wsdl
    Any help/assistance would be much appreciated. 
    Below is my code and output of my test:
    package emsc.oracle.apps.emscper.sfapi.proxy;
    import HTTPClient.HTTPConnection;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.IsValidSession;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.IsValidSessionResponse;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.Login;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.LoginResponse;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.LoginResult;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.Logout;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.LogoutResponse;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.SFCredential;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.SFParameter;
    import emsc.oracle.apps.emscper.sfapi.proxy.types.sfobject_sfapi_successfactors_com.Error;
    import java.io.File;
    import javax.xml.rpc.ServiceFactory;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Date;
    import javax.xml.ws.BindingProvider;
    import javax.xml.soap.SOAPException;
    import java.util.Map;
    import oracle.security.ssl.OracleSSLCredential;
    public class SFAPITest {
        // Declare members:      
        private String companyId;
        private String userName;
        private String password;
        private String developerKey;
        private Date   effDt;
        private String greaterThanEffDt;
        private String lessThanEffDt;
        // Declare constants:      
        final static private String breakLine = "+---------------------------------------------------------------------------+";
        final static private String format    = "yyyy-mm-dd";      
        private enum ReqId {
            PrimaryReq(25),
            PrimaryReqCEO(26),
            EmCarePrimary(27),
            RTI(28),
            EmCareClinical(29);
            private int reqId; 
            private ReqId() {
            private ReqId(int value) {
                reqId = value;
            public int getReqId() {
                return reqId;
        // Getters and Setters:  
        protected String getCompanyId() {
           return this.companyId;
        protected void setCompanyId(String value) {
           this.companyId = value;                 
        protected String getUserName() {
           return this.userName;
        protected void setUserName(String value) {
           this.userName = value;                 
        protected String getPassword() {
           return this.password;
        protected void setPassword(String value) {
           this.password = value;                 
        protected String getDeveloperKey() {
           return this.developerKey;
        protected void setDeveloperKey(String value) {
           this.developerKey = value;                 
        protected Date getEffDt() {
            return this.effDt;
        protected void setEffDt(Date value) {
            this.effDt = value;                 
        protected String getGreaterThanEffDt() {
           return this.greaterThanEffDt;
        protected void setGreaterThanEffDt(String value) {
           this.greaterThanEffDt = value;                 
        protected String getLessThanEffDt() {
           return this.lessThanEffDt;
        protected void setLessThanEffDt(String value) {
           this.lessThanEffDt = value;                 
        public void runProgram()
            SFAPIService mySFAPIService;
            String CompletionText = "";
            String effDtStr2 = null;
        /* Code your program logic here.
        * Use getJDBCConnection method to get the connection object for any
        * JDBC operations.
        * Use CpContext provided commit,rollback methods to commit/rollback
        * data base transactions.
        * Don't forget to release the connection before returning from this
        * method.
        /* Call setCompletion method to set the request completion status and
        * completion text.
        * Status values are ReqCompletion.NORMAL,ReqCompletion.WARNING,
        * ReqCompletion.ERROR.
        * Use Completion text message of length 240 characters. If it is more
        * than 240 then full string will appear in log file and truncated 240
        * characters will be used as request completion text.
        try
            ServiceFactory factory = ServiceFactory.newInstance();
            mySFAPIService = (emsc.oracle.apps.emscper.sfapi.proxy.SFAPIService)factory.loadService(emsc.oracle.apps.emscper.sfapi.proxy.SFAPIService.class);      
            SFAPI api = mySFAPIService.getSFAPI();
           /// SFAPI api = new SFAPI();
            //Map<String, Object> requestContext = ((BindingProvider) api).getRequestContext();
            //requestContext.put(BindingProvider.SESSION_MAINTAIN_PROPERTY, true);
            System.out.println("ServiceName => " + mySFAPIService.getServiceName().toString());
            System.out.println("End Point   => " + mySFAPIService.getServiceName().toString());
            System.out.println(breakLine);
            // Authentication: Login to SFAPI:
            SFCredential credential = new SFCredential();
            // Fake credentials being passed in for this post:   
            credential.setCompanyId("XXX");
            credential.setUsername("XXX");
            credential.setPassword("XXX");
            credential.setDeveloperKey("XXX");
            HTTPConnection httpsConnection = null;       
            OracleSSLCredential _credential = new OracleSSLCredential();      
            _credential.setWallet("\\\\\\C:\\Program Files\\Java\\jdk1.6.0_33\\jre\\lib\\security", "ParkEstes3");
            /*System.setProperty("javax.net.ssl.trustStore","C:\\\\\OraHome_1\\jdev\\jdevbin\\jdk\\jre\\lib\\security\\keystore");
            System.setProperty("javax.net.ssl.trustStorePassword","changeit");  
            System.out.println(System.getProperty("javax.net.ssl.trustStore"));*/
            // SFParameter: Define a generic SFParameter List.  This is a necessary parameter
            // to invoking calls in SFAPI:      
             /*System.setProperty("javax.net.ssl.keyStore",
             "file:\\\C:\\jdk1.4.1\\jre\\lib\\security\\client.keystore");
             System.setProperty("javax.net.ssl.keyStorePassword","welcome");         */
            /*  System.setProperty("oracle.net.wallet_location",
                          "(SOURCE=(METHOD=file)(METHOD_DATA=(DIRECTORY=\\\C:\Users\dparrish\Oracle\WALLETS)))");  // (2)                     */
            File kstore = new File("C:\\OraHome_1\\jdev\\jdevbin\\jdk\\jre\\lib\\security\\jssecacerts");
            boolean exists = kstore.exists();
            if (!exists) {
                System.out.println("Keystore does not exist");
            else {
                System.out.println("Keystore does exist");
            System.setProperty("javax.net.ssl.trustStore", kstore.getAbsolutePath());
            System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
            //System.setProperty("proxySet", "false");
            //System.setProperty("http.proxyHost", "127.0.0.1");
            //System.setProperty("http.proxyPort", "8080");
            System.out.println(kstore.getAbsolutePath());
            List<SFParameter> lst = new ArrayList<SFParameter>();
            SFParameter param = new SFParameter();
            param.setName("");
            param.setValue("");
            lst.add(param);      
            SFParameter[] sfParam = lst.toArray(new SFParameter[lst.size()]);
            Login login = new Login();
            try {
                login.setCredential(credential);
                System.out.println("1");
                login.setParam(sfParam);
                System.out.println("2");
                LoginResponse loginResponse = new  LoginResponse();
                LoginResult loginResult = new LoginResult();
                try {
                     loginResponse = api.login(login);               
                catch (Exception e ) {
                    System.out.println(e.getMessage());
                System.out.println("3");
                try {               
                     loginResult = loginResponse.getResult();
                catch (Exception e ) {
                    System.out.println(e.getMessage());
                System.out.println("4");
                IsValidSession vs = new IsValidSession();                  
                IsValidSessionResponse isValidSessionResponse = api.isValidSession(vs);
                System.out.println("5");
                if (isValidSessionResponse.isResult()) {
                     System.out.println("Session is valid");
                     System.out.println("Result => " + loginResult.getSessionId());
                     System.out.println(breakLine);              
                    Logout logout = new Logout();
                    LogoutResponse logoutResponse = api.logout(logout);
                    if (logoutResponse.isResult()) {
                         System.out.println("Logout of SFAPI Successful");
                    else {
                        System.out.println("Logout of SFAPI Unsuccessful");
                else {
                     System.out.println("Session is invalid");
                    List<Error> errors = new ArrayList<Error>();
                    for (int i = 0; i < loginResult.getError().length;  i++) {
                        errors.add(loginResult.getError()[i]);
                    for (int i = 0; i < errors.size(); i++) {
                         System.out.println("Error Indice   => " + i);
                         System.out.println("Error Code:    => " + errors.get(i).getErrorCode());
                         System.out.println("Error Message: => " + errors.get(i).getErrorMessage());
                         System.out.println(breakLine);                                                          
                    } // end for loop of SFObject errors
                } // end InvalidSession
            catch (Exception e)
                 System.out.println("Session Credential Exception");
                 System.out.println("Exception => " + e.getMessage());
                 System.out.println(breakLine);                   
        catch (Exception e)
            System.out.println("Parameter List Exception");
            System.out.println("Exception => " + e.getMessage());
            System.out.println(breakLine);
        }   // end runProgram
        // Constructor:
        public SFAPITest()  {
        } // end constructor
        public static void main (String args[]) {
            try
                SFAPITest test = new SFAPITest();        
                test.runProgram();
            catch (Exception e) {
                System.out.println("main exception => " + e.getMessage());
    } // SFAPITest
    Here is the output with trace:
    WARNING: Unable to connect to URL: https://api4.successfactors.com:443/sfapi/v1/soap due to java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: String index out of range: -7
    Session Credential Exception
    Exception => ; nested exception is:
        HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: String index out of range: -7
    +---------------------------------------------------------------------------+
    Process exited with exit code 0.

    The other end is throwing back a programming error.
    That might be because you are sending incorrect data and the other end fails to validate it.
    You might be able to guess based on your C# code.  But, since you are using soap one generic solution is available to you.
    - Get an http proxy interceptor like wireshark.
    - Run it while your C# app runs, collect the http requests from that.
    - Run it while running your java code, collect the http requests from that.
    Compare the two.

  • RemoteObject throwing "Send failed" error

    I'm trying to read some data through a java class using Tomcat and blazeds.  I'll post some of my config and code here.
    Here's the destination block of my remoting-config.xml
       <destination id="olapQuery">
          <properties>
             <source>com.zencos.OLAP.OLAPQuery</source>
             <scope>application</scope>
          </properties>
       </destination>
    Here is where I setup the RemoteObject in my mxml
        <mx:RemoteObject id="olapQuery" destination="olapQuery">
            <mx:method name="query" result="olapQueryHandler(event)"/>
        </mx:RemoteObject>
    Here's my olapQueryHandler method
                private function olapQueryHandler(event:ResultEvent):void {
                    var olapData:ArrayCollection = event.result as ArrayCollection;
    I call the remote object in a method called initApp that is called by the preinitialize event, like this
    <mx:Application
        xmlns:mx="http://www.adobe.com/2006/mxml"
        xmlns:ilog="http://www.ilog.com/2007/ilog/flex"
        layout="absolute"
        preinitialize="initApp()"
        creationComplete="complete()">
    Here is the method
                private function initApp():void {
                    olapQuery.query(["TimeYQM"],["ServiceOrder"],["Trouble_Ticket_countSUM"]);
    And here is the error I'm seeing when the application starts:
    [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:8080/Dashboard/messagebroker/amf'"]
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C:\autobuild\3.2.0\frameworks\p rojects\rpc\src\mx\rpc\AbstractInvoker.as:220]
        at mx.rpc::Responder/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responder .as:53]
        at mx.rpc::AsyncRequest/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\AsyncR equest.as:103]
        at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.2.0\frameworks\projects\rpc\s rc\mx\messaging\ChannelSet.as:1482]
        at mx.messaging::ChannelSet/channelFaultHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc \src\mx\messaging\ChannelSet.as:975]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.messaging::Channel/connectFailed()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\m essaging\Channel.as:997]
        at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild\3.2.0\frameworks\proje cts\rpc\src\mx\messaging\channels\PollingChannel.as:354]
        at mx.messaging.channels::AMFChannel/statusHandler()[C:\autobuild\3.2.0\frameworks\projects\ rpc\src\mx\messaging\channels\AMFChannel.as:390]
    Where am I going wrong here?  I'm sure I've missed a step but I can't see where in any of the documentation.  I can supply any other information needed to figure this out.
    Thanks for the help

    A followup to my post.
    When I try to go to http://localhost:8080/Dashboard/messagebroker/amf
    I'm getting a 404 error.
    I hope someone can help with this.  I'm seeing similar errors all over the forums but no helpful resolutions.

  • SOAPException: Message send failed: Connection timed out

    Hi! How to solve "javax.xml.soap.SOAPException: Message send failed: Connection timed out: connect" in a page jspx using ADF Webservices Data Controls ? I'm using JDeveloper 11.1.1.2 .
    Edited by: reginaldo oliveira on 16/09/2010 11:29

    Vishal, I'm taking up this question. I can't to use HTTP Analyser because one of the parameters of my web service is a datasource of weblogic domain, and I know that an error occurs when I have an application in weblogic domain of JDeveloper 11.1.1.2 trying obtain connection pool from other weblogic domain. In fact, I need a way to set proxy and port if I use web service through a web service proxy and/or web service data control of ADF. Using web service proxy, in my class PortClient I have defined a method this way:
        public static void definirProxy(){
            String enderecoProxy = null;
            String porta = null;
            try{
                enderecoProxy = "190.0.1.236";
                porta = "80";
                System.setProperty("http.proxyHost", enderecoProxy);
                System.setProperty("http.proxyPort", porta);
                System.setProperty("http.nonProxyHosts", "localhost, 127.0.0.1");
            }catch( MissingResourceException mre ){
                mre.printStackTrace();
        }this don't work, but I do it because I have read this page:
    http://download.oracle.com/javase/1.5.0/docs/guide/net/proxies.html
    Do you have an idea? And how to set proxy and port when we using ADF Data Controls of web services?

  • Report scheduled for delivery runs perfectly, but sends failed notification

    Our BI Publisher 10.1.3.4 has spontaneously started refusing to deliver reports. The same reports that have always been delivered via email are now sending failed notifications instead.
    I have put the server in debug mode and watched the process from beginning to end, and there is no indication of any problem. The relevant log section is below. You can see that it gives absolutelly no indication of why it is sending the failed notification.
    Furthermore, the report output is generated successfully, and I can open the PDF from the job history and it looks good.
    [010912_021559677][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Finished processing the document.
    [010912_021559677][][STATEMENT] [ID:48848] Time elapsed for report processing : 15259, time from begining : 15311
    [010912_021559677][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Document content type : application/pdf
    [010912_021559678][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Delivery 0 : Start processing email delivery
    [010912_021559679][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :smtp_email
    [010912_021559699][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [010912_021559730][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Adding an attachment ...[filename]=[attachment.pdf], [content-type]=[application/pdf], [index]=[-1], [disposition]=[inline]
    [010912_021559734][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character set for MIME headers : UTF-8
    [010912_021559734][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character encoding for MIME headers : B
    [010912_021559736][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Exiting addAttachment()
    [010912_021559736][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Called
    [010912_021559736][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): default server properties are loaded for this request type (smtp_email) : {HOST:String=smtp.mtus.mtnet, server-name=smtp.mtus.mtnet}
    [010912_021559736][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): properties defined in this request.
    [TEMP_DIR:String] [u01/oracle/product/10.2.0/BIPHome1/oc4j_bi/j2ee/home/applications/BI Publisher 10.1.3.4.0/xmlpserver/xdo/tmp]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [HOST:String] [smtp.mtus.mtnet]
    [SMTP_TO_RECIPIENTS:String] [[email protected]]
    [SMTP_ENCODING:String]
    [SMTP_CONTENT_FILENAME:String] [message.txt]
    [SMTP_CONTENT_TYPE:String] [text/plain;charset=UTF-8]
    [SMTP_SUBJECT:String] [terr_cust_perf-1T-DEBUG-1]
    [BUFFERING_MODE:Boolean] [true]
    [SMTP_BCC_RECIPIENTS:String] [ ]
    [SMTP_FROM:String] [[email protected]]
    [TEMP_FILE_PREFIX:String] [dlvr]
    [RETRY:Integer] [0]
    [SMTP_ATTACHMENT:Attachment] [(oracle.apps.xdo.delivery.smtp.Attachment]
    [SMTP_CURRENT_DIRECTORY:String] [u01/oracle/product/10.2.0/BIPHome1/oc4j_bi/j2ee/home/applications/BI Publisher 10.1.3.4.0/xmlpserver/xdo/tmp/]
    [RETRY_INTERVAL:Integer] [60000]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [SMTP_ATTACHMENT_FIRST:Boolean] [(java.lang.Boolean]
    [server-name] [smtp.mtus.mtnet]
    [SMTP_REPLY_TO:String] [[email protected]]
    [SMTP_CHARSET:String] [UTF-8]
    [ASYNC_TIMEOUT:Integer] [86400000]
    [SMTP_DIRECTORY_MAPPINGS:Hashtable] [(java.util.Hashtable]
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): BUFFERING_MODE is ON.
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): TEMP_DIR found, start document buffering : /u01/oracle/product/10.2.0/BIPHome1/oc4j_bi/j2ee/home/applications/BI Publisher 10.1.3.4.0/xmlpserver/xdo/tmp
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): Starting document buffering.
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): Creating temporary file for buffering : /u01/oracle/product/10.2.0/BIPHome1/oc4j_bi/j2ee/home/applications/BI Publisher 10.1.3.4.0/xmlpserver/xdo/tmp/dlvrswaKldQcDE8872.tmp
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): 7 bytes have been written to the temporary file.
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] filterDocument(): Starting document preprocessing.
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] filterDocument(): No native command found for preprocessing, exiting.
    [010912_021559737][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): Finished document buffering.
    [010912_021559738][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Start reading the buffered document file. : /u01/oracle/product/10.2.0/BIPHome1/oc4j_bi/j2ee/home/applications/BI Publisher 10.1.3.4.0/xmlpserver/xdo/tmp/dlvrswaKldQcDE8872.tmp
    [010912_021559738][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Calling DeliveryRequestHandler.submitRequest()
    [010912_021559738][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): called
    [010912_021559738][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): This request has never been submitted before.
    [010912_021559740][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Adding an attachment ...[filename]=[message.txt], [content-type]=[text/plain;charset=UTF-8], [index]=[0], [disposition]=[inline]
    [010912_021559740][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character set for MIME headers : UTF-8
    [010912_021559740][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character encoding for MIME headers : B
    [010912_021559740][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Exiting addAttachment()
    [010912_021559757][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character set for MIME headers : UTF-8
    [010912_021559757][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character encoding for MIME headers : B
    [010912_021600017][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [010912_021600050][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021600051][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021600051][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021600054][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [010912_021600054][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [010912_021600054][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021600054][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021600054][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [010912_021600492][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [010912_021600521][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021600522][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021600522][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021600525][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [010912_021600525][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [010912_021600525][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021600525][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021600525][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [010912_021600998][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [010912_021601016][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021601017][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [010912_021601017][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021614773][][STATEMENT] [ID:48848] Time elapsed for delivery : 15096, time from beggining : 30407
    [010912_021614773][][STATEMENT] [ID:48848] Time elapsed for report archiving : 0, time from beggining : 30407
    [010912_021614774][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Updating the output info in the database.
    [010912_021614774][][STATEMENT] Write connection pool max:10, min:5, total:5, available:5
    [010912_021614833][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [010912_021614833][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Done updating the output info in the database.
    [010912_021614833][][STATEMENT] [ID:48848] Time elapsed for updating history in db : 60, time from beggining : 30467
    [010912_021614833][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Sending failed notification to : [email protected]
    [010912_021614834][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :smtp_email
    [010912_021614834][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [010912_021614834][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Called
    [010912_021614834][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): default server properties are loaded for this request type (smtp_email) : {HOST:String=smtp.mtus.mtnet, server-name=smtp.mtus.mtnet}
    [010912_021614835][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): properties defined in this request.
    [SMTP_FROM:String] [[email protected]]
    [SMTP_CHARSET:String] [UTF-8]
    [server-name] [smtp.mtus.mtnet]
    [SMTP_CONTENT_TYPE:String] [text/plain;charset=UTF-8]
    [ASYNC_TIMEOUT:Integer] [86400000]
    [SMTP_ENCODING:String] [B]
    [HOST:String] [smtp.mtus.mtnet]
    [SMTP_CONTENT_FILENAME:String] [message.txt]
    [RETRY:Integer] [0]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [SMTP_TO_RECIPIENTS:String] [[email protected]]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [SMTP_ATTACHMENT_FIRST:Boolean] [(java.lang.Boolean]
    [SMTP_SUBJECT:String] [Delivery Failure]
    [TEMP_FILE_PREFIX:String] [dlvr]
    [RETRY_INTERVAL:Integer] [60000]
    [010912_021614835][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): BUFFERING_MODE is OFF.
    [010912_021614835][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Start reading given document InputStream.
    [010912_021614835][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Calling DeliveryRequestHandler.submitRequest()
    [010912_021614835][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): called
    [010912_021614836][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): This request has never been submitted before.
    [010912_021614836][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Adding an attachment ...[filename]=[message.txt], [content-type]=[text/plain;charset=UTF-8], [index]=[0], [disposition]=[inline]
    [010912_021614837][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character set for MIME headers : UTF-8
    [010912_021614837][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character encoding for MIME headers : B
    [010912_021614837][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Exiting addAttachment()
    [010912_021614843][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character set for MIME headers : UTF-8
    [010912_021614843][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character encoding for MIME headers : B
    [010912_021615508][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): exiting
    [010912_021615509][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Finished calling DeliveryRequestHandler.submitRequest()
    [010912_021615509][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Process done successfully. Exiting submit()
    [010912_021615509][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Done sending failed notification to : [email protected]
    [010912_021615509][][STATEMENT] [ID:48848] Time elapsed for notification : 676, time from beggining : 31143
    [010912_021615509][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:48848] Scheduler finished the job. Exiting...

    Hi Joseph,
    1. I would clean my temporary directory. If not set then it will be ORA_HOME/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp
    In your case it is:
    /u01/oracle/product/10.2.0/BIPHome1/oc4j_bi/j2ee/home/applications/BI Publisher 10.1.3.4.0/xmlpserver/xdo/tmp/
    And test again. Ensure it has enough space.
    2. If it does not work then I would read Oracle Support Note 797057.1 and see if there is a new patch for your installation.
    The latest is from Nov 2011. Apply it and test it.
    If none of the above work then I would open a ticket with oracle support.
    From the BIP code I can only notice the issue happens during the delivery of the attachment through email delivery channel.
    It is strange you can not deliver a document using email delivery channel but still can send notification using the same email server!.
    good luck
    regards
    Jorge

  • Attempt to send failed error in RSWUWFML2

    Hi,
    I am getting following error in RSWUWFML2
    Work item 000000528247: Attempt to send failed
    Work item 000000528247 sent to
    the external is email is getting sent correctly from send mail step of the workflow as well as SO00 transaction as test.
    the user id and email for the recipients do exist in the system
    the variant for RSWUWFML2 -
    1000     FM for Determining Address     S                    
    1000     FM for Preparatory Phase     S                    
    1000     Tasks (blank = all)     S     I     EQ     TS90000055     
    1000     Tasks (blank = all)     S     I     EQ     TS90000027     
    1000     Tasks (blank = all)     S     I     EQ     TS90000038     
    1000     Tasks (blank = all)     S     I     EQ     TS90000040     
    1000     Tasks (blank = all)     S     I     EQ     TS90000036     
    1000     Tasks (blank = all)     S     I     EQ     TS90000044     
    1000     Tasks (blank = all)     S     I     EQ     TS90000015     
    1000     Tasks (blank = all)     S     I     EQ     TS90000026     
    1000     After Work Item Description     P               SWU_NOTIF_EPILOG2     
    1000     From work item creation date     P               00.00.0000     
    1000     From work item creation time     P               00:00:00     
    1000     Job suffix     P               2     
    1000     Before Work Item Description     P               SWU_NOTIF_PROLOG1     
    1000     Message Class for Subject     P               SWU_NOTIF     
    1000     Message Number for Subject     P               002     
    1000     Users (blank = all)     P                    
    1000     Collective Message     P                    
    1000     All     P               X     
    1000     Errors Only     P                    
    1000     One Message per Work Item     P               X     
    1000     New Work Items Only     P               X     
    1000     With Passive Substitution     P                    
    1000     Work Item Display     P               X     
    1000     Work Item Execution     P               X     
    1000     Workflow Entry     P               X     
    1000     Language for E-Mail Texts     P                    
    1000     SAPLOGON_ID     P                    
    kindly help for the above error
    thanks in advance
    B

    Hi,
    Please check the user id who is executing the report RSWUWFML2.
    Email id must be maintained in that user id.
    Please maintained the email id and try to execute the report again.
    Thanks and regards,
    SNJY

  • 6230 message sending failed

    Hi - on Saturday I sent some texts and on Sunday my phone just kept saying "message sending failed" and it still won't send them. I have deleted all inbox and sent messages, rung my free number for help, tried different sim cards/my sim card in a different phone, all to no avail.
    Can anyone help please? I can't find an option to change/check the message centre number which is what the helpline said.
    TIA, Scootie
    Message Edited by scootie on 03-Jul-2008 01:04 PM
    Solved!
    Go to Solution.

    Maybe this thread may be of some use to you.
    Message Centre Numbers
    My posts are my opinion and in no way the direct views of Nokia.
    If my posts are helpful, please give me some KUDOS using the green star on the left.

  • Erro javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm

    hi am having this error when i click the submite button,am in jdeveloper 11.1.1.6.0
    Messages for this page are listed below.
    Error     
    javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
    Error     
    Message send failed: t4-2-dev-fmw01vm
    Error     
    t4-2-dev-fmw01vm
    <af:commandButton text="Submit" id="cb3"
                              action="#{pageFlowScope.InternalUserBean.onSaveRecord}">
            </af:commandButton>
        public void onSave(ActionEvent actionEvent) {
            ADFUtil.invokeEL("#{bindings.Commit.execute}");
            ADFUtil.invokeEL("#{bindings.start.execute}");
            System.out.println("Deleted");
    the log error is
    Caused by: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:231)
         at oracle.j2ee.ws.common.transport.HttpTransport.transmit(HttpTransport.java:75)
         at oracle.j2ee.ws.common.async.MessageSender.call(MessageSender.java:64)
         at oracle.j2ee.ws.common.async.Transmitter.transmitSync(Transmitter.java:134)
         at oracle.j2ee.ws.common.async.Transmitter.transmit(Transmitter.java:90)
         at oracle.j2ee.ws.common.async.RequestorImpl.transmit(RequestorImpl.java:273)
         at oracle.j2ee.ws.common.async.RequestorImpl.invoke(RequestorImpl.java:94)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:811)
         ... 74 more
    Caused by: javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.post2(HttpSOAPConnection.java:520)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection$PrivilegedPost.run(HttpSOAPConnection.java:1264)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:229)
         ... 81 more
    Caused by: java.net.UnknownHostException: t4-2-dev-fmw01vm
         at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
         at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
         at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
         at java.net.InetAddress.getAllByName(InetAddress.java:1084)
         at java.net.InetAddress.getAllByName(InetAddress.java:1020)
         at HTTPClient.HTTPConnection$11.run(HTTPConnection.java:3641)
         at java.security.AccessController.doPrivileged(Native Method)
         at HTTPClient.HTTPConnection.getSocket(HTTPConnection.java:3638)
         at HTTPClient.HTTPConnection.doConnect(HTTPConnection.java:4477)
         at HTTPClient.HTTPConnection.sendRequest(HTTPConnection.java:3409)
         at HTTPClient.HttpOutputStream.closeImpl(HttpOutputStream.java:461)
         at HTTPClient.HttpOutputStream.access$000(HttpOutputStream.java:99)
         at HTTPClient.HttpOutputStream$1.run(HttpOutputStream.java:417)
         at HTTPClient.HttpClientConfiguration.doAction(HttpClientConfiguration.java:698)
         at HTTPClient.HttpOutputStream.close(HttpOutputStream.java:415)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.sendMessage(HttpSOAPConnection.java:1062)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.post2(HttpSOAPConnection.java:495)
         ... 84 more
    <Utils> <buildFacesMessage> ADF: Adding the following JSF error message: javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
    javax.xml.ws.WebServiceException: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:867)
         at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235)
         at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106)
         at oracle.adf.model.connection.webservice.impl.SaajInteractionImpl.execute(SaajInteractionImpl.java:81)
         at oracle.adfinternal.model.adapter.webservice.provider.soap.SOAPProvider.execute(SOAPProvider.java:327)
         at oracle.adfinternal.model.adapter.webservice.WSDataControl.invokeOperation(WSDataControl.java:259)
         at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:432)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:261)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:469)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:313)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:402)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at view.ADFUtil.invokeEL(ADFUtil.java:22)
         at view.ADFUtil.invokeEL(ADFUtil.java:14)
         at view.InternalBean.onSaveRecord(InternalBean.java:59)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1018)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:386)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:231)
         at oracle.j2ee.ws.common.transport.HttpTransport.transmit(HttpTransport.java:75)
         at oracle.j2ee.ws.common.async.MessageSender.call(MessageSender.java:64)
         at oracle.j2ee.ws.common.async.Transmitter.transmitSync(Transmitter.java:134)
         at oracle.j2ee.ws.common.async.Transmitter.transmit(Transmitter.java:90)
         at oracle.j2ee.ws.common.async.RequestorImpl.transmit(RequestorImpl.java:273)
         at oracle.j2ee.ws.common.async.RequestorImpl.invoke(RequestorImpl.java:94)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:811)
         ... 74 more
    Caused by: javax.xml.soap.SOAPException: Message send failed: t4-2-dev-fmw01vm
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.post2(HttpSOAPConnection.java:520)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection$PrivilegedPost.run(HttpSOAPConnection.java:1264)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:229)
         ... 81 more
    Caused by: java.net.UnknownHostException: t4-2-dev-fmw01vm
         at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
         at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
         at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
         at java.net.InetAddress.getAllByName(InetAddress.java:1084)
         at java.net.InetAddress.getAllByName(InetAddress.java:1020)
         at HTTPClient.HTTPConnection$11.run(HTTPConnection.java:3641)
         at java.security.AccessController.doPrivileged(Native Method)
         at HTTPClient.HTTPConnection.getSocket(HTTPConnection.java:3638)
         at HTTPClient.HTTPConnection.doConnect(HTTPConnection.java:4477)
         at HTTPClient.HTTPConnection.sendRequest(HTTPConnection.java:3409)
         at HTTPClient.HttpOutputStream.closeImpl(HttpOutputStream.java:461)
         at HTTPClient.HttpOutputStream.access$000(HttpOutputStream.java:99)
         at HTTPClient.HttpOutputStream$1.run(HttpOutputStream.java:417)
         at HTTPClient.HttpClientConfiguration.doAction(HttpClientConfiguration.java:698)
         at HTTPClient.HttpOutputStream.close(HttpOutputStream.java:415)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.sendMessage(HttpSOAPConnection.java:1062)
         at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.post2(HttpSOAPConnection.java:495)
         ... 84 more
    the application is on the taskflowEdited by: adf009 on 2013/04/26 9:10 AM

    I found http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/events.htm#BABGGADB
    Setting Timeouts for Synchronous Processes
    For synchronous processes that connect to a remote database, you must increase the syncMaxWaitTime timeout property in the SOA_Oracle_Home\bpel\domains\default\config\domain.xml file:
    <property id="syncMaxWaitTime">
    <name>Delivery result receiver maximum wait time</name>
    <value>60000000</value>
    <comment>
    <![CDATA[The maximum time the process result receiver will wait for a
    result before returning.  Results from asynchronous BPEL processes are
    retrieved synchronously via a receiver that will wait for a result from the
    container.
            <p/>
            The default value is 60 seconds.]]>
    </comment>
    </property>
    But this changes nothing...
    Is this value ignored?

  • Mitigation control: Sending failed No valid SAP sender address

    GRC 5.3 SP10 RAR
    In mitigation control:  I have created a new control ID. When I am trying to assign it to a user getting error
    "Sending failed No valid SAP sender address"
    Please advise to resolve the issue. I need to mitigate user.

    Hello Pal,
    Please go to RAR configuration -> Risk Analysis -> Additional Options. Here check if you have the parameter Enable Monitor Notification set to YES. If you do then set this one to NO. Also, kindly check and make sure that you have a valid email address maintained for each of the mitigation control monitor in Mitigation tab.
    If you wish to have the parameter set to yes only then you need to do the JAVA mail settings in Visual Admin. Check configuration of the JAVA mail client, which can be done using Visual Administrator, to send the Email Notification.
    (Configuration > Java Mail Client > Properties > Smtp).
    Regards, Varun
    Edited by: Thakur Varun on May 21, 2010 3:47 PM

  • Message send failed: SSL implementation not available

    Objective: to Jdev version 10.1.3 generate a client proxy for a given URL / wsdl and deploy to Oracle 10q
    for use in PL \ SQL package. The problem it is necessary to establish an SSL connection.
    After generating the client created AgentConnectClient class
    / / SSL
    System.setProperty("ssl.SocketFactory.provider","oracle.security.ssl.OracleSSLSocketFactoryImpl");
    System.setProperty("ssl.ServerSocketFactory.provider","oracle.security.ssl.OracleSSLServerSocketFactoryImpl");
    System.setProperty("java.protocol.handler.pkgs","HTTPClient");
    System.setProperty ("oracle.wallet.location", "/ etc / ORACLE / WALLETS / oracle");
    System.setProperty ("oracle.wallet.password", "passw");
    / / Client
    c = new AgentConnectClient ();
    / / end_point = "https:// ....";
    c.setEndpoint (end_point);
    CityListRequest requst = new CityListRequest ();
    CityListResponse response = new CityListResponse ();
    requst.setTimeStamp (Calendar.getInstance ());
    requst.setApiVersion (apiVersion);
    requst.setMaxRowsToReturn (new BigInteger (maxRowsToReturn.toString ()));
    / / request - response
    response = c.cityList (requst);
    Here there is a bug
    ; Nested exception is:
    HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: SSL implementation not available
    Can anyone help, any ideas welcome - thank you.
    Edited by: tyoma on Oct 6, 2011 6:52 PM

    I also have that error for days and still no answer from java people here. I don't think they don't know really what they are talking about even people from sun don't know how to solve this problem.

  • FDS samples not working "send failed"

    Hi all,
    me again with another problem .....
    I have installed FDS at the default location c:\fds2...
    I am having problems running the sample apps that can be
    accessed from the page :-
    http://localhost:8700/samples/
    The Integrated Flex Server is running in a cmd window as
    required.
    However, when I try to run the sample CRM app at
    http://localhost:8700/samples/dataservice/crm/companyapp.mxml
    (or any Data Service samples ) I get the initial screen showing
    with the 2 panels BUT then get an error message "Send failed"
    popup. When I say OK to this popup, I get not data returned.
    I am sure it's a fairly easy problem to solve for you
    talented folks.
    Thanks in advance
    Regards
    Smak

    Something is wrong with your installation because I've
    istalled today the two versions because I want use Tomcat and the
    CRM application works fine with JRun.
    I have your problem with the J2EE installation wich gives me
    a "Channel disconnected" and "send failed" message. I overcome this
    problem running Integrated Flex Server before open CRM application
    in tomcat. Now I have the two versions running without any problem
    Regards
    Manuel Guimarães, Portugal

  • SEVERE: SAAJ0009: Message send failed

    Hi,
    While trying to execute the MyUddiPing example from j2eetutorial14\examples\saaj\myuddiping, an exception is raised at the connection.call method
    the e [java] Dec 14, 2005 11:45:48 AM com.sun.xml.messaging.saaj.client.p2p.HttpS
    OAPConnection post
    [java] SEVERE: SAAJ0009: Message send failed
    [java] com.sun.xml.messaging.saaj.SOAPExceptionImpl: java.security.Privileg
    edActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message send fa
    iled
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:127)
    [java] at MyUddiPing.main(Unknown Source)
    [java] Caused by: java.security.PrivilegedActionException: com.sun.xml.mess
    aging.saaj.SOAPExceptionImpl: Message send failed
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:121)
    [java] ... 1 more
    [java] Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message sen
    d failed
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:305)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$Priv
    iledgedPost.run(HttpSOAPConnection.java:150)
    [java] ... 3 more
    [java] Caused by: java.net.UnknownHostException: uddi.ibm.com
    [java] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
    [java] at java.net.Socket.connect(Socket.java:507)
    [java] at java.net.Socket.connect(Socket.java:457)
    [java] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [java] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(
    HttpURLConnection.java:784)
    [java] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Http
    URLConnection.java:736)
    [java] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLCo
    nnection.java:661)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(H
    ttpURLConnection.java:828)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:262)
    [java] ... 4 more
    [java] CAUSE:
    [java] java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.
    SOAPExceptionImpl: Message send failed
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:121)
    [java] at MyUddiPing.main(Unknown Source)
    [java] Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message sen
    d failed
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:305)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$Priv
    iledgedPost.run(HttpSOAPConnection.java:150)
    [java] ... 3 more
    [java] Caused by: java.net.UnknownHostException: uddi.ibm.com
    [java] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
    [java] at java.net.Socket.connect(Socket.java:507)
    [java] at java.net.Socket.connect(Socket.java:457)
    [java] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [java] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(
    HttpURLConnection.java:784)
    [java] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Http
    URLConnection.java:736)
    [java] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLCo
    nnection.java:661)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(H
    ttpURLConnection.java:828)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:262)
    [java] ... 4 more
    [java] CAUSE:
    [java] java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.
    SOAPExceptionImpl: Message send failed
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:121)
    [java] at MyUddiPing.main(Unknown Source)
    [java] Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message sen
    d failed
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:305)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$Priv
    iledgedPost.run(HttpSOAPConnection.java:150)
    [java] ... 3 more
    [java] Caused by: java.net.UnknownHostException: uddi.ibm.com
    [java] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
    [java] at java.net.Socket.connect(Socket.java:507)
    [java] at java.net.Socket.connect(Socket.java:457)
    [java] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [java] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(
    HttpURLConnection.java:784)
    [java] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Http
    URLConnection.java:736)
    [java] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLCo
    nnection.java:661)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(H
    ttpURLConnection.java:828)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:262)
    [java] ... 4 morexception is
    BUILD SUCCESSFUL
    Total time: 13 seconds
    when executed with
    asant run -Dbusiness-name=food command
    Pls help me in getting the right output
    Regards
    Vinaya

    Hi,
    While trying to execute the MyUddiPing example from j2eetutorial14\examples\saaj\myuddiping, an exception is raised at the connection.call method
    the e [java] Dec 14, 2005 11:45:48 AM com.sun.xml.messaging.saaj.client.p2p.HttpS
    OAPConnection post
    [java] SEVERE: SAAJ0009: Message send failed
    [java] com.sun.xml.messaging.saaj.SOAPExceptionImpl: java.security.Privileg
    edActionException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message send fa
    iled
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:127)
    [java] at MyUddiPing.main(Unknown Source)
    [java] Caused by: java.security.PrivilegedActionException: com.sun.xml.mess
    aging.saaj.SOAPExceptionImpl: Message send failed
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:121)
    [java] ... 1 more
    [java] Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message sen
    d failed
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:305)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$Priv
    iledgedPost.run(HttpSOAPConnection.java:150)
    [java] ... 3 more
    [java] Caused by: java.net.UnknownHostException: uddi.ibm.com
    [java] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
    [java] at java.net.Socket.connect(Socket.java:507)
    [java] at java.net.Socket.connect(Socket.java:457)
    [java] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [java] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(
    HttpURLConnection.java:784)
    [java] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Http
    URLConnection.java:736)
    [java] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLCo
    nnection.java:661)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(H
    ttpURLConnection.java:828)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:262)
    [java] ... 4 more
    [java] CAUSE:
    [java] java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.
    SOAPExceptionImpl: Message send failed
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:121)
    [java] at MyUddiPing.main(Unknown Source)
    [java] Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message sen
    d failed
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:305)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$Priv
    iledgedPost.run(HttpSOAPConnection.java:150)
    [java] ... 3 more
    [java] Caused by: java.net.UnknownHostException: uddi.ibm.com
    [java] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
    [java] at java.net.Socket.connect(Socket.java:507)
    [java] at java.net.Socket.connect(Socket.java:457)
    [java] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [java] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(
    HttpURLConnection.java:784)
    [java] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Http
    URLConnection.java:736)
    [java] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLCo
    nnection.java:661)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(H
    ttpURLConnection.java:828)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:262)
    [java] ... 4 more
    [java] CAUSE:
    [java] java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.
    SOAPExceptionImpl: Message send failed
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call
    (HttpSOAPConnection.java:121)
    [java] at MyUddiPing.main(Unknown Source)
    [java] Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Message sen
    d failed
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:305)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$Priv
    iledgedPost.run(HttpSOAPConnection.java:150)
    [java] ... 3 more
    [java] Caused by: java.net.UnknownHostException: uddi.ibm.com
    [java] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
    [java] at java.net.Socket.connect(Socket.java:507)
    [java] at java.net.Socket.connect(Socket.java:457)
    [java] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [java] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [java] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [java] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(
    HttpURLConnection.java:784)
    [java] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Http
    URLConnection.java:736)
    [java] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLCo
    nnection.java:661)
    [java] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(H
    ttpURLConnection.java:828)
    [java] at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post
    (HttpSOAPConnection.java:262)
    [java] ... 4 morexception is
    BUILD SUCCESSFUL
    Total time: 13 seconds
    when executed with
    asant run -Dbusiness-name=food command
    Pls help me in getting the right output
    Regards
    Vinaya

Maybe you are looking for