Movieclip rollovers not working on different frames

I'm creating an interactive that consists of 3 maps, each on its own tab. On each map, there are various circles representing data for a particular city.I want the circles to display a pop-up containing text when you roll over each one. Since I don't want the plain old buttons, I'm using 2-frame movie-clips, where the second frame represents the mouse-over state and a text box fades in as follows:
mntextbox2.addEventListener(Event.ENTER_FRAME, fl_FadeSymbolIn_4);
mntextbox2.alpha = 0;
function fl_FadeSymbolIn_4(event:Event)
    mntextbox2.alpha += 0.1;
    if(mntextbox2.alpha >= 1)
        mntextbox2.removeEventListener(Event.ENTER_FRAME, fl_FadeSymbolIn_4);
This all works fine, and I can get multiple buttons working on the first tab (frame 1) by grouping them all into a movie clip, as follows:
buttongroup.buttonMode = true
buttongroup.addEventListener(MouseEvent.MOUSE_OVER, onButtonOver);
buttongroup.addEventListener(MouseEvent.MOUSE_OUT, onButtonOut);
function onButtonOver(e:MouseEvent):void
    e.target.gotoAndStop(2);
function onButtonOut(e:MouseEvent):void
    e.target.gotoAndStop(1);
The problem is when I try to use the same or a similar with a different set of buttons on the second tab (frame 15). I put a similar set of actionscript on frame 15. The buttons seem to accept the buttonMode = true command, but I absolutely cannot get the rollovers to display. I've tried using different function names for the MOUSE_OVER and _OUT events, to no avail. I get no errors and nothing shows up in Output -- it just acts as if there's no rollover to display.
Do I need to somehow put all the AS on Frame 1? Is it an issue related to ENTER_FRAME in the rollovers? Many thanks.

Is there any relationship between buttongroup and mnbuttontab2?
The only code you should need in frame 15 for the rollover/out should be...
mnbuttontab2.buttonMode = true
mnbuttontab2.addEventListener(MouseEvent.MOUSE_OVER, onButtonOver);
mnbuttontab2.addEventListener(MouseEvent.MOUSE_OUT, onButtonOut);
as they should be able to use the same functions from frame 1 without rewriting them in frame 15.
Have you tried putting trace() calls in your event handler functions in frame 15 to see if the functions are getting called?

