Connecting flights scenario- hanging

i have configured connecting flight scenario per the guide. when i run the application it shows "flight booking order sent. Awaiting confirmation" message. when i checked in the sxmb_moni status shows "scheduled"
I did not configure 107 for single flight booking and checking flight seat availability, is it necesary to do previous scenarios for 107 to make it work with Multiple connecting flight scenario.
Sender Service is MultipleFlightBookingcoordinator.
Receiver service <SID>_107.
Pipleline = receiver.
inbound = IEngine.
outbound = <blank>.
queueid = XBTR  0000
client is 107.
can anyone suggest what's going wrong.
Message was edited by: sas ya

Hi,
I'm not sure if this is the case but have you registered your queues ?
if not take a look at question 9 (intergration engine section)
/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
Regards,
michal

Similar Messages

  • ODI Scenario Hang on ODI Procedure

    Hi Experts,
    We have one ODI scenario which consists of a few ODI procedure steps with anonymous PL/SQL block. When one procedure takes a long time to process data (>60min. when data volume is large), the ODI scenario hangs intermittently on the procedure (ODI Operator shows Running state and no progress to next step in Scenario). The pl/sql script finished fine when running against database directly processing the same dataset.
    When the ODI step hangs, the database side where the pl/sql runs on has no more activities, and the db session(v$session) which processes the ODI procedure goes away as well (db session not existing on db anymore). But the ODI Operator still shows the step in running state and hangs there forever (days). The jdbc connection from ODI to db looks fine.
    How can we fix this problem in ODI? The ODI version is 10.1.3.5.
    Appreciate your input on this.
    Thanks,

    The doc said "If your command is being executed in a transaction (numbered 0 to 9)" then I should set 'Commit'. But I used 'Autocommit' for transaction, is the 'Commit' necessary here?
    Thanks!

  • Connect To Server Hangs Before Prompting For Name And Password

    Hi Everyone.
    Connect to Server hangs for 25 seconds before prompting for name and password.
    I am trying to access a share on a Windows 2008 R2 domain controller via a Mac running 10.6.8 (Snow Leopard) using SMB.
    Example: smb://192.168.101.11/sharename
    Once connected, browsing is fine - it's just the connecting that takes a long time.
    I have specified port 139 and login name, I have disabled IP6 on the Mac, the Mac and Windows 2008 server are on the same LAN and are wired.
    Again, once connected, browsing is fine - it's just the connecting that takes a long time.
    Any help would be appreciated.
    Damian

    Something to add ...
    Connecting to a Windows 2008 stand-alone server outside of the domain (e.g., workgroup) does not have the same problem - the name and password prompt shows immediately.

  • Selecting connecting flights query

    Hi,
    In our system we have a base table with all connecting flights. Each flight leg(segment) is stored as a record (PK is CID and flight_no), however
    both flight segments have the same id (data set). For example:
    Segments(Legs)
    CID    Flight_no  From To
    1       UA123     LAX  DEN
    1       UA456     DEN JFKand the routes base table stores the starting and ending point of a flight, but not the stopover:
    Routes
    From  To
    LAX   JFKThe problem is finding those connecting flights according to the route.
    Help on the sql would be greatly appreciated! Thanks!
    Edited by: user545194 on 01.10.2012 11:08

    Hi again,
    Here is the table ddl with sample data.
    Table DDL:
    CREATE TABLE "TEST"."SAMPLE_DATA_TBL"
        "CID"          NUMBER NOT NULL ENABLE,
        "SNR"          NUMBER(1,0),
        "CS"           VARCHAR2(4 BYTE),
        "FLIGHT_NO"    VARCHAR2(8 BYTE) NOT NULL ENABLE,
        "FROM_AP"      VARCHAR2(3 BYTE) NOT NULL ENABLE,
        "DEPART"       VARCHAR2(20 BYTE),
        "TO_AP"        VARCHAR2(3 BYTE) NOT NULL ENABLE,
        "ARRIVE"       VARCHAR2(20 BYTE),
        "FLT_DURATION" VARCHAR2(20 BYTE),
        "DEP_T"        VARCHAR2(4 BYTE),
        "ARR_T"        VARCHAR2(4 BYTE)
      );Sample data:
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('8','1',null,'LH3487','ADB','04:10:00','TXL','06:05:00','04:55:00','I','-');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('8','2',null,'LH2057','TXL','06:50:00','MUC','08:05:00',null,'-','2');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('123','1',null,'LH3301','AGP','13:35:00','TXL','16:55:00','06:45:00','3','-');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('123','2',null,'LH197','TXL','19:10:00','FRA','20:20:00',null,'-','1');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('213','1',null,'LH693','AMM','02:45:00','FRA','06:25:00','07:30:00','1','1');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('213','2',null,'LH6332','FRA','07:45:00','VIE','09:15:00',null,'1','-');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('281','1','CL','LH2307','AMS','17:25:00','MUC','18:50:00','03:30:00','-','2');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('281','2',null,'LH123','MUC','19:50:00','FRA','20:55:00',null,'2','1');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('402','1','SK','LH6059','ARN','15:15:00','TXL','16:45:00','03:25:00','5','-');
    Insert into TEST.SAMPLE_DATA (CID,SNR,CS,FLIGHT_NO,FROM_AP,DEPART,TO_AP,ARRIVE,FLT_DURATION,DEP_T,ARR_T) values ('402','2',null,'LH193','TXL','17:30:00','FRA','18:40:00',null,'-','1');Explanation: A connection id (cid) consists of 2 flight legs(segments, snr) and the "trick" is to list both connections through input
    of the starting and ending points; i.e. 'AGP' to 'FRA'.
    Thanks!

  • Need query for connecting flights

    Hi all.
    My requirement is as follows
    suppose my itnery is AAA-BBB-CCC.And there are few flights between AAA-BBB and BBB-CCC.I need all the valid connecting flights everyday.My table data is as follows
    orig dest fltno arrivaldate depdate legno itid
    AAA BBB 121 23-05-2011 15:40:00(arrical ar BBB) 1 x
    AAA BBB 123 23-05-2011 16:40:00(arrical ar BBB) 1 x
    BBB CCC 212 24-05-2011 04:05:00(arrical ar CCC) 23-05-2011 19:50:00(depat from BBB) 2 x
    BBB CCC 213 24-05-2011 13:05:00 (arrical ar CCC) 24-05-2011 04:50:00(depat from BBB) 2 x
    now i need to get for legno 1 all the flights in leg 2, whose depdate is grater than arrival date in leg 1.
    Thanks.

    Hi,
    Whenever you have a problem, please post CREATE TABLE and INSERT statements for the sample data. Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    Always say which version of Oracle you're using.
    If I understand the problem, then you can use somehting like this:
    SELECT     l2.*
    FROM     table_x       l1
    JOIN     table_x       l2   ON   l2.legeno     = l1.legno + 1
                     AND  l2.orig     = l1.dest
                     AND  l2.depdate     > l1.arrivaldate
    WHERE     l1.legno     = 1
    ;A self-join, like this, will work if you're looking for a specific leg. If you're interested in all legs (or all legs after a certain point), regardless of whether that's 1, 2, 3 or more, then use CONNECT BY instead of a self-join.

  • WiFi PC connection: network configuration hangs

    I have a new Z3C (UK) and I am trying to sync it with a Windows 7 x64 PC for WiFi access. The drivers are installed and "Xperia Z3 Compact" appears in "Computer". If I right-click and choose "Network Configuration" as per the instructions, a dialog appears asking my if I want to start the pairing process. I click OK and the wizard hangs. I have to unplug the device in order for the dialog to come back to life and tell me it cannot pair my device. Both devices are connected to the same WiFi network and the phone is in MTP mode. I have tried two Windows 7 x64 PCs now and the result is the same: I cannot get this to work.
    Does anyone have any suggestions? I have installed PC Companion but see no options for WiFi pairing.
    Help...!

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    I suggest that you download our program PC Companion:
    http://www.sonymobile.com/global-en/tools/pc-companion/
    In PC Companion press at "How to connect" and then select "Wi-Fi connection" and follow the instruction that appears to see if you can pair your phone with your PC.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Connect local server hangs

    I have a QNAP-NAS server in a local network through ethernet and airport with afp.
    When I try to connect to it, for some reason the connection is not made and the 'wheel' in the lower right corner of the finder window will turn endlessly. The connection button in the finder window becomes inoperative. Often the Finder will hang and cannot be relaunched and a hard reset of the computer seems the only remedy.
    Does someone know how to get the system out of its fruitless search for a connection without a shutdown and full restart?
    Hans van der Meer

    The problem seems to have solved itself after reloading the firmware on the NAS, reformatting the drives and reinstalling the RAID. Although it looked as if MacOSX could not locate the NAS server IP, it never became really clear to me what exactly caused the problem. However, I am content with the fact that it is working now and cross my fingers that it will stay that way.
    Hans van der Meer

  • Connect Pro plugin hangs "Loading"

    Hi,
    I have a problem on one computer (a Mac) whereby I launch my meeting room from Safari, it starts the Connect Pro Plugin (Mac) and then just hangs, staying on the loading screen.  Using ?launcher=false on the URL allows the room to be opened just fine in Safari, but of course I cannot share my screen, etc.  If I try to launch my meeting room from Firefox, the Connect Pro plugin works just fine.
    I have tried removing cookies in Safari, emptying the cache in the Connect Pro plugin, with no joy.
    Please help!  Any advice or suggestions will be very welcome!

    I'm having the exact same issue.  OS is 10.5.8.  I've removed the previously installed addin (found at ~/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin/) and started a new install.  Same issue.  Launcher=false in the URL allows me to participate in a meeting.
    Firefox is not running, nor is any other browser instance or Connect Pro session.
    Support had fixed this for me at one time but it seems to have reverted sometime recently with the new Connect release.

  • URL Connection &  POST - java hangs

    Im trying to send Query String to third party application. Until now I used to send in form of query string (GET). Now i intend use POST Method.
    Following is my piece of skeletal code
    String urlString = "abc" ;
    URLConnection conn;
    InputStream urlInputStream = null;
    String urlString1 = "age=23;salary=2000";
    try {
    urlString1 = "http://ggg:8080/ps" + urlString ;
    URL url = new URL(urlString1);
    conn = url.openConnection();
    System.out.println("1");
    conn.setRequestProperty("Content-length", "9056"); // If I dont set this line, Im getting HTTP 411 //Response Code. I have arbritarily set 9056
    System.out.println("2");
    ((HttpURLConnection)conn).setRequestMethod( "POST");
    System.out.println("3");
    System.out.println("connected");
    urlInputStream = conn.getInputStream(); ---> hanging
    System.out.println("4");
    Output - Im getting 1, 2 and 3. But program is hanging at when it tries to getInputStream(). Im forced to quit .
    Need help on this.

    Here are some elements that may help you :
    If you use the POST method, don't write the arguments in the URL (this is only for the GET method).
    You should just open the URL, and write the POST args with an OutputStream .
    urlString1 = "http://ggg:8080/ps" ;
    Then, open an OutputStream with something like that :
    PrintWriter out = new PrintWriter(new InputStreamWriter(conn.getOutputstrem()) ;
    and write the args :
    out.println("arg1=10&arg2=30") ;

  • JDBC stale connections and app hanging

    Hello,
    After a while idle my app stop working(it actually hangs) and after waiting all I get is the following exception message:
    Caused by: java.sql.SQLException: Invalid or Stale Connection found in the Connection Cache
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
    at oracle.jdbc.pool.OracleImplicitConnectionCache.getConnection(OracleImplicitConnectionCache.java:399)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:404)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:189)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:165)
    at org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider.getConnection(LocalDataSourceConnectionProvider.java:82)
    My datasource is using following OracleDataSource config values:
    connectionCachingEnabled: true
    connectionCacheProperties: InitialLimit=50, MinLimit=50 , MaxLimit=200, PropertyCheckInterval=300, ConnectionWaitTimeout=60, ValidateConnection=true
    Please, give me some help to figure out what is going on...
    Thanks,
    JV

    Hi,
    The class OracleConnectionCacheManager provides a set of administrative APIs applications can use to manage the connection cache. Using these APIs, applications can refresh stale connections.
    refreshCache API:
    void refreshCache(String cacheName, int mode)
    This refreshes the cache specified by cacheName. There are two modes supported, REFRESH_INVALID_CONNECTIONS and REFRESH_ALL_CONNECTIONS. When invoked with REFRESH_INVALID_CONNECTIONS, each Connection in the cache is checked for validity. If an invalid Connection is found, that connection's resources are removed and replaced with a new Connection. When invoked with REFRESH_ALL_CONNECTIONS, all available connections in the cache are closed and replaced with new valid physical connections.
    -Priyanka

  • JDBC Driver.connect seems to hang.

    I've been using DriverManager.getConnection to get a connection to MySQL. This has been working fine until I tried to use it from a Threaded part of my application.
    It seems to hang when it gets to the DriverManager.getConnection line and never return.
    I googled about for hours and came up with that there may be a bug in DriverManager.getConnection which causes a deadlock. So I tried using the connect method directly on the driver but got the exact same problem of it hanging on that line.
    I tried running my application (in Netbeans) with the 'Debug File' mode rather than just 'Run File' and everything works perfectly! No problems, which just seemed strange.
    If anyone could point me in the right direction I'd be very grateful. I can supply more details if need be :)
    Cheers,
    stu.

    It seems to hang when it gets to the
    DriverManager.getConnection line and never return.Have you actually verifed this, for example by putting System.out.println statements before and after the getConnection() call? "Seems to..." implies that you're making an assumption which may not be true.
    I tried running my application (in Netbeans) with the
    'Debug File' mode rather than just 'Run File' and
    everything works perfectly! No problems, which just
    seemed strange. Doesn't seem too strange actually. That's what "race conditions" and deadlock conditions are about -- different timing in the app will cause different results.

  • Unreliable connection and constant hangs

    Hello.
    Since a week ago, I've been having these troubles with lates version of Firefox hanging ALL THE TIME. I tried almost everything, nothing seemed to work. Today I tried reseting Firefox. And guess what? I can't make sure if it worked because now I have this problem with GOOGLE saying that it is an unrelieable connection. Specifics below:
    www.google.com usa un certificado de seguridad no válido.
    El certificado no es confiable porque ninguna cadena emisor fue proporcionada.
    (Código de error: sec_error_unknown_issuer)
    I'm sorry, my Firefox is in Spanish, but I guess the important part is the Error Code. Please help.

    You can retrieve the certificate and check details like who issued certificates and expiration dates of certificates.
    *Click the link at the bottom of the error page: "I Understand the Risks"
    Let Firefox retrieve the certificate: "Add Exception" -> "Get Certificate".
    *Click the "View..." button and inspect the certificate and check who is the issuer of the certificate.
    You can see more Details like intermediate certificates that are used in the Details pane.
    If <b>"I Understand the Risks"</b> is missing then this page may be opened in an (i)frame and in that case try the right-click context menu and use "This Frame: Open Frame in New Tab".
    *Note that some firewalls monitor (secure) connections and that programs like Sendori or FiddlerRoot can intercept connections and send their own certificate instead of the website's certificate.
    *Note that it is not recommended to add a permanent exception in cases like this, so only use it to inspect the certificate.

  • Connecting & Disconnecting Bluetooth Hangs Lumia92...

    I've begun to notice that when my Lumia920 connects & disconnects multiple times with my vehicle's Bluetooth, the phone hangs & requires a restart. (It happens when I have to make multiple stops while grocery shopping)
    This was not the case when I was using my simple NokiaC300. There was no problems doing the exact same tasks.
    Any suggestions?

    CanadaLumia920, sounds a like a bug. You should report this to the head-unit manafucturer of your car. He is able to debug this because he has your head-unit. Nokia or Microsoft might not have your head-unit. Then, your manufacturer tests your device and with his professional tools is able to debug this. Then, your manufacturer is able to determine if it is his bug, a Nokia bug or one of Microsoft (because of Windows Phone). Then, your manufacturer is able to file a qualified bug report to the one causing this. And if you have luck, it will get fixed through an software update.
    The bottom line of this story: You cannot do much. Bugs happen. Rather go back to your old mobile phone. Some network operators offer to buy an additional SIM with the same number, so you can use your old and new phone in parallel.

  • Remote connection to iTunes hanging up on Verification of Passcode

    I have followed all of the steps for connecting my brand new iPad with iTunes using Remote and Home Sharing. My iPad is able to use my wifi for all other functions. When I try to connect with iTunes, it hangs up on the passcode verification. It runs and runs until either my computer or my PC fall asleep. I have done the following:
    1. Verified that Home Sharing is On for both iPad and iTunes.
    2. Signed out and signed back into my Apple account.
    3. Verified that my iPad and my computer are both signed in using the identical same password and ID.
    4. Tried connecting with my firewall disabled.
    5. Confirmed that my iPad is the only device connected to iTunes on this computer.
    6. Restarted my iPad.
    7. Reset my internet wifi router.
    8. Restarted my modem.
    Any ideas out there?
    chefmomster2

    An update...
    I have tried these steps since my previous post with no change. (My iTunes has now been verifying my passcode for 30 minutes to no avail.)
    1. Disabled firewall, restarted iPad and computer.
    2. Made TCP 3689 and UDP 5353 exceptions to allow the connections another document said that the programs require. Restarted...
    3. Disabled IPv6. Restarted...
    Help!

  • Windows Server 2008 R2 SP1 RDS hang and stop responding new rdp session. Already connected session also hang as well

    We have a Windows Server 2008 R2 SP1 RDS supporting many ThinClients, mostly using a mandatory profile on a Windows 2003 R2 AD environment
    at the moment of the hang what we experienced was:
    New RDP sessions got stucked in the legend "Iniciando" (we have the spanish MUI).
    Systems Events shows a lot of Warnings:
    The Group Policy Client Side Extension Group Policy Shortcuts may have caused the Group Policy Service to terminate unexpectedly. To prevent further failures in the Group Policy
    Service, this extension has been temporarily disabled until after the next system restart. Group Policy settings managed by this extension may no longer be enforced until the system is restarted. The vendor of this extension should be contacted if this issue
    recurs.
    and after that a lot of this errors:
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the CryptSvc service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the NlaSvc service.
    The RDP protocol component X.224 detected an error in the protocol stream and has disconnected the client.
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the Schedule service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the gpsvc service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the BITS service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the SessionEnv service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the ShellHWDetection service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the CertPropSvc service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the IKEEXT service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the iphlpsvc service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the SessionEnv service.
    A timeout (30000 milliseconds) was reached while waiting for a transaction response from the iphlpsvc service.
    During the problem we ping DC and Network Share where Profile and Document Redirection resides and they were working OK (we also did a
    \\server\HomeUsers and we reached it without problem)
    Only reseting the server worked, Any Ideas of what could be causing this ?? Best Regards
    Federico Giampietri Latamsupport IT Infrastructure Services

    Hi Clarence,
    Today we experienced the problem again,
    Users can’t login to RDS, but now they got stucked at “"Please wait for the Group Policy client”;
    System log events recorded the following errors again:
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the Schedule service.
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the sessionenv service.
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the ShellHWDetection service.
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the Wuauserv service.
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the BITS service.
    timeout (30000 milliseconds) was reached while waiting for a transaction response from the CertPropSvc service.
    What path do you suggest to investigate further?
    Thanks a lot!
    Federico Giampietri Latamsupport IT Infrastructure Services

Maybe you are looking for

  • How to backup iphotos onto an external hard drive....

    I have been reading through the questions on here to figure out how to backup and save my iphotos externally and i am hitting numerous brick walls... I have tried to use the time machine but my hard drive has photos and documents on it and i do not w

  • Limewire/Azurius Java problem.

    Now the above 2 programs require java 1.5... The problem that i have is that after 10 to 15mins of downloading anything using the above 2 programs... my computer and the net freezes..... first the the download speed goes down to 0kbps........ then if

  • Date Display In a Column

    Hi All, I have a coulmn which displays date in the fromat "5/29/2010 2:52:10 PM", my requirement is I want to display only the Month and year from this data. Say "5/29/2010 2:52:10 PM" should be displayed as "May 2010".....I checked and I found we ha

  • OSB Proxy Service remote Endpoint URI

    Hi, I have configured a new Proxy Service in OSB where the endpoint URI points to a JMS Queue on a remote Weblogic Server. But when I look at the OSB server's log, it is showing the following WARNING message: *'Please ensure the destination is availa

  • How to make moving/scrolling photo menu?

    http://media.moma.org/subsites/2008/miro/flashsite/index.html How can I do this? when you move left and right and paintings move. and when you click on a painting, you see the the title and it links to another page on the site.