FTP Sender - Message not reaching XI

Hi,
I am using FTP sender adapter to send an XML file to XI.
The file is being picked up by XI properly from the Source directory on the FTP server which is running on my local machine but it is not reaching the integration server. SXMB_MONI shows no message.
I have checked all the parameters in the communication channel and am sure that the fule is picked up. Alternatively, I am able to put a file on the FTP server. So the FTP server seems to be working fine.
If any of you have any idea of where the error could lie, could you please respond.
Kind Regards,
Dhananjay

Hi Dhananjay,
try setting the file adapter to Delete mode
this way you'll know if your file got picked from the FTP
if you're sure that is was picked then:
http://xiserver:port/MessagingSystem/monitor/monitor.jsp
here you'll find your message if it reached Adapter Framework (file/ftp adapter)
also remember to always check this address:
http://xiserver:port/mdt/amtServlet
Regards,
michal

Similar Messages

  • Sent messages not reaching destination

    Mail sent through .mac account does not reach destination, but everything looks completely normal. Messages sent using mail but from another mail account reach their destinations just fine. I still have tons of space on my .mac mail account and absolutely no error messages are appearing. Most grateful if anyone has a clue about what's going on.
    Thanks, SP

    hi jim, thanks for the reply.
    yes, i tried sending mail to myself, also at a yahoo acct... it seems to be sent (doesn't bounce) but never reaches destination. The only way i can make it work is not to use mac.com as my outgoing server (i have to use the server of my local provider) and not to activate ssl sockets in mail preferences... naturally no pw check etc.
    the annoying thing is that Mail doesn't tell me when it's not working, it saves the messages as sent but doesn't deliver them.
    any ideas?
    thanks again, sp

  • SAP PI FTP sender adapter not working with SAP ECC over Itanium

    Hi,
    We have been running normally SAP PI 7.0 SP14 with no issue for a while.
    We are now in the process of migrate the SAP ECC system from PA risc to IA platform. We are performing some tests between SAP PI and SAP ECC to check that the platform migration is not affecting us in any way and we have found that FTP adapter sender is not working anymore (receiver is working as usual).
    We place some files in the new ECC system and when PI goes to retreive the files it is like it can not read anything. It gives no error but it does not pick any file. This is not happening with the old platform.
    Does anyone have any idea?
    Thanks a lot for your help
    Diana

    Hi,
    I am using FTP connection and for the receiver it is working fine.
    Thanks
    Diana

  • Message not reaching to XI

    Hello ,
    I have configured a scenario Http ->XI->Idoc.
    when I test this scenario using runtime workbench test tool,it gives me message sent , but message is not available in SXMB_moni.
    message is not struck in SMQ2.
    Pl can you suggest on this.
    thanks,
    Sharada

    Hello Matias,Udo,Prateek,
    Letter case are correct.
    This is the url of Intergration Engine used for testing.
    http://WCSPIDEV1:8051/sap/xi/engine?type=entry
    There cannot be entry at SM58 as message is not reaching to IE from http request.
    Pl can you suugest.
    thanks,
    Sharada

  • ABAP Client proxy message not reaching AAE

    Hi Experts,
    I am facing a strange issue in one of my proxy interfaces. ABAP client Proxy is used to post message to AAE in SAP PI 7.3. The messages are being generated and pushed out of ECC successfully. I can see them in the SXMB_MONI t-code with checkered flag. These messages are reaching the Integartion Engine instaed of the Adapter Engine.
    I have configured the following:
    1. Sender / Receiver ID  in SXMSIF:
    2. Configured the corresponding Runtime parameter in SXMB_ADM
    I have few other such ABAp client proxy i/f's which work fine and their message are being sent to the Adapter engine. Howveere, only this one interface is posing a problem. What can be the issue?
    Please advice.
    Thanks in advance.
    Elizabeth.

    Hi Elizabeth,
    It will be great if you could please let me know all the user profile configured in userID of Logon&Security tab of SM59 for connecting ECC system to post the message via AAE.
    I have used
    SAP_XI_APPL_SERV_USER
    SAP_XI_DEVELOPER_J2EE and
    SAP_XI_IS_SERV_USER
    profiles in my UserID for Basic authentication.
    Currently I am doing the same scenario what you have done with integrated configuration.The message is getting failed in ECC with 403 Forbidden error.
    Please help me.
    Thanks
    Ray...

  • Sending message not working anymore in WL 12 (InvalidDestinationException)

    Hello,
    after installing a fresh WebLogic 12 sending JMS messages from a WebService doesn't work anymore. Although I'm using only WebLogic JMS stuff (no foreign providers) I receive the following exception upon messageProducer creation:
    weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, SystemModule-MyApp!Queue-MyApp
         at weblogic.jms.common.Destination.checkDestinationType(Destination.java:105)
         at weblogic.jms.client.JMSSession.setupJMSProducer(JMSSession.java:2830)
         at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2858)
         at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2822)
         at weblogic.jms.client.WLSessionImpl.createProducer(WLSessionImpl.java:827)
    at the following code
    connection = connectionFactory.createConnection();
    session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
    messageProducer = session.createProducer(queue);
    At first I thought that there's some config mess which might have happened during JMS ConnectionFactory and Queue creation etc. in WL_Server. But after cross-checking it I've even compared the complete JMS-relevant WL-setup (in the /console) with another WebLogic 11 instance where the stuff is working and found no differences: The only destination used is a regular resource of type "Queue" at the SystemModule and not of type "Foreign Server". So I wonder why I receive a foreign destination exception when no foreign JMS stuff is used...
    Do you have any ideas or tips where to investigate further? The only difference is that the codebase tested with WebLogic 12 uses CDI (coming with JavaEE 6) and the WebLogic 11 doesn't use CDI. In case this info is needed: the code trying to send the message to the queue is a simple @WebService.
    Thanks in advance.

    Thanks for your reply Dongbo!
    The point regarding the classname of the Queue object was quite good! Its a org.jboss.weldx.jms.Destination$Queue$1555984123$Proxy$_$$_Weld$Proxy$ class. So this looks to me as if WebLogic uses JBoss Weld internally (for CDI) ??
    The CDI-based injection of the Queue object from the JNDI is
    @Produces
    @MyAppTest
    @Resource(name="jms/Queue-MyApp", type=Queue.class)
    private Queue queue;
    An the JNDI view of jms/Queue-MyApp shows
    Binding Name:     jms.Queue-MyApp     
    Class:     weblogic.jms.common.DestinationImpl     
    toString Results:     SystemModule-MyApp!Queue-MyApp
    Attached the complete stack trace:
    weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, SystemModule-MyApp!Queue-MyApp
         at weblogic.jms.common.Destination.checkDestinationType(Destination.java:105)
         at weblogic.jms.client.JMSSession.setupJMSProducer(JMSSession.java:2830)
         at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2858)
         at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2822)
         at weblogic.jms.client.WLSessionImpl.createProducer(WLSessionImpl.java:827)
         at com.example.myapp.Demo(DemoServiceImpl.java:47)
         at com.example.myapp.Demo(DemoServiceImpl.java:82)
         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 weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:92)
         at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:74)
         at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:149)
         at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:95)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:892)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:841)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:804)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:706)
         at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:430)
         at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:640)
         at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:265)
         at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:163)
         at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:171)
         at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:708)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
         at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:103)
         at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:311)
         at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:336)
         at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:99)
         at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:242)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:216)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:132)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:352)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
         at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3288)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3254)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
         at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2163)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2089)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2074)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1512)
         at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • SP15, JMS Sender, "Messages not fetched"

    JMS Sender Communication Channel, Transport Protocol "Access JMS Provider with JNDI" and Name of JNDI initial ContextFactory "com.sonicsw.jndi.mfcontext.MFContextFactory". 
    Error in Adapter Monitor "Sender channel. Details: Last Exception during send at Sat Mar 11 07:55:45 EET 2006: Value with name enableDynConfigSender not available."
    There is messages in SonicQ Queue but they are not fetched by XI. I've start/stop SAP XI Adapter: JMS, no help.
    What does that error actually mean and what should I check next?

    Hi Tapio,
    If you are on SP14, SAP has introduced 'dynamic headers' with this support Pack. Your problem may be related to this. See the related section in SAP Note#856346 (JMS Adapter - FAQ)
    To fix your problem try deactivating your sender communication channel, make a small change to your description and activate it again. Test your scenario to see if it works.
    Hope this helps.
    Regards,
    Sam Raju

  • Voice Mail Messages not reaching e-mail boxes

    I have an Exchange 2010 server and a Panasonic phone system with voice mail. Until recently my users could transfer voice mail messages to their e-mail as an attached WAV file.  I have not made any significant changes that should affect this functionality.
    I worked with a voice system technician who verified that the messages are being created and sent by the VM System. However, they are no longer being delivered to the users e-mail box.
    I checked to make sure that the password is correct for the mail account, I have white listed the voicemail system in the Exchange Server, and I have tested e-mail to and from the special e-mail account established for this purpose and all seem to work correctly. 
    I am wondering if there is some new security requirement or SPAM filter in Exchange which might be getting in the way. 

    See:
    http://technet.microsoft.com/en-us/library/bb124531(v=exchg.141).aspx
    By default, the Receive connector protocol log files are located at C:\Program Files\Microsoft\Exchange Server\V14\TransportRoles\Logs\ProtocolLog\SmtpReceive, and the Send connector protocol log files are located at C:\Program Files\Microsoft\Exchange Server\V14\TransportRoles\Logs\ProtocolLog\SmtpSend.
    The directory must be local to the Exchange 2010 computer.
    If Exchange received the message, you can also check message tracking on the Exchange Server.
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Mavericks Messages problem sending message: "not registered with iMessage"

    I'm on MacBook Air(MBA) and recently installed Mavericks. I try sending a message from MBA MESSAGES to a person's cell phone number (they have an android phone). Their name appears in red and I get: "...is not registered with iMessage." So I was trying to read discussions in here and allot of them say Messages won't work unless a person has an Apple device- iphone, Mac, etc. I want to know if that is true or if there is any other way to send from the MBA a message to them? I also tried from Messages on MBA to their gmail address, which they use on their android cell phone, and get same error.
    Is there anyway a non-apple person can "register with iMessage" if they have an android phone?
    I know I can email them, but I wanted a fast way for emergency purposes to get a MESSAGE to them from my MBA. Sometimes they can't talk on phone at some times, but are allowed to get instant message for emergency where they work.

    Hi,
    You have to have otr get an AIM or AIM valid name.
    AIM stands for Aol Instant Messenger.
    Apple IDs issued by Apple (Those ending in @mac.com or iCloud issued @me.com and @icloud.com) are valid as AIM Screen Names if the password is kept to 16 characters or less. (this is an AIM server limit)
    Apple made an Agreement with AOL over the use of names over 10 years ago.
    The Original .Mac ID (@mac.com) could be paid for  or could be Trial Accounts.
    Trial Accounts continued to work after the trial ran out. (i.e. the email stopped but the AIM Screen Name didn't).
    The same was true of lapsed accounts.
    When MobileMe started people could link, email-wise, their paid for .Mac accounts to the paid for MobileMe (@me.com) accounts.
    Any @mac.com still works over the AIM service.
    Now also @Me.com names worked - meaning some people had two valid AIM names - they are not liked for use with AIM just that the passwords will be the same.
    With the end of MobileMe all those @me.com account died as far as AIM is concerned.
    However you could link it to iCloud which effectively moved it to the iCloud server.
    (i.e. they are iCloud issued @me.com ID instead of MobileMe ones)
    Then Apple started to issue @icloud.com IDs
    This could mean that some people have three working IDs for use with AIM (but all linked to one email Account at Apple).
    NOTES
    From Lion onwards (iChat 6 and Above) Apple have had the app also login in to Apple before it will allow the AIM Servers to "read" the password.
    This applies to any iCloud issued ID - the "newer" iCloud linked @Me.com and @iCloud.com IDs
    This means you cannot use those IDs in iChat 5 or earlier as those version only do an one point login only.
    With the coming of iCloud other Apple IDs could be linked to iCloud which may have given you either @me.com and later an @iCloud.com ID as well or just an @icloud one if you were later to the party as it were.
    Whilst in some cases this does give you two valid AIM Screen Name the originating Apple ID does not become one.
    9:04 pm      Saturday; February 8, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • HTTP receiver adapter : message not reaching partner

    Hi,
    Scenario: IDOC -> PI7.0 -> HTTP
    Idoc has to be routed after mapping to XML message to partner via HTTP post.
    Partner says, he has not received any message from PI.I can see successful status in SXMB_MONI. As HTTP adapter is not part of adapter framework, so I can not see message under Adapter engine in RWB, Right?
    Outbound message has DTD reference, is this should cause any problems?
    One more thing, under sxmb_moni, under trace I can see message
    "HTTP code:200, Ok".
    How can I ensure that PI has sent successfully message to partner.
    Please note that for HTTP adapter configuration: I have created HTTP destination on XI system with URL, service number and path prefix. It is successful.
    Best Regards,
    Divyesh

    For the already executed scenario, there is nothing much you can do now. sxmb_moni is the last point for monitoring the http related call. For the traces you may check transaction sicf
    http://help.sap.com/saphelp_nw04/Helpdata/EN/80/b2dd3a6dac703be10000000a11405a/content.htm
    You may use TCPGateway to trace further calls.
    /people/stefan.grube/blog/2007/03/29/troubleshooting-soap-http-and-mail-adapter-scenarios-with-tcpgateway
    Regards,
    Prateek

  • Client proxy message not reaching to XI system

    Hi
    I have done one scenario from CRM to FILE. When i am executing the client proxy through my zprogram its executing without any errors. I have checked in SXMB_MONI of CRD system i can see the messages but they are not with successful flag or not with error flag. But in XI system (SXMB_MONI) i didnt find any messages. Could you please tell me what's the problem is?
    Regards
    Sowmya

    Sowmya,
    As you are not getting any message in SXMB_MONI, there can be following possibilities:
    1. There can be some problem in proxy configuration on your CRM system. Please check with your BASIS team that steps give in this blog are properly followed:
    How do you activate ABAP Proxies? 
    2. Make sure that in
    SXMB_ADM     --->integration engine config -
    >change specific attributes....
    The RUNTIME parameter is defined LOGGING and TRACE_LEVEL and the value is 1.
    3. Make sure the queues are registered in Tx: SMQR.
    Further, I do not think that COMMIT statement or anything like that is missing as in that case you should have got a message in SXMB_MONI with a green flag stating that "Commit statement is missing".

  • ICal invites I send are not reaching recipient

    Two out of three kids are receiving my shared calendar invitations or individual event invitations on their iPhones without any problems.   The third one however, never receives the invite in his calendar app (or even an invitation via email but these are not "public" calendars either).  I have noticed that when I add the first two, their names are highlighted in blue immediately.  The other one stays gray and always shows "pending" on my iPhone or has a "?" on my Mac.  Does not matter which device I send the invite from, he does not get it.
    They all use their own active email addresses (same provider not that it matters) and passwords for their Apple accts and iCloud accts and I am using their Apple ID emails to send them the invites.  The only way # 3 gets the invitations is if I send the invite to an iCloud email address that I just created for him.   I'd prefer they only have one email address since they are  under 18.  
    Why isn't # 3 getting the invites like the other two and anyone else I send to?  Did I miss a setting somewhere in the initial setup of the iPhone?   Maybe I should mention that # 3's phone is MY old iPhone 4 but it was wiped out and set up as a new phone with his Apple ID (Phone # 1 is a 5C and # 2 is a 4 also).

    What email client are you using?  Mac Mail? Thunderbird?   What kind of email address are you using---is it a web based account like Hotmail or Gmail that you have POP'd  with the client program?
    If you are using say, Gmail as the address, make sure you are sending from the client program.  If you send straight from Gmail, it will appear in their sent folder, but not in the one for the client.  I've made that mistake myself a few times.

  • I saw in icloud sending message not encrypted?

    Hi, how are you there, I found my icloud account is not crypted , it is normal ? Because it is the first time I found it in red!

    Hi, how are you there, I found my icloud account is not crypted , it is normal ? Because it is the first time I found it in red!

  • Message not  processed after technical routing

    Hi ,
    I have a SOAP ->ABAP Proxy (R/3) scenario that sometimes not processed completely. When checking the message in SXMB_MONI I notice a grey dot (which means log version) in the status column next to the message,  Upon opening the message I can't see any errors.
    The message has gone through the following steps.
    Inbound Message
    Receiver Identification
    Interface Determination
    Message Branch According to Receiver List
    Request Message Mapping
    Technical Routing
    But final stage call adapter not executed so i came to know that response message not reached to XI.
    This is occuring once or twice for every 25 to 30  messages.
    Can any one provide some suggestions to rectify the above issue.
    Thanks & Regards,
    Arun.

    Check out the below things,
    1. Check for which input data it is giving. (Any specific data).
    2. This may happen becaus of time out. (Huge data processing)
    Also check out below link,
    ['Log Version' status in 'SXMB_MONI']
    Resend the message from sender and it will work properly.
    Log version means "Waiting for response" and liable to fail if response not received on time.
    Edited by: Siddhesh Pathak on May 13, 2009 12:10 PM

  • HT5312 algokar Dec 26, 2013 2:11 AM Forgot Answer Questions safety tried to re-send a lot of email did not reach any messages to re-ask safety   I can not buy any program that I forgot to ask him answer safety   Please help and send me a re-liquefaction a

    Forgot Answer Questions safety tried to re-send a lot of email did not reach any messages to re-ask safety
    I can not buy any program that I forgot to ask him answer safety
    Please help and send me a re-liquefaction answer to the same email

    1)  Apple ID: All about Apple ID security questions
    If necessary
    2)  See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security
    3)  Or Email Here  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for