Similar Messages

  • Fonts changing and rollovers not working...

    Can someone help me figure out why my fonts are changing and my rollovers are not working? I am publishing to a folder and then uploading to Godaddy's FTP. The site works and looks fine before I upload it, the problem only occurs once it's online.

    That's understandable. There are a number of text boxes that are overlapping other text boxes and objects. That can cause IE to do strange things. Also make sure you're using Web Safe Fonts. On the green page you're using Bank Gothic which is not a web safe font. Computers that don't have that font installed will substitute a different font and it'll look much different than you intended.
    Roddy's has some tips on making iWeb more friendly to IE: How to get your iWeb Site to load in Internet Explorer.

  • MovieClip.currentFrame traces to a different frame than it's displaying

    I have a movieclip on the stage with 3 frames. Each frame has a stop(); in the actions layer. I have double (and triple and quadruple) checked the label names.
    There is a button to toggle between the three frames of the movie clip. A Frame 1 button, a Frame 2 button, and a Frame 3 button. The movie clip (there are lots of them) is then spawned with a mouse click. The movie clips are already declared at the beginng. They are not unlimited so I can just have a for loop go through all of them and change the frame number even before they are spawned and added to the display list.
    Frame 2 and Frame 3 work just fine. But the button to go to Frame 1 will display Frame 1 on all of the pieces that are already on the stage, but on all new pieces that will be spawned, it just displays whatever other button was pressed last. For instance if I have a movie clip on the stage that's displaying Frame 2 and I hit the buttom for Frame 1, the movie clip will switch to Frame 1. But if I spawn a new movie clip, it will display Frame 2. If I then click back on the Frame 2 button and then again to Frame 1, the movie clip will correct itself.
    I can't find where on earth in the code it's going wrong. I've tried using traces but I can't find any problems or inconsistencies. Everywhere I put a trace to tell me what frame the object is at, it traces correctly. I'll click on Frame 1 button, then click on the stage, and it will trace to the output menu that the current spawned movie clip is on Frame 1 when it's very clearly displaying Frame 2.
    Does that make any sense?
    Here is the code that spawns the movie clip:
    function addNewPiece (e:MouseEvent): void {
        ri = Math.floor(Math.random()*(1+PuzzleGlobals.TOTAL_NUMBER_USA));
        if (PuzzleGlobals.statesOnBoardUSA == PuzzleGlobals.TOTAL_NUMBER_USA) {
            //play BOOP sound indicating no new pieces left
        else {
            if (usaPiece[ri] != null) {
                bmc.addChild(this[usaPiece[ri]]); //bmc is the blank movie clip all new spawns are attached to
                    trace (this[usaPiece[ri]].currentFrame + this[usaPiece[ri]].currentFrameLabel); // 1shape, but displaying 2
                if (PuzzleGlobals.currentLevel == "Shape") {
                    trace (this[usaPiece[ri]].currentFrame + this[usaPiece[ri]].currentFrameLabel); // 1shape, but displaying 2
                    this[usaPiece[ri]].height = this[usaPuzzle[ri]].height; //this is to match the size of the puzzle pieces
                    this[usaPiece[ri]].width = this[usaPuzzle[ri]].width;
                this[usaPiece[ri]].x = e.stageX;
                this[usaPiece[ri]].y = e.stageY;
                usaPiece[ri] = null;
                PuzzleGlobals.statesOnBoardUSA++;
            else {
                addNewPiece(e);
    Here is the code for the button switches:
    nameLevel.addEventListener(MouseEvent.CLICK, changeLevel);
    abbrevLevel.addEventListener(MouseEvent.CLICK, changeLevel);
    shapeLevel.addEventListener(MouseEvent.CLICK, changeLevel);
    function changeLevel (e:MouseEvent): void {
        trackUSAPiece = ["pieceAL", "pieceAK", "pieceAZ", "pieceAR", "pieceCA", "pieceCO", "pieceCT", "pieceDE", "pieceFL", "pieceGA", "pieceHI", "pieceID", "pieceIL", "pieceIN", "pieceIA", "pieceKS", "pieceKY", "pieceLA", "pieceME", "pieceMD", "pieceMA", "pieceMI", "pieceMN", "pieceMS", "pieceMO", "pieceMT", "pieceNE", "pieceNV", "pieceNH", "pieceNJ", "pieceNM", "pieceNY", "pieceNC", "pieceND", "pieceOH", "pieceOK", "pieceOR", "piecePA", "pieceRI", "pieceSC", "pieceSD", "pieceTN", "pieceTX", "pieceUT", "pieceVT", "pieceVA", "pieceWA", "pieceWV", "pieceWI", "pieceWY"]
        if (e.target == nameLevel) {
            PuzzleGlobals.currentLevel = "Name";
            nameLevel.gotoAndStop("Active"); //change appearance of the buttons
            abbrevLevel.gotoAndStop("Inactive");
            shapeLevel.gotoAndStop("Inactive");
            for (var j=0; j<(PuzzleGlobals.TOTAL_NUMBER_USA); j++) { //make all declared movie clips go to the right frame
                this[trackUSAPiece[j]].gotoAndStop("wholeName");
        else if (e.target == abbrevLevel) {
            PuzzleGlobals.currentLevel = "Abbrev";
            abbrevLevel.gotoAndStop("Active");
            nameLevel.gotoAndStop("Inactive");
            shapeLevel.gotoAndStop("Inactive");
            for (var k=0; k<(PuzzleGlobals.TOTAL_NUMBER_USA); k++) {
                this[trackUSAPiece[k]].gotoAndStop("abbrev");
        else if (e.target == shapeLevel) {
            PuzzleGlobals.currentLevel = "Shape";
            shapeLevel.gotoAndStop("Active");
            nameLevel.gotoAndStop("Inactive");
            abbrevLevel.gotoAndStop("Inactive");
            for (var l=0; l<(PuzzleGlobals.TOTAL_NUMBER_USA); l++) {
                this[trackUSAPiece[l]].gotoAndStop("shape");
    Thanks so much!
    Amber

    Bug report here in case someone thinks they know what's wrong
    https://bugbase.adobe.com/index.cfm?event=bug&id=2953829

  • Dreamweaver rollovers not working in Safari

    Hi,
    I have been using Dreamweaver's image rollover effects for
    years now with no issues. Well, until now. I'm working on a fairly
    simple site for a filmmaker. It only includes 3 small rollover
    effects.
    I've tested the site on my PC using IE, Firefox, and Safari
    3.0.4, and it looks fine. The rollovers do not work for the client
    in Safari though. She is using Safari version 2.0.4. Her system is
    Mac OS X, version 10.4.8, 1.33 GHz powerPC G4.
    I'm stumped. I'm using Dreamweaver CS3. Here's a link to one
    of the pages with the issue:
    http://www.leadtooth.com/pythagoras/filmwork.html
    Any help would be incredible appreciated. Thanks in advance.
    Matt

    You have munged your code.  Change this -
    <script language="JavaScript" type="text/javascript">
    <meta name="coverage" content="Worldwide">
    <meta name="country" content="Canada">
    <meta name="revisit_after" content="14 days">
    <meta name="robots" content="index, follow">
    <meta name="distribution" content="global">
    <meta name="rating" content="General">
    <!--
    function MM_reloadPage
    to this -
    <meta name="coverage" content="Worldwide">
    <meta name="country" content="Canada">
    <meta name="revisit_after" content="14 days">
    <meta name="robots" content="index, follow">
    <meta name="distribution" content="global">
    <meta name="rating" content="General">
    <script language="JavaScript" type="text/javascript">
    <!--
    function MM_reloadPage

  • IWeb rollovers not working

    I've created a site in IWeb, when I publish to my local folder or the web, the rollovers in my navigation bar do not work. They used to work fine, until I added a few more pages to complete my site. My nav bar is a text box with my links inserted as text.
    Any suggestions?
    Thanks

    I see the rollover image that should come up . Since the rollover works locally the issue has to be with the uploading of the site files. How are you uploading the files?
    If you're using iWeb try using a 3rd party FTP client like the free Cyberduck to upload the site folder and its index.html file to the server.

  • Rollovers not working. Some do, some don't, they're identical!?

    I've used this onmouseover set of code many times. Today I have 5 rollovers, two work and three just dont. Can't figure out why.
    My  About works, and my Contact works.  But    my   Management  and the Development and Implement don't work.    ----??    A Javascript thing, JSLint, tells me there's a missing semicolon after the png on each line, but I've never used a semicolon there before.  --?  Once Len Hewitt found an ampersand in my meta tag or something like that, and it seemed to corrupt the page, or something, I've vague memory on that...
    Thanks friends!

    Well, I found the culprit, although I don't comprehend it too well.  It was a layer I was using to indicate the edges of each nav button, a png layer.   The rollovers work without that layer, but not with it. On with the show...

  • Multicast Does not work between different VLANS

    Hi,
    I have problems with multicast. On the same VLAN i can see the SAP announcement in VLC and play, but on different VLAN i can see SAP but i cant play it. The play turn to pause and the video doesn´t appear.
    I have 2 Cisco 6500 switch CORE with GLBP configured but not working. In the second switch i have all interfaces in shutdown. The first core switch have L3 routing enable.
    The Global configurations:
    ip multicast-routing.
    I have the transmitter PC on vlan 51 i transmit to 230.0.0.50 group an im trying to recive on vlan 80. The vlans configurations are:
    Vlan 51
    ip address x.x.31.254 255.255.255.0
    ip pim sparse-dense-mode
    Vlan 80
    ip address x.x.80.1 255.255.255.0
    ip pim sparse-dense-mode
    I have 2 Cisco 2960 (L2 only) for the access.
    The principal commands outputs are:
    CORE1#show ip mroute | inc 230.0.0.50
    (*, 230.0.0.50), 01:50:50/00:02:21, RP 0.0.0.0, flags: DC
    CORE1#
    CORE 1
    interface Vlan1
    ip address x.x.1.1 255.255.0.0
    ip access-group 101 out
    no ip unreachables
    ip pim sparse-dense-mode
    mls rp ip
    interface Vlan51
    ip address x.x.31.254 255.255.255.0
    ip access-group 151 out
    ip helper-address x.x.x.x
    ip helper-address x.x.x.x
    no ip unreachables
    ip pim sparse-dense-mode
    mls rp ip
    interface Vlan80
    ip address x.x.80.1 255.255.255.0
    ip access-group 150 out
    no ip unreachables
    ip pim sparse-dense-mode
    glbp 80 ip x.x.80.254
    glbp 80 timers 5 18
    glbp 80 timers redirect 600 7200
    glbp 80 priority 254
    glbp 80 preempt delay minimum 60
    glbp 80 authentication text glbpkey
    glbp 80 forwarder preempt delay minimum 60
    CORE2
    interface Vlan1
    ip address x.x.1.4 255.255.0.0
    ip access-group 101 out
    no ip unreachables
    ip pim sparse-dense-mode
    mls rp ip
    interface Vlan51
    ip address x.x.31.2 255.255.255.0
    ip access-group 151 out
    ip helper-address x.x.x.x
    ip helper-address x.x.x.x
    no ip unreachables
    ip pim sparse-dense-mode
    shutdown
    mls rp ip
    glbp 51 ip x.x.31.254
    glbp 51 timers 5 18
    glbp 51 timers redirect 600 7200
    glbp 51 preempt delay minimum 60
    glbp 51 authentication text glbpkey
    glbp 51 forwarder preempt delay minimum 60
    interface Vlan80
    ip address x.x.80.2 255.255.255.0
    ip access-group 150 out
    no ip unreachables
    ip pim sparse-dense-mode
    shutdown
    mls rp ip
    glbp 80 ip x.x.80.254
    glbp 80 timers 5 18
    glbp 80 timers redirect 600 7200
    glbp 80 preempt delay minimum 60
    glbp 80 authentication text glbpkey
    glbp 80 forwarder preempt delay minimum 60
    end
    Someone can help?
    Thanks,
    Alfredo

    Hi johnd...
    Im using VLC 1.1.2 (i can not update because i have a DVDT2 card to capture the digital terrestrial television and it only work in this version). I have all the firewalls down.
    This is the output for the show ip igmp snooping groups on the 2960.
    80        230.0.0.50               igmp        v2          Gi1/0/21, Gi1/0/24
    Port G1/0/21 is where the receiver is conected and the 24port is the trunk.
    Jon, i revert and this is the output. I put the ip pim rp-address the same of the lookpback that i create previously.
    (*, 230.0.0.50), 00:37:46/00:02:19, RP 192.168.230.230, flags: SJC
      Incoming interface: Null, RPF nbr 0.0.0.0
      Outgoing interface list:
        Vlan80, Forward/Dense, 00:09:52/00:00:00
    The strange thing is that I have more than 40 vlans and it only fail in some vlans like 80.

  • Trusted RFC not working for different user , working for same user

    Dear All,
    I have two SAP system - One Solman (7.0) and another ECC 6.0 (SR3) on HPUX box with Oracle DB (Unicode).
    I want to establish Trust relationship between these system.
    I have configured the same, as per the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/8b/0010519daef443ab06d38d7ade26f4/content.htm
    and note 128447.
    My requirement is one user X in solman client 001,
    will execute some test plan (Tcode stwb_2) which will take the control to ECC 6.0 client 200, execute the tcode as user Y and come back in Solman again.
    The user X (SAP_ALL) exists in Solman - client 001 and user Y (SAP_ALL) exists in ECC 6.0 - client 200.
    In ECC 6.0 client 200, I have created a role ZRFCACL with the following and assigned to the user Y (as per the above help / note):
    Role : ZRFCACL
    Auth. Obj: S_RFCACL
    Value assigned to fields are:
         RFC_SYSID : SOL
         RFC_CLIENT: 001
         RFC_USER  : X
         RFC_EQUSER: N
         RFC_TCODE : *
         RFC_INFO  : *
         ACTVT     : 16
    Whenever the user  X is trying to execute the test from solman, he is getting the error : "No authorization to log on as trusted system (RC = 0)"
    Each time the user is trying the above, in ECC 6.0, the following dump is occuring:
    CALL_FUNCTION_SINGLE_LOGIN_REJ under username SAPSYS
    I have assigned the role ZRFCACL to user X in Solman also.
    Next, I have performed the following check:
    created one user M in both system
    created the role ZRFCACL2 in ECC 6.0 client 200 as follows and assigned the role to user M:
         Role : ZRFCACL2
         Auth. Obj: S_RFCACL
         Value assigned to fields are:
              RFC_SYSID : SOL
              RFC_CLIENT: 001
              RFC_USER  : ''
              RFC_EQUSER: Y
              RFC_TCODE : *
              RFC_INFO  : *
              ACTVT     : 16
    Assigned SAP_ALL to user M in both system (So the user M in Solman does not have ZRFCACL2).
    This time, the trust relationship worked and no dump got generated.
    I have also checked the thread Trusted RFC do not work
    but unable to resolve the issue.
    Any suggestion where the things are going wrong in this / what else I need to check or this is not possible at all?
    Thanks in advance for your help.
    Sudip

    Hi Valdecir,
    Thanks for the reply. I am providing the detail of the generated dump below:
    Please check in case any clue is there.
    Runtime Errors         CALL_FUNCTION_SINGLE_LOGIN_REJ
    Date and Time          12.08.2008 18:59:32
    Short text
    No authorization to logon as trusted system (Trusted RC=0).
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPMSSY1" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An RFC call (Remote Function Call) was sent with the invalid user ID "98819 "
    . Or the calling system is not registered as trusted system in the
    target system.
    How to correct the error
    The error code of the trusted system was 0.
    Meaning:
    0    Correct logon as trusted system mode
    1 No trusted system entry for the calling system "SOL " or the
    security key entry for the system "SOL " is invalid
    2 User "98819 " does not have RFC authorization (authorization object
    (S_RFCACL) for user "98819 " witl client 001.
    3    The timestamp of the logon data is invalid
    The error code of the SAP logon procedure was 1.
    Meaning:
    0    Login was correct
    1    Wrong password or invalid user ID
    2    Locked user
    3    Too many attempted logons
    5    Error in the authorization buffer (internal error)
    6    No external user check
    7    Invalid user type
    System environment
    SAP-Release 700
    Application server... "gcbeccd"
    Network address...... "10.10.4.158"
    Operating system..... "HP-UX"
    Release.............. "B.11.23"
    Hardware type........ "ia64"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "gcbeccd"
    Database type..... "ORACLE"
    Database name..... "RD3"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 5 2008 00:55:24"
    create on........ "HP-UX B.11.23 U ia64"
    Database version. "OCI_102 (10.2.0.1.0) "
    Patch level. 146
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "HP-UX B.11"
    Memory consumption
    Roll.... 16192
    EM...... 4189840
    Heap.... 0
    Page.... 0
    MM Used. 1194640
    MM Free. 2992576
    User and Transaction
    Client.............. 000
    User................ "SAPSYS"
    Language Key........ "E"
    Transaction......... " "
    Transactions ID..... "489F2BD6C36D0F12E10000000A0A049E"
    Program............. "SAPMSSY1"
    Screen.............. "SAPMSSY1 3004"
    Screen Line......... 2
    Information on caller of Remote Function Call (RFC):
    System.............. "SOL"
    Database Release.... 700
    Kernel Release...... 700
    Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
    Call Type........... "synchron and non-transactional (emode 0, imode 0)"
    Inbound TID.........." "
    Inbound Queue Name..." "
    Outbound TID........." "
    Outbound Queue Name.." "
    Client.............. 001
    User................ 98819
    Transaction......... "SMSY"
    Call Program........."SAPLSRTT"
    Function Module..... "SCCR_GET_RELEASE_NR"
    Call Destination.... "SM_RD3CLNT200_TRUSTED"
    Source Server....... "gcbsolm_SOL_00"
    Source IP Address... "10.10.4.206"
    Additional information on RFC logon:
    Trusted Relationship "X"
    Logon Return Code... 1
    Trusted Return Code. 0
    Note: For releases < 4.0, information on the RFC caller are often
    only partially available.
    Information on where terminated
    Termination occurred in the ABAP program "SAPMSSY1" - in
    "REMOTE_FUNCTION_CALL".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 67
    of the (Include) program "SAPMSSY1".
    Source Code Extract
    Line
    SourceCde
    37
    endmodule.
    38
    39
    module %_rfcdia_call output.
    40
    "Do not display screen !
    41
    call 'DY_INVISIBLE_SCREEN'.
    42
    perform remote_function_diacall.
    43
    endmodule.
    44
    45
    module %_cpic_start.
    46
    if sy-xprog(4) = '%RFC'.
    47
    perform remote_function_call using rfctype_external_cpic.
    48
    else.
    49
    call 'APPC_HD' id 'HEADER' field header id 'CONVID' field convid.
    50
    perform cpic_call using convid.
    51
    endif.
    52
    endmodule.
    53
    54
    55
    form cpic_call using convid type c.
    56
    communication send id convid buffer header.
    57
    if sy-subrc eq 0.
    58
    perform (sy-xform) in program (sy-xprog).
    59
    else.
    60
    message a800.
    61
    endif.
    62
    endform.
    63
    64
    form remote_function_call using value(type).
    65
    data rc type i value 0.
    66
    do.
    >>>>>
    call 'RfcImport' id 'Type' field type.
    68
    if sy-xprog = 'JAVA'.
    69
    system-call plugin
    70
    id 'JAVA' value 'FORW_JAVA'
    71
    id 'RC'   value rc.
    72
      if there is no rollout on the JAVA side which
    73
      rolls both, JAVA and ABAP, we return to the
    74
      C-Stack and reach this point
    75
    76
      in case there was an rollout, the ABAP-C stack is lost
    77
      and we jump direkt to this point
    78
    79
      here we trigger the rollout on this Abap side with
    80
      the following statement
    81
    system-call plugin
    82
    id 'JAVA' value 'ROLL_OUT'
    83
    id 'RC'   value rc.
    84
    else.
    85
    perform (sy-xform) in program (sy-xprog).
    86
    rsyn >scont sysc 00011111 0.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    1
    SY-TABIX
    0
    SY-DBCNT
    1
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    CPIC and RFC Control
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20080812
    SY-UZEIT
    185932
    SY-XPROG
    SAPRFCSL
    SY-XFORM
    READ_SINGLE_LOGIN_DATA
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    2 FORM         SAPMSSY1                            SAPMSSY1                               67
    REMOTE_FUNCTION_CALL
    1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
    %_RFC_START
    Chosen variables
    Name
    Val.
    No.       2 Ty.          FORM
    Name  REMOTE_FUNCTION_CALL
    %_DUMMY$$
    0000
    0000
    2222
    0000
    SY-REPID
    SAPMSSY1
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454555322222222222222222222222222222222
    310D339100000000000000000000000000000000
    SYST-REPID
    SAPMSSY1
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454555322222222222222222222222222222222
    310D339100000000000000000000000000000000
    HEADER
    000000000000
    000000000000
    TYPE
    3
    0000
    0003
    SY-XPROG
    SAPRFCSL
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5455445422222222222222222222222222222222
    3102633C00000000000000000000000000000000
    %_ARCHIVE
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RC
    0
    0000
    0000
    SY-XFORM
    READ_SINGLE_LOGIN_DATA
    000000000000000000000000000000
    000000000000000000000000000000
    544455444445444445445422222222
    2514F39E7C5FCF79EF414100000000
    %_SPACE
    0
    0
    2
    0
    No.       1 Ty.          MODULE (PBO)
    Name  %_RFC_START
    %_PRINT
    000                                                                                0###
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RFCTYPE_INTERNAL
    3
    0000
    0003
    Internal notes
    The termination was triggered in function "ab_xsignon"
    of the SAP kernel, in line 2491 of the module
    "//bas/700_REL/src/krn/rfc/absignon.c#9".
    The internal operation just processed is "CALY".
    Internal mode was started at 20080812185932.
    Calling system.....: "SOL "
    Caller.............: "98819 "
    Calling client.....: 001
    RFC user ID........: "98819 "
    RFC client.........: 200
    Trusted return code: 0
    Logon return code..: 1
    Transaction code...: "SMSY "
    Active state.......: "-782823270"
    Note: At releases < 4.0, the information for the caller is not
    available.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (0)  0x4000000003b2b450  CTrcStack + 0x1b0 at dptstack.c:227 [dw.sapRD3_DVEBMGS00]
    (1)  0x4000000004d2c470  Z16rabaxCStackSavev + 0x1d0 [dw.sapRD3_DVEBMGS00]
    (2)  0x4000000004d32160  ab_rabax + 0x3570 [dw.sapRD3_DVEBMGS00]
    (3)  0x4000000002b43cb0  SignOnDumpInfo + 0x280 at absignon.c:2491 [dw.sapRD3_DVEBMGS00]
    (4)  0x4000000002b3f2f0  ab_xsignon + 0xb30 at absignon.c:876 [dw.sapRD3_DVEBMGS00]
    (5)  0x4000000002aa4cb0  ab_rfcimport + 0x1ad0 at abrfcfun.c:3599 [dw.sapRD3_DVEBMGS00]
    (6)  0x40000000040f4a80  Z8abjcalyv + 0x500 [dw.sapRD3_DVEBMGS00]
    (7)  0x400000000402f190  Z8abextriv + 0x440 [dw.sapRD3_DVEBMGS00]
    (8)  0x4000000003f538b0  Z9abxeventPKt + 0xb0 at abrunt1.c:281 [dw.sapRD3_DVEBMGS00]
    (9)  0x4000000003f360a0  ab_dstep + 0x280 [dw.sapRD3_DVEBMGS00]
    (10) 0x4000000001cb4600  dynpmcal + 0x900 at dymainstp.c:2399 [dw.sapRD3_DVEBMGS00]
    (11) 0x4000000001cab0e0  dynppbo0 + 0x280 at dymainstp.c:540 [dw.sapRD3_DVEBMGS00]
    (12) 0x4000000001cb1ec0  dynprctl + 0x340 at dymainstp.c:358 [dw.sapRD3_DVEBMGS00]
    (13) 0x4000000001c9dff0  dynpen00 + 0xac0 at dymain.c:1628 [dw.sapRD3_DVEBMGS00]
    (14) 0x4000000001fea460  Thdynpen00 + 0x510 at thxxhead.c:4830 [dw.sapRD3_DVEBMGS00]
    (15) 0x4000000001fb4de0  TskhLoop + 0x4e20 at thxxhead.c:4518 [dw.sapRD3_DVEBMGS00]
    (16) 0x4000000001faae40  ThStart + 0x460 at thxxhead.c:1164 [dw.sapRD3_DVEBMGS00]
    (17) 0x4000000001569ec0  DpMain + 0x5f0 at dpxxdisp.c:1088 [dw.sapRD3_DVEBMGS00]
    (18) 0x4000000002c10630  nlsui_main + 0x30 [dw.sapRD3_DVEBMGS00]
    (19) 0x4000000002c105c0  main + 0x60 [dw.sapRD3_DVEBMGS00]
    (20) 0xc00000000002be30  main_opd_entry + 0x50 [/usr/lib/hpux64/dld.so]
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    SAPMSSY1
    0
    11.04.2005
    09:27:15
    22528
    E
    1
    Prg
    SAPLSCCA
    1
    05.07.2005
    13:10:18
    52224
    E
    2
    Prg
    SAPRFCSL
    0
    13.02.2005
    17:31:45
    17408
    E
    3
    Typ
    RFCSYSACL
    0
    13.02.2005
    17:31:45
    7168
    4
    Typ
    SYST
    0
    09.09.2004
    14:18:12
    31744
    Directory of Application Tables
    Name                                     Date       Time       Lngth
    Val.
    Program  SAPMSSY1
    SYST                                       .  .       :  :     00004612
    \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\0\0
    Program  SAPRFCSL
    RFCSYSACL                                  .  .       :  :     00001760
    SOL                             RD3
    ABAP Control Blocks (CONT)
    Index
    Name
    Fl
    PAR0
    PAR1
    PAR2
    PAR3
    PAR4
    PAR5
    PAR6
    Source Code
    Line
    116
    CLEA
    00
    0035
    SAPMSSY1
    60
    117
    CLEA
    00
    0036
    SAPMSSY1
    60
    118
    CLEA
    00
    0037
    SAPMSSY1
    60
    119
    MESS
    00
    001C
    SAPMSSY1
    60
    120
    ENDF
    00
    0000
    SAPMSSY1
    62
    121
    00
    0000
    SAPMSSY1
    62
    122
    PERP
    00
    0001
    SAPMSSY1
    64
    123
    PERP
    02
    0000
    SAPMSSY1
    64
    124
    WHIL
    00
    0002
    0000
    0000
    0000
    0000
    0000
    0000
    SAPMSSY1
    66
    128
    WHIL
    00
    0003
    0000
    0000
    0000
    0000
    0000
    0000
    SAPMSSY1
    66
    132
    BRAN
    05
    001E
    SAPMSSY1
    66
    133
    CALY
    00
    0003
    0038
    002A
    0005
    002B
    0000
    0000
    SAPMSSY1
    67
    >>>>>
    CALY
    02
    0000
    0039
    8000
    0000
    0000
    0000
    0000
    SAPMSSY1
    67
    141
    COMP
    00
    0002
    0010
    003A
    SAPMSSY1
    68
    143
    BRAF
    02
    000E
    SAPMSSY1
    68
    144
    SRFC
    01
    0000
    003A
    003B
    SAPMSSY1
    69
    146
    SRFC
    01
    0000
    003C
    C000
    SAPMSSY1
    69
    148
    SRFC
    02
    0000
    0000
    0000
    SAPMSSY1
    69
    150
    SRFC
    01
    0000
    003A
    003D
    SAPMSSY1
    81
    152
    SRFC
    01
    0000
    003C
    C000
    SAPMSSY1
    81
    Thanks & Regards
    Sudip

  • Application is not working in Different environments

    Hi Experts,
    I am working in jdev 11.1.1.3.0 with ADF BC
    I have deployed my application in 1 environment it's working fine, the same application i depoyed in another environment it's not working.
    in the log i am getting as
    <Started WebLogic Managed Server "CardEmbosser_ms2" for domain "WLINTQA1" running in Production Mode>
    <Sep 15, 2010 10:31:27 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Sep 15, 2010 10:31:27 AM EDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <Sep 15, 2010 10:36:12 AM EDT> <Notice> <StdErr> <BEA-000000> <Sep 15, 2010 10:36:12 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: Application ID : CardEmbossNewUI#V2.0>
    <Sep 15, 2010 10:36:13 AM EDT> <Notice> <StdErr> <BEA-000000> <Sep 15, 2010 10:36:13 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: "Metadata Services: Metadata archive (MAR) not found.">
    <Sep 15, 2010 10:36:33 AM EDT> <Notice> <StdErr> <BEA-000000> <Sep 15, 2010 10:36:33 AM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Mojarra (1.2_09-20081212-SNAPSHOT) for context '/CardEmbossNewUI'>
    <Sep 15, 2010 10:37:01 AM EDT> <Notice> <StdErr> <BEA-000000> <Sep 15, 2010 10:37:01 AM oracle.adf.mbean.share.connection.ConnectionsRuntimeMXBeanImpl getNonCachedConnectionsContext
    INFO: Registering Connection Runtime MBean>
    <Sep 15, 2010 10:37:04 AM EDT> <Notice> <StdErr> <BEA-000000> <Sep 15, 2010 10:37:04 AM oracle.adf.share.jndi.ReferenceStoreHelper getReferencesMapEx
    WARNING: Incomplete connection reference object for connection:Apps>
    <Sep 15, 2010 10:38:01 AM EDT> <Notice> <StdErr> <BEA-000000> <Sep 15, 2010 10:38:01 AM oracle.jbo.uicli.mom.CpxUtils$Visitor logMainApplicationCpx
    INFO: zip:/opt/oracle/domains/WLINTQA1/servers/CardEmbosser_ms2/tmp/_WL_user/CardEmbossNewUI_V2.0/jk9b9a/war/WEB-INF/lib/_wl_cls_gen.jar!/view/DataBindings.cpx>
    Can any one suggest me what is wrong here.

    Error which i am getting while going from one page to another page is:
    <Sep 16, 2010 8:58:36 AM EDT> <Notice> <StdErr>
    <BEA-000000> <Sep 16, 2010 8:58:36 AM oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator handleError
    SEVERE: Server Exception during PPR, #15
    javax.servlet.ServletException: java.lang.NoClassDefFoundError: javax/faces/webapp/UIComponentTag$UIComponentTagAdapter
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
    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:191)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
    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:94)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         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.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.executeExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NoClassDefFoundError: javax/faces/webapp/UIComponentTag$UIComponentTagAdapter
    at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:58)
    at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:36)
    at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:79)
    at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:36)
    at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:796)
    at oracle.adf.model.binding.DCBindingContainer.evaluateParameterWithElCheck(DCBindingContainer.java:1452)
    at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1501)
    at oracle.adf.model.binding.DCParameter.internalEvaluateExpresion(DCParameter.java:202)
    at oracle.adf.model.binding.DCParameter.evaluateValue(DCParameter.java:76)
    at oracle.adf.model.binding.DCParameter.getValue(DCParameter.java:111)
    at oracle.jbo.uicli.binding.JUSearchBindingCustomizer.getCriteriaName(JUSearchBindingCustomizer.java:1956)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding._getCurrentViewCriteriaName(FacesCtrlSearchBinding.java:3600)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.getQueryDescriptor(FacesCtrlSearchBinding.java:153)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.internalGet(FacesCtrlSearchBinding.java:3414)
    at oracle.adf.model.binding.DCExecutableBinding.get(DCExecutableBinding.java:115)
    at javax.el.MapELResolver.getValue(MapELResolver.java:164)
    at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
    at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
    at com.sun.el.parser.AstValue.getValue(AstValue.java:118)
    at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
    at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:68)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.getProperty(UIXComponentBase.java:1197)
    at oracle.adf.view.rich.component.UIXQuery.getValue(UIXQuery.java:442)
    at oracle.adf.view.rich.component.UIXQuery._setupAndStoreContextInRequest(UIXQuery.java:267)
    at oracle.adf.view.rich.component.UIXQuery.invokeOnComponent(UIXQuery.java:157)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1383)
    at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:544)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:141)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
    at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:161)
    at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
    at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:675)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._fixClientIds(LifecycleImpl.java:925)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:378)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
    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)
         ... 34 more
    Caused by: java.lang.ClassNotFoundException: javax.faces.webapp.UIComponentTag$UIComponentTagAdapter
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:280)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:253)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:177)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:37)
    ... 106 more>
    Can any one help me, it's very urgent for me, what may be the issue here.

  • Same file on same server but swf not working on different domanis!?

    Hello folks, I have some problems with an flash game file.
    I have uploaded same file on same server, using the same FTP client(FileZilla), but at one website file not work.
    Here are the link for those swf file:
    http://www.gamesjocuri.ro/files/ursuletul-panda.swf
    http://www.jocurios.ro/fisiere/swf/ursuletul-panda.swf
    The server use nginx for serving files;
    Can somebody can give me an advice?
    Many thanks!

    Hello folks, I have some problems with an flash game file.
    I have uploaded same file on same server, using the same FTP client(FileZilla), but at one website file not work.
    Here are the link for those swf file:
    http://www.gamesjocuri.ro/files/ursuletul-panda.swf
    http://www.jocurios.ro/fisiere/swf/ursuletul-panda.swf
    The server use nginx for serving files;
    Can somebody can give me an advice?
    Many thanks!

  • 3gs not working with different sim

    Hi
    Just upgraded my 3gs which was purchased unlocked from the apple store. It was working fine and still does with an o2 sim but will not work with a virgin sim. It says "No Service" have also tried disabling 3g, but still nothing. any ideas?

    Hi there,
    if your Virgin SIM-card does work in another phone, have Apple doublecheck whether your iPhone 3GS's IMEI truely is flagged as unlocked. If you bought it as a brand new iPhone, it should (in most cases) indeed be factory-unlocked, else if you bought it as a replacement outside the replaced phone's warranty, there might be problem with a faulty database entry, since iOS5 update apparently changed the way the lock/unlock status is verified during the activation process.
    This is causing many people to end up with locked phones after the update. Anyway, it is something Apple can change rather easily, once such error is confirmed.
    Hope this helps,
    Chris

  • Converting AS3 to AS2. Some movieclip buttons not working.

    25 movieclip buttons in frame 126 maintimeline. Buttons are on top layer above all other content.
    Buttons 1_1, 2_1, 3_1, 4_1, and 5_1 work. All buttons have correct instance name. The buttons are in a 5x5 grid. Hence the naming convention of column_row. So all row 1 buttons are working. Do not get hand cursor over any of the other buttons. This is totally baffling. I am using Flash CS4. The file is saved as CS3 and the publish settings are AS2, Flash player 8.
    Here is the AS for frame 126.
    stop();
    trace("tScore = "+tScore);
    trace("i = "+i);
    if (i == 0) {
        i++;
    this.podium.signin.unloadMovie();
    videoBtn1_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_1.play();
    videoBtn2_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_1.play();
    videoBtn3_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_1.play();
    videoBtn4_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_1.play();
    videoBtn5_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_1.play();
    this.videoBtn1_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_2.play();
    videoBtn2_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_2.play();
    videoBtn3_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_2.play();
    videoBtn4_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_2.play();
    videoBtn5_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_2.play();
    videoBtn1_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_3.play();
    videoBtn2_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_3.play();
    videoBtn3_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_3.play();
    videoBtn4_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_3.play();
    videoBtn5_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_3.play();
    videoBtn1_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_4.play();
    videoBtn2_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_4.play();
    videoBtn3_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_4.play();
    videoBtn4_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_4.play();
    videoBtn5_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_4.play();
    videoBtn1_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_5.play();
    videoBtn2_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_5.play();
    videoBtn3_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_5.play();
    videoBtn4_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_5.play();
    videoBtn5_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_5.play();

    You can probably reduce all that interaction code to a loop...
    for(i=1; i<6; i++){
       for(k=1; k<6; k++){
          this["videoBtn"+i+"_"+k].onRelease = function() {
              gotoAndStop(127);
              this.play();
    As for why movng the buttons to another layer fixed anything, it will not have mattered.  Whatever fixed the problem will remain a mystery.  It could have been an issue with instance names/frames since you are at frame 126 for some reason.  If you transition the buttons into place, that might be related to what the problem was.

  • Spry elements and rollovers not working in IE (all)

    After updating my DW CS5.5 last week my rollovers and spry menu elements don't work in IE (any version). Everything worked well before update. It is not the code (ran it through validator). I tried just insert the elements to the empty page and nothing works. I really need this to resolve as my deadline is in 2 weeks. Is it any way how I coudl return to the previous version? My version now (after update) is Version 11.5 Build 5366.
    I forgot to mention that also I cannot connect to Adobe Browser Lab from DW since update ( I can do it from website) - it doesn't recognize my Adobe ID.
    Thank you to everybody who coudl give me some info
    Daniela

    Upgrading should not be the cause of the problem.
    If you want us to help you, please post a link to your site so that we can be privy to the same info that you have.
    Gramps

  • Oracle dequeue function is not working through different user.

    I created an Oracle queue, an anonymous block to enqueue messages in it and a dequeue function. when i use the dequeue function with the same user i've created queue its working fine, but when i am executing same function with different user it is returning null.
    Please see the code i've used ----
    -- Create q_table
    begin
    DBMS_AQADM.create_queue_table (
    queue_table => 'QUEUE_QTAB' , queue_payload_type => 'SYS.XMLTYPE'
    ,multiple_consumers => TRUE, message_grouping => DBMS_AQADM.none);
    end;
    --Create queue:-
    begin
    DBMS_AQADM.create_queue (
    queue_name => 'QUEUE_Q', queue_table => 'QUEUE_QTAB');
    end;
    -- Start queue:-
    begin
    dbms_aqadm.start_queue (
    queue_name => 'QUEUE_Q');
    end;
    --Add subscriber:-
    begin
    DBMS_AQADM.add_subscriber (
    queue_name  => 'QUEUE_Q',
    subscriber  => sys.aq$_agent ('B_USER', NULL, NULL));
    end;
    GRANT SELECT ON A_USER.QUEUE_QTAB  TO DBMONITOR;
    GRANT SELECT ON A_USER.QUEUE_QTAB TO IDSCORE;
    GRANT SELECT ON A_USER.QUEUE_QTAB TO IDSREAD;
    GRANT SELECT ON A_USER.QUEUE_QTAB TO IDS_READ;
    -- View Creation:-
    CREATE VIEW QUEUE_QTAB _VW
    AS
      SELECT * FROM QUEUE_QTAB
      WHERE Q_NAME = QUEUE_Q';
    Grants:-
    GRANT SELECT ON A_USER.QUEUE_QTAB _VW TO B_USER;
        --Enqueue
        DECLARE
       enqueue_options     dbms_aq.enqueue_options_t;
       message_properties  dbms_aq.message_properties_t;
       message_handle      RAW(16);
       message           XMLTYPE;
    BEGIN
       message := XMLType('<?xml version="1.0"?><tns:ISO8583-87 xmlns:tns="http://www.tsys.com/prime/online/iso8583"><I000>0120</I000><I002>491693******9989</I002><I003>280000</I003><I004>000000003000</I004><I006>0000091050.23</I006><I007>0406131721</I007><I011>039622</I011><I012>094121</I012><I013>0224</I013><I018>5999</I018><I022>0000</I022><I032>06123496</I032><I033>06198745</I033><I037>123456787012</I037><I038>026446</I038><I039>00</I039><I041>A1234567</I041><I042>CARD ACCEPTER  </I042><I043>ACQUIRER NAME            CITY NAME    UK</I043><I048>1001O</I048><I049>978</I049><I051>826</I051><I056>37120300692340000012300004800456005600</I056><I102>0890220150</I102></tns:ISO8583-87>');
       dbms_aq.enqueue(queue_name => 'QUEUE_Q',          
             enqueue_options      => enqueue_options,      
             message_properties   => message_properties,    
             payload              => message,              
             msgid                => message_handle);
       COMMIT;
    end;
    Dequeuing is actually done through two function   fn_dequeue function calls fn_dequeue_payment_msg, both are under different packages
    fn_dequeue---
    FUNCTION fn_dequeue (p_consumer_i IN VARCHAR2 DEFAULT USER)
          RETURN CLOB
       AS
          v_msg          xmltype;
          v_msg_found    BOOLEAN := FALSE;
          v_return       clob;
          c_procedure_name constant varchar2 (100) := 'FN_DEQUEUE';
          v_locn         idsc_globals_pck.styp_locn;
          v_q_name_i varchar2(35) := 'QUEUE_Q';
       begin
            v_locn := '80';
          idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'Function called by ' || USER
           v_msg_found :=
             idsph_queues_pck.fn_dequeue_payment_msg (
                                                      p_q_name_i => v_q_name_i , p_message_o => v_msg, p_consumer_i => p_consumer_i
             v_locn := '90';
          if v_msg_found then
             v_locn := '100';
             idsc_lib_pck.pr_debug (
                                    p_program_name => c_procedure_name, p_ids_req_id => NULL
                                   ,p_locn => v_locn, p_debug_message => 'Message found'
             v_return := v_msg.getstringval ();
          end if;
             v_locn := '110';
          idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'Returning'
          RETURN v_return;
       EXCEPTION
          WHEN OTHERS THEN
             idsc_errors_pck.pr_raise_app_error (
                                                 p_proc_name_i => c_procedure_name, p_locn_i => v_locn, p_err_msg_i => SQLERRM
       END fn_dequeue_iso8583;
    fn_dequeue_payment_msg-----
    FUNCTION fn_dequeue_payment_msg (
                                        p_q_name_i IN VARCHAR2
                                       ,p_consumer_i IN VARCHAR2 DEFAULT USER
                                       ,p_message_o   OUT XMLTYPE
          RETURN BOOLEAN
       IS
          v_dequeue_options DBMS_AQ.dequeue_options_t;
          v_message_properties DBMS_AQ.message_properties_t;
          v_message_handle RAW (16);
          v_message      XMLTYPE;
          e_no_messages exception;
          PRAGMA EXCEPTION_INIT (e_no_messages, -25228);
          c_procedure_name CONSTANT VARCHAR2 (100) := 'IDSPH_QUEUES_PCK.FN_DEQUEUE_PAYMENT_MESSAGE';
          v_locn         idsc_globals_pck.styp_locn;
       BEGIN
          v_locn := '10';
          idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'Setting dequeue options'
          v_dequeue_options.wait := dbms_aq.no_wait;      
          v_locn := '20';
          v_dequeue_options.navigation := DBMS_AQ.first_message;
          v_locn := '30';
          v_dequeue_options.consumer_name := p_consumer_i;
          v_locn := '40';
          idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'Dequeuing next message'
                                idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'p_consumer_i' || p_consumer_i                         
          DBMS_AQ.dequeue (
                           queue_name => p_q_name_i, dequeue_options => v_dequeue_options, message_properties => v_message_properties
                          ,payload => v_message, msgid => v_message_handle
          v_locn := '50';
          idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'Dequeue successful'
          p_message_o := v_message;
          RETURN TRUE;
       EXCEPTION
          WHEN e_no_messages THEN
             -- Not an error just no messages currently in queue so return success
             v_locn := '160';
             idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => SQLERRM
             RETURN FALSE;
          WHEN OTHERS THEN
             idsc_errors_pck.pr_raise_app_error (
                                                 p_proc_name_i => c_procedure_name, p_locn_i => v_locn, p_err_msg_i => SQLERRM
       END fn_dequeue_payment_msg;
    fn_dequeue function returns null while executing from B_USER , while same functions works fine for A_USER, please suggest

    I got the error , we need append schema name where queue is created before assigning it to a variable, this problem is now resolved.
    fn_dequeue---
    FUNCTION fn_dequeue (p_consumer_i IN VARCHAR2 DEFAULT USER)
          RETURN CLOB
       AS
          v_msg          xmltype;
          v_msg_found    BOOLEAN := FALSE;
          v_return       clob;
          c_procedure_name constant varchar2 (100) := 'FN_DEQUEUE';
          v_locn         idsc_globals_pck.styp_locn;
          v_q_name_i varchar2(35) := 'A_USER.QUEUE_Q';
       begin
            v_locn := '80';
          idsc_lib_pck.pr_debug (
                                 p_program_name => c_procedure_name, p_ids_req_id => NULL
                                ,p_locn => v_locn, p_debug_message => 'Function called by ' || USER

  • IP Communicator not working on different LANs

    Hello All,
    Really strange problem, and was wondering if anyone has cme across a similar situation...
    We have a Cisco UC560 in the UK. There are remote workers who have laptops. On there laptops they have a IP Softphone running (the latest version)
    The softphones have been configured appropriately.
    When the remote worker is in the office, and their laptop is connected to the same physical LAN and is assigned an IP address in the same range as the UC system, the softphone registers just fine, and can be used as normal.
    When the remote worker goes to a different office, which has a different LAN they get a different IP address. This is where the problem arises, the softphone no longer registers. The softphone just has a turning wheel, with the message "Registering" and doesn't actually register. The laptop has IP connectivity to the UC and we have tested it. We've tested connectivity from the UC back to the laptops. We've checked all the routing, and its all in place. There is no firewalls along the path, to block anything. We've checked the routers along the way, and there are no access-lists to stop this connection.
    Does anyone have any experience of such a problem or any thing that we could check that is stopping this connection?
    Thanks in advance for your thoughts.
    PH

    Excellent thought... thanks... but unfortunately i've checked that.
    The source interface for the TFTP server is Vlan 90. Vlan 90 has an ip address of 10.1.10.2 255.255.255.252.
    We can ping and traceroute to that address from the remote site laptop just fine. Again we've checked the path along the way, and no firewalls or access-lists exist to block the communication.
    I'm not sure if this helps...but when you start up the IP Communicator software while on the remote site, the messages we get on the screen are :
    Updating Locale
    Error Updating Locale
    Registering... and then its stuck there...
    Could it be something to do with the updating of locale?
    Thanks
    PH

Maybe you are looking for

  • Need to do a clean install after firmware update

    i have to reinstall os x after the firmware update. it wont boot up just sticks on the grey logo and sinny thing.... grrrr will it be ok just to archive and install just leopard instead of tiger, then disc 2(the apps) then leopard??

  • Queries related to Office 365 Small Business Premium Installation

    I was exploring your Office website and thought to buy Office 365 Small Business Premium but was not able to understand one statement which was "Subscription to Office for up to 5 PCs/Macs and 5 Windows tablets/iPads per user" Does the above statemen

  • Tree Component transparency

    when i try to make transpareny in tree component mouse events misses.what can in do

  • Your  questions are N/A for my lifestyle, I am retired, I was in the medical field for 30 + years

    I am retired and have been for many years.  I was in the medical field for over 30 years.   My message is:  Why is Adobe so costly?  When I had my other laptop and my first desktop computer, it was free.    Now it is almost $200.   That is my questio

  • Software monitoring and latency

    I've heard people mention that they turn off software monitoring to minimize latency, but I don't see how to do that. I realize it has to do with the equipment and maybe my device does not allow for non-software monitoring. I'm using items none of yo