Blazeds 4.0.0.7548 is not working on Websphere over HTTPS protocol

Hi All
Our application is on Blazeds 4.0.0.7548 deployed on websphere 7.0.  While this application works fine on HTTP but it doesn't work consistently on HTTPS.  It throws following exception
FaultEvent fault=[RPC Fault faultString="error" faultCode="Channel.Call.Failed" faultDetail="NetConnection.Call.Failed: HTTP: Failed"] messageId="C6ABB836-C505-CAFC-F114-0006E0E0305F" type="fault" bubbles=false cancelable=true eventPhase=2.
Following is the screeshot
I don't see any exception in the logs as well.
HTTP works fine, i only see this exception on HTTPS.
Regards
Ravi

As I mentioned earlier, we are using MGCP for that particular fax port and the gateway we use as H323.
Even I'm not pretty sure about using mixed protocol, I believe this gateway gonna used to support call center calls. SInce MGCP is easy for configs they might have confiugred only the port as MGCP endpoint.
Now its not working with both the cases, not in mgcp as well as fallback mode. Can you reveiw the debugs and see why I have to remove "modem passthrough" command from voice service voip section which of our standard config and works well with all other gateway of ours. Please help here.

Similar Messages

  • IPhone 5s not working after voice over turned on

    iPhone 5s not working after voice over turned on

    Hello ss1997,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue where your iPhone will not boot past the Apple logo please follow the steps in the article below.
    iOS: Not responding or does not turn on
    Take care,
    Alex H.

  • Apple Mini Display Port NOT working at resolutions over 1600X1200!

    Problem:
    Apple Mini Display Port does NOT work at resolutions over 1600X1200 on NON Apple Cinema Displays.
    That means if you own any other brand of monitor such as NEC, Lacie, etc. you will NOT get native resolution on your 24 inch monitor as it is stuck at a maximum resolution of 1600X1200.
    This story was mentioned on "Macbreak Weekly" show 4-14-2009. I have since checked with a few people and it would indeed seem to be true at this point.
    I REALLY hope a solution from Apple comes soon and this is not some new policy of theirs. If so, it may be the last Mac Pro I will or can ever own. The reason is I do a lot of 3D work with C4D, Vue, Modo and Photoshop CS4 so I MUST have a monitor like the high-end ones from Lacie that have 100% color gamut and Adobe RGB. I can NOT be tied down to an Apple Cinema display due to that work. At this time, it seems this means I would only get 1600X1200 resolution on that 24 inch monitor.
    Has anyone else confirmed this too and if so what the heck is Apple thinking or better still going to do about it? I LOVE my Mac Pro but if they start forcing displays on us then I won't be buying another Mac, it's just that simple.

    Thanks, but I think two things may be different in that setup.
    1. If I understood correctly, it's a first gen without a "Mini Display Port" and
    2. It was a laptop not a Mac Pro with a video card.
    I think it has specifically to do with either one or both of the above combos. In particular I think it's the video card they are putting in them.
    I am not sure if a new 2009 Apple laptop with a Mini Display Port connected to a NON Apple display would have an issue or work like yours does now. It would be interesting to get to the bottom of this for sure because it REALLY hurts people like myself that are into 3D design.
    I will try to get back on this once I continue to find out more details.

  • Since upgrading iPhone 4S to new OS it has not worked. Now over 10 days with no phone, talked to Apple Care in Colorado and Australia over 10 hrs on phone 7 consultants. All that has to happen is for someone at Apple Care to reset a password? Help

    Since upgrading iPhone 4S to new OS it has not worked. Now over 10 days with no phone, talked to Apple Care in Colorado and Australia over 10 hrs on phone 7 consultants. All that has to happen is for someone at Apple Care to reset a password? Phone and Apple ID don't recognise each other. This is nuts!

    The phone will not recognise Apple if passwords or secret questions

  • Preview failed because Adobe Muse could not make a connection over HTTP. The most common cause of this is Firewall software which prevents HTTP connections. You may need to change Firewall settings to allow Adobe Muse to make connections.

    Preview failed because Adobe Muse could not make a connection over HTTP. The most common cause of this is Firewall software which prevents HTTP connections. You may need to change Firewall settings to allow Adobe Muse to make connections.
    no firewall at all, in win 8.1, turned it off for all networks
    ftp and publish works just fine

    Hi,
    Please take a look at this post : Re: Adobe Muse - Preview Failed
    Regards,
    Aish

  • Blend Overlay is not working in Safari over site's background image

    My message is concerning the website (below) called
    suspendedinsound.com.
    The blend mode, Overlay, is not working on several of my
    movie clips in the Safari browser.
    The Flash swf and html is published with a transparent
    background. I put a bg image (via CSS) in the html code. The
    objects with overlay (the large animating gold rings and
    play/stop/mute buttons), are not "overlaying" over the html's
    background image. They look yellow or cream instead of being very
    subtle (dark reddish brown). This is only a problem in the Safari
    browser. Looks great in Firefox and IE.
    Anybody have a solution?
    Thanks
    -loren
    http://www.suspendedinsound.com

    Transparent background is a less than robust publishing
    option for Flash. As you've seen, it can produce some unreliable
    results.

  • Keyboard shortcuts not working while mouse over title-bar

    most of the time, while mouse is over the top title bar, keyboard shortcuts (like Ctrl+W, Ctrl+T, Alt+D) are not working.
    This is a strange behaviour that happens only after i migrated to linux (ubuntu 10.10)
    Sometimes, after i try the shortcuts a few times, on middle of the screen also, then suddenly it works also when the mouse is on the title bar. It's pretty strange...

    Well, that's not the case here.
    I tried to focus on text field, and the keyboard shortcuts does work, so that's obviously not the case here.
    Sometimes the address bar is selected and i can write there, but when the mouse go over the top title, it suddenly stops reacting.
    And the Alt+D and Ctrl+T are not working doesn't matter if a text field is selected.
    BTW, sometimes it does work, it almost seems like an intermittent problem.

  • Sorting does not work  with ROW_NUMBER () OVER (ORDER BY

    CREATE OR REPLACE PROCEDURE SP_SALES (
    p_sales_id IN VARCHAR2,
    p_rownnum_from IN NUMBER,
    p_rownnum_to IN NUMBER,
    p_sort_by IN VARCHAR2,
    p_query OUT SYS_REFCURSOR,
    AS
    v_query VARCHAR2 (32000);
    v_sort_list VARCHAR2(32000) ;
    BEGIN
    IF p_spv_sort_by IS NULL THEN
    v_sort_list := 'given_name ASC ' ;
    ELSE
    v_sort_list :=p_spv_sort_by;
    END IF ;
    DBMS_OUTPUT.PUT_LINE ('v_sort_list '||v_sort_list);
    OPEN p_query FOR
    SELECT sales_id,
    item_id,
    order_num,
    employee_name
    ,given_name
    dept_id,
    manager_name,
    ROW_NUM
    FROM
    (SELECT x.*,
    ROW_NUMBER () OVER (ORDER BY v_sort_list ) ROW_NUM
    FROM (sales_id,
    item_id,
    order_num,
    employee_name
    ,given_name
    dept_id,
    manager_name,
    FROM order rvw,
    sales pol,
    emp ca,
    WHERE pol.id = rvw.pr_order_id
    AND ca.empid =pol.employee_id
    AND status = 'SUP') x )
    WHERE ROW_NUM BETWEEN p_rownnum_from AND p_rownnum_to;
    -- ORDER by v_sort_list ;
    DBMS_OUTPUT.PUT_LINE ('v_sort_list '||v_sort_list);
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE ('EX ');
    END;
    END;
    SHOW ERRORS
    Sorting does not work. Am I doing something wrong here?
    executing procedure using below
    declare
    x SYS_REFCURSOR;
    y number;
    BEGIN
    SP_SALES('70159_502',1,5, 'GIVEN_NAME'||' ASC' ,:x);
    --dbms_output.put_line (:x);
    END;

    Hello
    Depending on how many different columns you can sort on and the data types of them, it may be feasible for you to include the conditional logic in the existing statement without the need for dynamic sql...
    DTYLER_APP@pssdev2> var p_spv_sort_by varchar2(100)
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:='some other column'
    PL/SQL procedure successfully completed.
    P_SPV_SORT_BY
    some other column
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
    G O    ROW_NUM
    c x          1
    b y          2
    a z          3
    3 rows selected.
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:=NULL;
    PL/SQL procedure successfully completed.
    P_SPV_SORT_BY
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
    G O    ROW_NUM
    a z          1
    b y          2
    c x          3
    3 rows selected.
    DTYLER_APP@pssdev2>But that would depend on the columns you're sorting on being of the same data type or at least having the ability to convert them to the same data type without loosing the sort order.
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
                WHEN :p_spv_sort_by = 'some other column' THEN other_column
    ERROR at line 14:
    ORA-00932: inconsistent datatypes: expected CHAR got DATE
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN TO_CHAR(other_column,'YYYYMMDDHH24MISS')
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
    G OTHER_COLUMN            ROW_NUM
    a 12-SEP-2011 15:04:19          1
    b 13-SEP-2011 15:04:19          2
    c 14-SEP-2011 15:04:19          3
    3 rows selected.HTH
    David

  • Getting http printing to windows printer server to work! - IPP over HTTP

    Im trying to get our macs to print to our windows print server using web printing (http). The server is setup to accept anonymous as well as domain user print requests.
    when i add the printer using advanced setup > ipp over http and enter our printer url, e.g. http://ourprinterserver.mydomain.com/printers/printername
    and enter our printer name in the appropriate field, select the correct driver, any file sent the printer sits in the print cue.
    when i looks at the cups page http://localhost:631, I see an error that that the destination printer does not exist.
    Has anyone had success?

    I don't have a Windows print server, but the standard port for IPP printing is 631, so you need to specify that in the URI like this:
    http://ourprinterserver.mydomain.com:631/printers/printername
    (otherwise, http defaults to port 80)
    HTH

  • BlazeDs is not working in Websphere v6.1.0

    Hi,
         i have done one sample application by incorporating spring and flex in Tomcat5.5.if i deploy the same application by making some modifcations(uncommented websphere specific configuration) and configured RTMP related stuff in Websphere.when ever i send the request for messagebroker/amf i am getting  Error 404: SRVE0190E: File not found: /messagebroker/amf .if any one of you faced the same prblm.plz help me out..

    This link might help:
    http://www.frightanic.com/2010/05/10/solution-to-error-404-srve0190e-on-websphere-6-1

  • 5.1 over analgue not working, 5.1 over digital work

    I have the 24 bit external li've sound card plugged into my laptop via usb. Well i connected it into my reciever via digital coax and i can get DD. But if i connect it via analogue wires(http://www.radioshack.com/product/in...entPage=search) i can only get sound through the front 2 speakers. I have a 5. set up but in the testing its only front L/R. But if i switch it to spdif it works for dd. I have CMSS enabled and i have 5. set as my speakers but it still doesnt work. Any ideas?

    3
    It seems like it should be working but its not
    I wonder why the card isnt trying to send sound over those wires when its set to 5., if it was the wires being messed up then why would the left and right speaker worK?

  • HP Envy 15-j126TX Unable to turn on, hard reset does not work, warranty just over

    Dear all My HP Envy laptop was working fine every day, doing its job well till today.I tried to turn on the laptop by pressing the power button, but nothing happened.Removing the battery, using only the AC charger, switching power sources and hard resets all don't work. What the problem looks like:- laptop does not turn on when power button is pressed- charging port emits a red light when battery is in, white light when only relying on AC power.- screen does not turn on at all, no fan sounds either. To make things worse, HP has been asking me to extend my warranty for about a month. I declined. The warranty end date (1 year) was approximately July 14. Today is July 15. I hope this is not the case, but it seems that HP has produced a computer designed to fail on the exact date that warranty ends. I would greatly appreciate any help as I depend heavily on my laptop for school and work purposes.Thank you!

    Hi ,
    Welcome to the HP Forums! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. Thank you for posting. I have read your post, and I understand that your laptop will not start up. I want to assist in that. Please follow the document below  for troubleshooting.HP Notebook PCs - Computer Does Not Start (Windows 8) Let me know the results of your troubleshoot. Regards,

  • Help Please: Mail will not work when Wifi uses HTTP Proxy

    I am using an IPad 2 under iOS5. At work, I can connect to the internet using Safari via our wifi network with no problems. This requires access via a manually set HTTP Proxy.
    However, all attempts to create or use a (GMail) account have failed. I know that the mail account works because I have used it with no problems via my home wifi network. It would appear that Mail is not using the wifi proxy information in settings.
    The same was true under iOS4, but I would have hoped that a fix would have appeared in iOS5.
    Can anyone offer help or advice as to how I get around this problem?
    Thanks,
    Chris

    Still need help

  • Down arrow not working with voice over

    Hi I am speaking on behalf of someone who owns a macbook, I am quite new to mac but much pc experence so have been learning mac quickely.
    However the following issue has arisen and I am unsure how to fix,
    because of his needs voice over is turned on, however and has worked fine with the zoom also on.
    Howver today he has pressed something and now when voice over is on the down bottom jumps between different sections on the page such as the title of the probgram and the heading and bottom of page and will not scroll bit by bit on an email/safari like it did UNLESS you turn voice over off..
    any suggestions on how to resolve this would be great..
    thanks all

    I'm sure there's a software setting that needs to be adjusted, but I don't know Voice Over very well. Which version of OS X is on the computer? I'll ask the hosts to move this thread to the appropriate forum once you let us know
    ~Lyssa

  • Extension Mobility not working during fail over

    Hello All
    I am John.   I have a cluster that has 2 subscribers and 1 publisher.  We are running 8.5.1.  Yesterday I had a case where my one subscriber had failed and everything failed over to the other subscriber.  Everything but extension mobility seemed to work.  I checked all my certs, I checked the services, I checked the url for the services.  Everything seemed to check out correctly.  The url is pointed to the publisher and the publisher was available. 
    What i saw during failover:
    When the services button was activated I received the requesting notice.  after a while the message changed to Host not found.  Then the next message was select service. 
    I did a restart on the extension mobility service with no effect.  The other web applications (such as corp directory) all seem to be working correctly.  Extension Mobility is the only service I have running.
    When the failover ended and my lost subscriber was available, extension mobility and the services started working again. 
    Any help or ideas would be greatly appreciated.
    Thank you
    John

    Hi John,
    As suggested by iptuser55, switch on the EM service on both the nodes. This is the only way failover would work. There are 2 services in CUCM, Extension Mobility and EMApp. The EMApp runs on all the nodes, and its job is to keep a list of the nodes with the EM service activated. When the top node in that list goes down, the EMApp will then point to the next node in the list, which will act as the Failover.
    Here's the architecture of the EM service.
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/srnd/8x/uc8x/cmapps.html#wp1187822

Maybe you are looking for