AS2-CS4 unnullify "Null"?

I'm creating a card game tutorial (well, a small part of what will be a tutorial) and ran into a wall.
A movieclip has an onRollOver, onRollOut, onPress and onRelease state, each doing different things (go figure). In the onRelease state, I nullified all 3 other states so that the movieclip becomes frozen, i.e. movieclip.onRollOver=null; etc.
How do I disarm the null when a reset button (resetBtn) is pressed?
Attached is an example of my problem.

Generally I wouldn't null all the event handlers, instead I would just disable the clip.
myClip.enabled=false;
That will prevent the events from being dispatched.
Then it is easy to have a function that goes through all your clips (you'll have to keep track of them some how) and set the enabled property to true.
Or you could do the same type of thing with reassigning the event handlers.
I'm guessing that you've originally set them up something like this:
myClip.onRollOver=function(){
//some code
That isn't the best practice. You should do it like this:
myClip.onRollOver=handleOverClip;
function handleOverClip(){
//some code
Then you can easily reapply it by just reassigning the function.

Similar Messages

  • AS2/CS4 Netstream problem...

    I'm currently building a custom flv player and need some help.  Maybe I'm missing something, I'm not sure.  The main problem is that the FLV doesn't load/play, which most likely causes the secondary problems, such as the bufferClip always visible and no way to test the video and audio scrubbers.
    ----CODE----
    var nc: NetConnection = new NetConnection();
    nc.connect(null);
    var ns: NetStream = new NetStream(nc);
    ns.setBufferTime(5);
    ns.onStatus = function(info){
    if(info.code == "NetStream.Buffer.Full"){
      bufferClip._visible=false;
    if(info.code == "NetStream.Buffer.Empty"){
      bufferClip._visible=true;
    if(info.code == "NetStream.Play.Stop"){
      gotoAndStop("end");
    //video location
    videoPlace.attachVideo(ns);
    ns.play("URL of FLV");
    //audio control
    _root.createEmptyMovieClip("vSound",_root.getNextHighestDepth())
    vSound.attachAudio(ns);
    var so:Sound = new Sound(vSound);
    audioControl.audioScrub.onEnterFrame=function(){
    so.setVolume(100-this._y);
    audioControl.audioScrub.onPress=function(){
    this.startDrag(false,this._x,0,this._y,100);
    audioControl.audioScrub.onRelease = audioControl.audioScrub.onReleaseOutside = function(){
    this.stopDrag();
    //restart button
    controlBar.restartBtn.onRelease = function(){
    ns.seek(0);
    //Play and Pause button
    controlBar.playpause.onRelease = function(){
    ns.pause();
    //setup the video interval
    var vidInt = setInterval(videoStatus, 100);
    var amtLoad:Number;
    var duration:Number;
    ns["onMetaData"] = function(obj){
    duration = obj.duration;
    function videoStatus(){
    amtLoad = ns.bytesLoaded/ns.bytesTotal;
    loader_mc.loadBar._width = amtLoad * 560;
    loader_mc.scrubber._x = ns.time/duration * 560;
    //scrubber code
    var scrubInt;
    loader_mc.scrubber.onPress = function(){
    clearInterval(vidInt);
    scrubInt = setInterval(scrubIt,10);
    this.startDrag(false,0,this._y,560,this._y);
    loader_mc.scrubber.onRelease = loader_mc.scrubber.onReleaseOutside = function(){
    clearInterval(vidInt);
    vidInt = setInterval(videoStatus,100);
    this.stopDrag();
    function scrubIt(){
    ns.seek(Math.floor((controlBar.loader_mc.scrubber._x/560) * duration));
    ----END CODE----
    Thank you for your help in advance.  If you need anymore info, just let me know.
    ~gray14

    Okay, I did that.  The video loads and plays, which is good.  Now a couple more problems come to light:
    1) The video scrubber (_root.loader_mc.scrubber) drags where it should, but the video doesn't react as it should.  The video should play at the time that corresponds with the position of the scrubber.
    2) There is no sound, which I'm guessing has to do with that audioControl and audioScrub code I wrote.
    Never mind that second one.  I had the sound turned off on my PC ((stupid me, lol)).  I have another question, purely for asthetic reasons:
    How do I write the code so the playpause button changes from a play symbol to a pause symbol when paused and vice versa?

  • AS2 CS4 iterating through an array?

    Alright so i've had this problem for far too long here and i need help. first of all here's the code
    and if you can tell me how i can put it in more or less of a "code box" that makes it easier to read by including the indents, it would be also appreciated.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}class controller extends MovieClip
    function NewBox()
      if(number < 50)
       timer = 0
       number +=1
       var box = _root.contentMain.attachMovie("name1", "name0"+number, number)
       box._y = position
       boxes.push(box)
       trace(boxes)
       if(position > 120)
        var position1 = -1*position + 40
        _root.contentMain._y = position1
        if(_root.contentMain._y < -740){_root.contentMain._y = -740}
        if(_root.contentMain._y > -740){_root.scrollFace._y += 1.85}
    function hilite()
      if(prob > 0)
       timer = 0
       var work2 = _root.contentMain.attachMovie("highliter", "highliter", number + chronos)
       work2._y = Math.floor(Math.random()*number)*17.4+ 17.4
       _root.contentMain._y = -1*work2._y + 20
      if(prob < 0)
       timer = 0
       var work1 = _root.contentMain.attachMovie("controller2","controller2",number+chronos+1)
       var work2 = _root.contentMain.attachMovie("highliter", "highliter", number+chronos)
       work1._x = -200
       work1._y = Math.floor(Math.random()*number)*17.4+ 17.4
       work2._y = work1._y
       _root.contentMain._y = -1*work1._y + 20
       controllers.push(work1)
       hiliters.push(work2)
    function MinusBox()
      if(number > 1)
       removeMovieClip(_root.contentMain.name0+number)
       number -= 1
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}class highliter extends MovieClip
    var timer1
    function onLoad()
      timer1 = 0
    function onEnterFrame()
      timer1 += 1
      if(timer1 > 72)
       timer1 = 0
       this.removeMovieClip()
      for(var i in _root.contentMain.controller1.controllers)
       if(this.hitTest(_root.contentMain.controller1.controllers[i]))
        this.removeMovieClip()
        _root.contentMain.controller1.hilite()
    now here's one problem, it only checks collisions for the first object in the array "controllers", and no others. and i want it to check for all objects
    and second of all, how can i refer to an object whose instance name includes a variable as seen in "function MinusBox"
    many many thanks for any help to my annoying problems.

    this is how I do it, I construct the expression outside .. bpws:getVariableData will probably not execute xpath/
    <pre><code>
    <assign name="prepare_loop">
    <copy>
    <from expression="number(1)"/>
    <to variable="i"/>
    </copy>
    <copy>
    <from expression="ora:countNodes('EmpQuerySelect_p_deptno_OutputVariable','EmpCollection','/ns2:EmpCollection/Emp')"/>
    <to variable="n"/>
    </copy>
    </assign>
    <while name="While_1" condition="bpws:getVariableData('i') <= bpws:getVariableData('n')">
    <scope name="Scope_1">
    <variables>
    <variable name="selector" type="ns3:string"/>
    <variable name="element" element="ns2:Emp"/>
    </variables>
    <sequence name="Sequence_1">
    <assign name="Get_Element">
    <copy>
    <from expression="concat("/ns2:EmpCollection/Emp[",string(bpws:getVariableData('i')),"]")"/>
    <to variable="selector"/>
    </copy>
    <copy>
    <from expression="bpws:getVariableData('EmpQuerySelect_p_deptno_OutputVariable','EmpCollection',bpws:getVariableData('selector'))"/>
    <to variable="element" query="/ns2:Emp"/>
    </copy>
    </assign>
    <empty name="Do_stuff_with_element_Var"/>
    <assign name="Increment_index">
    <copy>
    <from expression="bpws:getVariableData('i')+1"/>
    <to variable="i"/>
    </copy>
    </assign>
    </sequence>
    </scope>
    </while>
    </code></pre>
    btw
    i have deicated an article on my blog on this subject.
    http://clemensblog.blogspot.com/2006/03/bpel-looping-over-arrays-collections.html
    hth clemens
    Message was edited by:
    clemens.utschig

  • 5081: XEngine error - Invalid guideline

    When a custome interchange.ecs file is used in the business protocol do you also have to register a custom group.ecs file or will it use the default group.ecs file?
    I'm getting an error message that says:
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processHubMessage Enter
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processHubMessage toTP 3006082V
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processHubMessage hubUrl null
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processHubMessage Exit
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage ProtocolCollabId = null
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage CollaborationName null
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:checkDuplicate Enter
    2008.01.18 at 11:31:05:968: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:checkDuplicate check non-RosettaNet Message
    2008.01.18 at 11:31:05:968: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:05:968: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: queryWireMessage
    2008.01.18 at 11:31:05:984: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: queryWireMessage
    2008.01.18 at 11:31:05:984: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:checkDuplicate Exit
    2008.01.18 at 11:31:05:984: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage Protocol Collaboration Id : null
    2008.01.18 at 11:31:05:984: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:identifyIncomingDocument Enter
    2008.01.18 at 11:31:06:623: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:ISelectorImpl Enter
    2008.01.18 at 11:31:06:623: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:ISelectorImpl validateEnvelope = false
    2008.01.18 at 11:31:06:623: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:ISelectorImpl Leave
    2008.01.18 at 11:31:06:623: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2008.01.18 at 11:31:06:623: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@12088db
    2008.01.18 at 11:31:10:146: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Active exclude design true
    2008.01.18 at 11:31:10:146: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:10:146: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.01.18 at 11:31:10:146: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.01.18 at 11:31:10:146: B2BStarter thread: Deployment - (DEBUG) Query Configurations null Lifecycle status Quiescing exclude design true
    2008.01.18 at 11:31:10:146: B2BStarter thread: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:10:146: B2BStarter thread: BusinessLogicLayer - (DEBUG) Push Stack: queryConfiguration
    2008.01.18 at 11:31:10:146: B2BStarter thread: BusinessLogicLayer - (DEBUG) Pop Stack: queryConfiguration
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = SeverityConfig
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode ISA Key = InterchangeSenderID Val = 925485US00
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode ISA Key = InterchangeSenderQual Val = 08
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode standard = X12
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode ISA Key = InterchangeReceiverID Val = 3006082V
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode ISA Key = InterchangeControlVersion Val = 00501
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode ISA Key = InterchangeReceiverQual Val = 08
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode Group Key = GroupSenderID Val = 925485US00
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode X12 Doc Revision : 005010
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode X12 Doc Revision : 5010
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode Group Key = GroupReceiverID Val = 3006082V
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode Transaction Count = 1
    2008.01.18 at 11:31:11:081: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processNode DocType = 850
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = 08
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = 925485US00
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = 3006082V
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = 3006082V
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlVersion = 00501
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = 925485US00
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = 08
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:identifyIncomingDocument exit
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Correlation:incomingCorrelate Enter
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Correlation:incomingCorrelate msginfo reftomsgid is null, nothing to correlate
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Correlation:incomingCorrelate Exit
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage number of b2b messages 1
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage msgtype = 1
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processIncomingTPA() Begin TPA Processing..
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() PARTIES (before calling processParty) :
    initial : null
    from : TPName: null Type: AS2 Identifier Value: 925485US00
    to : TPName: null Type: AS2 Identifier Value: 3006082V
    final : null
    initiating : TPName: null Type: AS2 Identifier Value: 925485US00
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() direction is incoming
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() calling processparty with : TPName: null Type: AS2 Identifier Value: 3006082V
    2008.01.18 at 11:31:11:097: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:processParty() Begin..
    2008.01.18 at 11:31:11:097: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:11:097: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: queryTradingPartner
    2008.01.18 at 11:31:11:097: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: queryTradingPartner
    2008.01.18 at 11:31:11:128: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:processParty() null is hosted party
    2008.01.18 at 11:31:11:128: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:processParty() End..
    2008.01.18 at 11:31:11:128: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() after calling processparty : TPName: null Type: AS2 Identifier Value: 3006082V
    2008.01.18 at 11:31:11:128: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() PARTIES (after calling processParty):
    initial : null
    from : TPName: null Type: AS2 Identifier Value: 925485US00
    to : TPName: null Type: AS2 Identifier Value: 3006082V
    final : null
    initiating : TPName: null Type: AS2 Identifier Value: 925485US00
    2008.01.18 at 11:31:11:128: Thread-15: BusinessLogicLayer - (DEBUG) setRuntimeActiveandQuiescing()
    2008.01.18 at 11:31:11:128: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() docTypeName: 850 docTypeRevision: 5010
    2008.01.18 at 11:31:11:128: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:11:128: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: queryDocumentType
    2008.01.18 at 11:31:11:144: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: queryDocumentType
    2008.01.18 at 11:31:11:206: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() actionName: IB_X12_5010_850 actionRevision: 1.00
    2008.01.18 at 11:31:11:206: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getCollaborationDetails() Begin.. Activity Name : IB_X12_5010_850 Activity Version: 1.00
    2008.01.18 at 11:31:11:206: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() eventName:<IB_X12_5010_850>
    2008.01.18 at 11:31:11:206: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() messageType:1
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) calling setMode() changing from -1 to 2
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) calling setInitiatingPartyId() changing from TPName: null Type: AS2 Identifier Value: 925485US00 to TPName: null Type: AS2 Identifier Value: 925485US00
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() TPA Name : null
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAIdentifier:identifyTPA() Begin..
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAIdentifier:identifyTPA()
    From Party -> AS2 Identifier-925485US00-null-null To Party -> AS2 Identifier-3006082V-null-null Business Action name -> IB_X12_5010_850
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) RepoDataAccessor:getAgreementNameByBaTPType() Begin..
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) RepoDataAccessor:getAgreementNameByBaTPType() fromParty: TPName: null Type: AS2 Identifier Value: 925485US00 toParty: TPName: null Type: AS2 Identifier Value: 3006082V initiatingParty: TPName: null Type: AS2 Identifier Value: 925485US00
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) RepoDataAccessor:getAgreementNameByBaTPType() SELECT ag.name FROM TIP_TradingPartnerIdentifi_1_t tpit1, TIP_TradingPartnerIdentific_ra tpi1, TIP_TradingPartnerIdentifi_1_t tpit2, TIP_TradingPartnerIdentific_ra tpi2, TIP_BusinessAction_ra ba1, TIP_BusinessAction_ra ba2, TIP_Participant_ra tpp1, TIP_SupportedBusinessAction_ra sba1, TIP_Participant_ra tpp2, TIP_SupportedBusinessAction_ra sba2, TIP_Agreement_ra ag WHERE tpit1.name = ? AND tpi1.value = ? AND ba1.name = ? AND sba1.isinitiator = ? AND tpp1.agreement = ag.ID AND tpp1.identification = tpi1.ID AND tpi1.partyidentificationtype = tpit1.ID AND tpp1.supportedbusinessaction = sba1.ID AND sba1.businessaction = ba1.ID AND tpit2.name = ? AND tpi2.value = ? AND ba2.name = ? AND sba2.isinitiator = ? AND tpp2.agreement = ag.ID AND tpp2.identification = tpi2.ID AND tpi2.partyidentificationtype = tpit2.ID AND tpp2.supportedbusinessaction = sba2.ID AND sba2.businessaction = ba2.ID AND tpp1.agreement = tpp2.agreement AND ((ag.effectivefromdate <= SYSDATE) OR (ag.effectivefromdate IS NULL)) AND ((ag.effectivetodate +1 >= SYSDATE) OR (ag.effectivetodate IS NULL))
    2008.01.18 at 11:31:11:939: Thread-15: B2B - (DEBUG) RepoDataAccessor:getAgreementNameByBaTPType() bind vars: AS2 Identifier,925485US00,IB_X12_5010_850,Y,AS2 Identifier,3006082V,IB_X12_5010_850,N,
    2008.01.18 at 11:31:11:954: Thread-15: B2B - (DEBUG) RepoDataAccessor:getAgreementNameByBaTPType() End..
    2008.01.18 at 11:31:11:954: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAIdentifier:identifyTPA() Agreement Name : Manufacturer-Walmart(AS2)
    2008.01.18 at 11:31:11:954: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAIdentifier:identifyTPA() End
    2008.01.18 at 11:31:11:954: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() TPA Name 2 : Manufacturer-Walmart(AS2)
    2008.01.18 at 11:31:11:954: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() not unit test
    2008.01.18 at 11:31:11:954: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:11:954: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: queryAgreement
    2008.01.18 at 11:31:11:954: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: queryAgreement
    2008.01.18 at 11:31:11:970: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() wire message not null
    2008.01.18 at 11:31:11:970: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() wire message cfg is null
    2008.01.18 at 11:31:11:970: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:11:970: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: updateWireMessage
    2008.01.18 at 11:31:12:017: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: updateWireMessage
    2008.01.18 at 11:31:12:017: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() setting cfg for packed message M-W(AS2)9
    2008.01.18 at 11:31:12:017: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2008.01.18 at 11:31:12:017: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: updateDataStorage
    2008.01.18 at 11:31:12:017: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: updateDataStorage
    2008.01.18 at 11:31:12:017: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processTPA() direction 1
    2008.01.18 at 11:31:12:017: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() Begin..
    2008.01.18 at 11:31:12:017: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails()
    From Party -> AS2 Identifier-925485US00-null-null
    To Party -> AS2 Identifier-3006082V-null-null Collaboration -> null Agreement Name -> Manufacturer-Walmart(AS2)
    2008.01.18 at 11:31:12:017: Thread-15: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:Runtime
    2008.01.18 at 11:31:12:032: Thread-15: BusinessLogicLayer - (DEBUG) Push Stack: queryAgreement
    2008.01.18 at 11:31:12:032: Thread-15: BusinessLogicLayer - (DEBUG) Pop Stack: queryAgreement
    2008.01.18 at 11:31:12:048: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() pList.size() = 10
    2008.01.18 at 11:31:12:048: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :0
    2008.01.18 at 11:31:12:048: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_2915
    2008.01.18 at 11:31:12:406: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = IB_X12_5010_850
    2008.01.18 at 11:31:12:406: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() isInitiator = true
    2008.01.18 at 11:31:12:438: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() fromParty IS initParty
    2008.01.18 at 11:31:12:438: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() fromTPP = 925485US00fromParty = null
    2008.01.18 at 11:31:12:484: Thread-15: B2B - (DEBUG) calling setFromPartyId() changing from null to TPName: Walmart Type: AS2 Identifier Value: 925485US00
    2008.01.18 at 11:31:12:500: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :0
    2008.01.18 at 11:31:12:500: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :1
    2008.01.18 at 11:31:12:500: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_8FBC
    2008.01.18 at 11:31:12:500: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = IB_X12_5010_850
    2008.01.18 at 11:31:12:500: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() isInitiator = false
    2008.01.18 at 11:31:12:500: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() toTPP = 3006082VtoParty = null
    2008.01.18 at 11:31:12:516: Thread-15: B2B - (DEBUG) calling setToPartyId() changing from null to TPName: Manufacturer Type: AS2 Identifier Value: 3006082V
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) calling setMode() changing from 2 to 2
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :1
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :2
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_D525
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = X12_5010_997
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :2
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :3
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_8E5E
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = X12_5010_997
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :3
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :4
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_D982
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = X12_5010_997
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :4
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :5
    2008.01.18 at 11:31:12:531: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_C8F4
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = X12_5010_997
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :5
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :6
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_A7CA
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = OB_X12_5010_855
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :6
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :7
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_9A75
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = OB_X12_5010_855
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :7
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :8
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_1BFD
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = OB_X12_5010_810
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :8
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :9
    2008.01.18 at 11:31:12:547: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() tpp = TradingPartnerParticipant_CD7F
    2008.01.18 at 11:31:12:562: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() actionName = IB_X12_5010_850, tppActionName = OB_X12_5010_810
    2008.01.18 at 11:31:12:562: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() :9
    2008.01.18 at 11:31:12:562: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() fromTPP = TradingPartnerParticipant_2915toTPP = TradingPartnerParticipant_8FBC
    2008.01.18 at 11:31:12:640: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() idc is not null
    2008.01.18 at 11:31:12:781: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() transport int info oracle.tip.adapter.b2b.message.TransportIntInfo@d61301
    2008.01.18 at 11:31:12:781: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() TO TP = Manufacturer
    2008.01.18 at 11:31:12:781: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() FROM TP = Walmart
    2008.01.18 at 11:31:12:781: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getDocumentDefinition() given docTypeName: 850 given docTypeRev: 5010
    2008.01.18 at 11:31:12:781: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getDocumentDefinition() given docTypeName: 850 given docTypeRev: 5010
    2008.01.18 at 11:31:12:781: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getDocumentDefinition() reposDocTypeName: 810 reposDocTypeRev : 5010
    2008.01.18 at 11:31:12:796: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getDocumentDefinition() reposDocTypeName: 855 reposDocTypeRev : 5010
    2008.01.18 at 11:31:12:796: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getDocumentDefinition() reposDocTypeName: 850 reposDocTypeRev : 5010
    2008.01.18 at 11:31:12:796: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getDocumentDefinitionUsage() list docDef: DocumentDefinition_2B9F given docDef: DocumentDefinition_2B9F
    2008.01.18 at 11:31:13:217: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:addParameters() Putting TransactionECSFileKey and ID 8FB7DD97EBE744039BA64B74D729D7C1-274-1-32
    2008.01.18 at 11:31:13:233: Thread-15: B2B - (DEBUG) calling setValidationEnabled() changing from null to true
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementData() End..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.RepoDataAccessor:getAgreementDetails() ..End
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateDeliveryChannel() Updating DeliveryChannel information..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageValidator:validateCollaborationInfo()
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageValidator:validateBTInfo()
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageValidator:validateDocExchange()
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageValidator:validateTransport() Validating transport Info
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateMessageInfo() tpaVal: true
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) calling setValidationEnabled() changing from null to true
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:MessageInfo() TimeToAck : 120
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateBTInfo() Updating Business Transaction information..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateCollabInfo()
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateDeliveryChannel() Updating DeliveryChannel information..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateTransport() Begin ..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateTransport() Endpoint : b2b queues
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateDocExchange() Updating DocExchange information..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.MessageModifier:updateDocExchange() Retries : 3
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.tpa.TPAProcessor:processIncomingTPA() End TPA Processing..
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processIncomingMessage Event Name 1 = IB_X12_5010_850
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin X12_5010 5010
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info : X12_5010 version 5010
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:XXX: processIncomingMessage Calling processIncomingDocument
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument enter
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument translate = true, validate = true
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument mode = 15
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:setupParameterValues get group default definition
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:setupParameterValues GS08 = [005010]
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:setupParameterValues edi sender exchange protocol parameters
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter signed and compressed = true
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = 925485US00
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = 925485US00
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = 925485US00
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = 925485US00
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:setupParameterValues edi receiver exchange protocol parameters
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter signed and compressed = true
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = 3006082V
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderQual = 08
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = 3006082V
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = 3006082V
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = 3006082V
    2008.01.18 at 11:31:13:700: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = 08
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg From Document Protocol Parameters
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupTime = #SystemTime(HHMM)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeComponentElementSeparator = 0x3a
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SegmentDelimiter = 0x7e
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlNumber = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeUsageIndicator = P
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAckRequested = 0
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlVersion = 00501
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupDate = #SystemDate(CCYYMMDD)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = 08
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupControlNumber = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = 925485US00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter Standard = X12
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ImplementationClass = oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SubelementDelimiter = 0x3e
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementOption = T2
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSecurityInfo = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupVersionNumber = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAgencyCode = X
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = 08
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DecimalSeparator = 0x2e
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeDate = #SystemDate(YYMMDD)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = 925485US00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ElementDelimiter = 0x2a
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAuthorizationInfo = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileKey = D54A3AE94C4040209A9A5F3796C5C78D-26-1-5
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = 925485US00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlStandard_RepeatingSeparator = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTime = #SystemTime(HHMM)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementType = 997
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = 925485US00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAuthorizationInfoQual = 00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileBlob
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TagDelimiter = 0x2a
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSecurityInfoQual = 00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupECSFileBlob
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TPName = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReplacementChar = 0x7c
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg To Document Protocol Parameters
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeComponentElementSeparator = 0x3a
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupTime = #SystemTime(HHMM)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SegmentDelimiter = 0x7e
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlNumber = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeUsageIndicator = P
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAckRequested = 0
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlVersion = 00501
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupDate = #SystemDate(CCYYMMDD)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupControlNumber = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ImplementationClass = oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter Standard = X12
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SubelementDelimiter = 0x3e
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementOption = T2
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSecurityInfo = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupVersionNumber = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAgencyCode = X
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DecimalSeparator = 0x2e
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeDate = #SystemDate(YYMMDD)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ElementDelimiter = 0x2a
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAuthorizationInfo = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileKey = 31B085C3BED4400D9D3CEB3B191AC4DC-26-1-30
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlStandard_RepeatingSeparator = :
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTime = #SystemTime(HHMM)#
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementType = 997
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAuthorizationInfoQual = 00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileBlob
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TagDelimiter = 0x2a
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSecurityInfoQual = 00
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TPName = null
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupECSFileBlob
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReplacementChar = 0x7c
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg From Document Type Parameters
    2008.01.18 at 11:31:13:716: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg To Document Type Parameters
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionID = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionControlNumber = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupID = PO
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionECSFileBlob
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionECSFileKey = 8FB7DD97EBE744039BA64B74D729D7C1-274-1-32
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DocumentRoutingID = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionImplementationReference = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg ***** Document Parameters *****
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderQual = 08
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionControlNumber = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupTime = #SystemTime(HHMM)#
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeComponentElementSeparator = 0x3a
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionECSFileBlob
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlNumber = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SegmentDelimiter = 0x7e
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeUsageIndicator = P
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAckRequested = 0
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlVersion = 00501
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupDate = #SystemDate(CCYYMMDD)#
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = 08
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverQual = 08
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupControlNumber = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = 3006082V
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter Standard = X12
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ImplementationClass = oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SubelementDelimiter = 0x3e
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementOption = T2
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSecurityInfo = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupVersionNumber = 005010
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAgencyCode = X
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DecimalSeparator = 0x2e
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeDate = #SystemDate(YYMMDD)#
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = 08
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionID = 850
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ElementDelimiter = 0x2a
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = 925485US00
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAuthorizationInfo = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileKey = D54A3AE94C4040209A9A5F3796C5C78D-26-1-5
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = 3006082V
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlStandard_RepeatingSeparator = :
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTime = #SystemTime(HHMM)#
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementType = 997
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = 925485US00
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileBlob
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAuthorizationInfoQual = 00
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupID = PO
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TagDelimiter = 0x2a
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionECSFileKey = 8FB7DD97EBE744039BA64B74D729D7C1-274-1-32
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSecurityInfoQual = 00
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupECSFileBlob
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TPName = Walmart
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DocumentRoutingID = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TransactionImplementationReference = null
    2008.01.18 at 11:31:13:732: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReplacementChar = 0x7c
    2008.01.18 at 11:31:13:747: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:ISelectorImpl Enter
    2008.01.18 at 11:31:13:747: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:ISelectorImpl validateEnvelope = true
    2008.01.18 at 11:31:13:747: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:ISelectorImpl Leave
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@15b28d8
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = SeverityConfig
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@1d688e2
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:reset Enter
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:reset Leave
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@1b4df9c
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup Enter
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeReceiverQual, val = [08]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [08]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeSenderID, val = [925485US00]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [925485US00]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeReceiverID, val = [3006082V]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [3006082V]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = Standard, val = [X12]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [X12]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeControlVersion, val = [00501]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [00501]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = ec_DataNodeName, val = [Interchange]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeSenderQual, val = [08]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [08]
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFileKey
    2008.01.18 at 11:31:13:763: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = D54A3AE94C4040209A9A5F3796C5C78D-26-1-5
    2008.01.18 at 11:31:13:778: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsOptFileBlob
    2008.01.18 at 11:31:13:794: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsFileBlob
    2008.01.18 at 11:31:15:228: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getStream Enter
    2008.01.18 at 11:31:15:228: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getStream Leave
    2008.01.18 at 11:31:15:244: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = SeverityConfig
    2008.01.18 at 11:31:15:244: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:16:117: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:setControlNumber sName = Interchange, controlNumber = 850000003
    2008.01.18 at 11:31:16:117: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:setControlNumber return = true
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = TPName
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = Walmart
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Enter
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit NodeGUID = {37F6D0B7-1406-4E19-A361-6114B99DA21F} position = 0
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Leave
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@1c4a198
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup Enter
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = GroupReceiverID, val = [3006082V]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [3006082V]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = GroupVersionNumber, val = [005010]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [005010]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = ec_DataNodeName, val = [Group]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = GroupSenderID, val = [925485US00]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [925485US00]
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFileKey
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsOptFileBlob
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsFileBlob
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFilePath
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFileBlob
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFileBlob
    2008.01.18 at 11:31:16:210: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2008.01.18 at 11:31:16:304: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = TPName
    2008.01.18 at 11:31:16:304: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = Walmart
    2008.01.18 at 11:31:16:304: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Enter
    2008.01.18 at 11:31:16:304: Thread-15: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelector

    Never mind - went ahead and created the group.ecs file and everything ran fine....

  • Tairing my hair out

    I am new to java programming and my project is misbehaving. It is made of 5 classes and so i have uploaded a zip of them all onto my website. This is no con, no virus, i just need help. Please advise before i break my computer and go and live up a mountain. The file is at http://jonno.lui.googlepages.com/projecthelp. Thanks

    It will be easier for you to fetch the zip file, but here goes (thanks so much)
    Yes, the object is instantiated
    public User [] arr = new User [100];
    for (int i = 0 ; i < arr.length ; i++)
                arr = new User ("voidNAME", "voidSURNAMEs2", "voidGENDER", "voidTOWN", "voidALIAS", 0, 0, 0);
    in one class, but i compile from class 'Main'
    public class Main
        MenuClass menuC = new MenuClass ();
        public Main () throws IncompatibleClassChangeError
            mainClass ();
        public void mainClass () throws IncompatibleClassChangeError
            menuC.logonMenu ();
        public static void main (String [] args) throws IncompatibleClassChangeError
            new Main ();
    }Which runs into menuClass:
    import javax.swing.*;
    public class MenuClass
            AdminClass adminC = new AdminClass ();
            UserProfileDataBase userP = new UserProfileDataBase ();
        public MenuClass ()
        public void logonMenu () throws IncompatibleClassChangeError
            for (;;)
                String logonStr = "LOGON MEgvNU\n\n1: Logon\n2: Exit";
                String temp = JOptionPane.showInputDialog (logonStr);
                int num = Integer.parseInt (temp);
                if (num == 2)
                    System.exit (0);
                else if (num == 1)
                    String userName = JOptionPane.showInputDialog ("Enter your surname only").toUpperCase ();
                    String temp1 = JOptionPane.showInputDialog ("Enter your security code now");
                    int accessCode = Integer.parseInt (temp1);
                    int temp2 = userP.nameSecCodeCheck (userName, accessCode);
                    if (userName.equals ("ADMINA") || userName.equals ("ADMINB") || userName.equals ("ADMINC") || userName.equals ("ADMIND"))
                        adminC.adminMenu ();
                    else if (temp2 == 2)
                        mainMenu (userP.searchName (userName));
                    if (temp2 == 101)
                        JOptionPane.showMessageDialog (null, "name exists not!", "NO SUCH NAME", JOptionPane.ERROR_MESSAGE);
                    if (temp2 == 1)
                        JOptionPane.showMessageDialog (null, "USER AND ACCESS CODE DO NOT MATCH\n      CONTACT ADMINISTRATOR      ");
                        System.exit (0);
        public int mainMenu (int indexOfUser)
            String menuStr = "USER MENU\n\n1: View / Modify User Profile\n2: View / Modify Current Undertakings\n3: View Experience List\n4: View Skills List\n5: Manage Messages (" + MessageClass.messageNum (indexOfUser) + " new messages)";
            String temp = JOptionPane.showInputDialog (menuStr);                                                                                                                                                                                                    // need for new class and methods
            int num = Integer.parseInt (temp);
            return num;
    }which runs into:
    import javax.swing.*;
    public class UserProfileDataBase
        public User [] arr = new User [100];
        public UserProfileDataBase () throws IncompatibleClassChangeError
            for (int i = 0 ; i < arr.length ; i++)
                arr = new User ("voidNAME", "voidSURNAMEs2", "voidGENDER", "voidTOWN", "voidALIAS", 0, 0, 0);
    arr [0].setName ("ADMINA");
    arr [0].setSurname ("ADMINA");
    arr [0].setCode (1111);
    arr [1].setName ("ADMINB");
    arr [1].setSurname ("ADMINB");
    arr [1].setCode (2222);
    arr [2].setName ("ADMINC");
    arr [2].setSurname ("ADMINC");
    arr [2].setCode (3333);
    arr [3].setName ("ADMIND");
    arr [3].setSurname ("ADMIND");
    arr [3].setCode (4444);
    try
    {Thread.sleep (1000);}
    catch (InterruptedException i)
    public int searchName (String name)
    String temp = "";
    int breaker = 0;
    int i = 0;
    for (i = 0 ; i <= (arr.length-2) ; i++)
    temp = arr [i].getSurname ();
    int tempInt = arr [i].getStatus ();
    if (tempInt > 0)
    System.out.println ("Comparing " + name + " to name number " + i + "; "+arr[i]);
    if (arr [i].getSurname ().equals (name))
    breaker = i;
    return i;
    public int getFreeSpace ()
    int i;
    for (i = 0 ; i < arr.length ; i++)
    int temp = arr [i].getStatus ();
    if (temp == 0)
    break;
    return i;
    public static void getAll (int indexOfUser)
    StringBuffer sb = new StringBuffer ("USER DETAILS:\n\n\t");
    JOptionPane.showInputDialog (null, sb, "USER DETAILS", JOptionPane.INFORMATION_MESSAGE);
    public void addUserDetails (String name, String sur, String gender, String town, String alias, int age, int code, int index)
    arr [index].setName (name);
    arr [index].setSurname (sur);
    arr [index].setCode (code);
    arr [index].setGender (gender);
    arr [index].setTown (town);
    arr [index].setAlias (alias);
    arr [index].setAge (age);
    public int nameSecCodeCheck (String user, int code) throws IncompatibleClassChangeError
    int i = 1;
    System.out.println ("nameseccodecheck");
    int indexOfName = searchName (user);
    System.out.println ("nameseccodecheck2 = " + indexOfName);
    if (code == arr [indexOfName].getCode ())
    i = 2;
    return i;
    public static void main (String [] args)
    new UserProfileDataBase ();
    But you might need AdminClass to compile:
    import javax.swing.*;
    public class AdminClass
            UserProfileDataBase userP = new UserProfileDataBase ();
            MenuClass menuC = new MenuClass ();
        public AdminClass () throws IncompatibleClassChangeError
        public void adminMenu () throws IncompatibleClassChangeError
            for (;;)
                String menuTemp = JOptionPane.showInputDialog ("ADMINISTRATOR MENU\n\n1: Add User\n2: Delete User\n3: Display A User's Details And Password\n4: Exit ADMINISTRATOR MENU");
                int temp = Integer.parseInt (menuTemp);
                if (temp == 1)
                    addUser ();
                if (temp == 2)
                    deleteUser ();
                if (temp == 3)
                    displayUserDetailsAndPassword ();
                if (temp == 4)
                    menuC.logonMenu ();
        public void addUser () throws IncompatibleClassChangeError
            String firstName = JOptionPane.showInputDialog ("Enter in user's first name.").toUpperCase ();
            String lastName = JOptionPane.showInputDialog ("Enter in user's surname.").toUpperCase ();
            String gender = JOptionPane.showInputDialog ("Enter in user's gender.").toUpperCase ();
            String ageTemp = JOptionPane.showInputDialog ("Enter in user's age.").toUpperCase ();
            int age = Integer.parseInt (ageTemp);
            String town = JOptionPane.showInputDialog ("Enter in user's town of operation.").toUpperCase ();
            String alias = JOptionPane.showInputDialog ("Enter in user's alias.").toUpperCase ();
            int code = (int) (Math.random () * 99999);
            JOptionPane.showMessageDialog (null, "*CONFIDENTIAL INFORMATION TO FOLLOW*", "TAKE NOTE", JOptionPane.WARNING_MESSAGE);
            String temp = (firstName + " " + lastName + "'s access code is " + code + ". Keep this information\nin a safe place and tell no one.");
            JOptionPane.showMessageDialog (null, (temp), "ACCESS CODE", JOptionPane.WARNING_MESSAGE);
            System.out.println ("buga admin1");
            int indexNum = userP.getFreeSpace ();
            System.out.println ("buga admin2");
            userP.addUserDetails (firstName, lastName, gender, town, alias, age, code, indexNum);
        public void deleteUser ()
            String sur = JOptionPane.showInputDialog ("DELETE USER\nPlease enter in the user's last name only.");
            System.out.println ("as");
            int indexOfName = userP.searchName (sur);
            System.out.println ("as2");
            userP.addUserDetails (null, null, null, null, null, 0, 0, indexOfName);
        public void displayUserDetailsAndPassword ()
            String nameStr = JOptionPane.showInputDialog ("Enter in user's surname.").toUpperCase ();
            int indexName = userP.searchName (nameStr);
            userP.getAll (indexName);

  • Flash CS4 Crashing When Compiling AS2

    Since I purchased flash CS4 (upgrading from flash 8), I have gradually shifted from writing code in AS2 to AS3. Now all of my projects are in AS3 except 1, it's an old legacy project written in such a way that conversion would be almost impossible.
    Earlier today I started to work on it and then tried to compile it causing flash to crash. After about an hour I realised that whenever I compile an AS2 project flash crashed. After trying to download patches, restarting countless times and searching the internet for similar bugs, I uninstalled and reinstalled flash. But to no avail, the bug persisted. So I decided to create an acount and post about the bug I encountered on this form, hoping that somone might know about it.
    OS: Windows XP Media Center Edition Service Pack 3 64
    Processor: AMD Athlon 64 bit

    By following the suggestions of this url.
    http://kb2.adobe.com/cps/520/cpsid_52048.html
    And deleting my preferences located here.
    C:\Documents and Settings\<username>\Local Settings\Application Data\Adobe\Flash CS4\
    I managed to fix this problem, flash now once again, compiles AS2 files without crashing.

  • PS CS4 CSXSLibrary: "CSXSInterface.instance" always null

    I was referred to this sub section of the adobe forums for this question:
    I want:
    Start creating my own Photoshop CS4 SWF panel coded with the FlexSDK in FlashDevelop (pure AS3, no flex).
    I have:
    FlexSDK & FlashDevelop
    CSXSLibrary-2.0-sdk-3.4.swc
    Photoshop CS4
    issues:
    whenever I try compile or test my compiled SWF movie in Photoshop I get a null object for the CSXSInterface.instance. This object however is supposed to be the bridge between AS3 and the Photoshop JSX interaction.
    here is a simplified code that causes this error:
    package
         import com.adobe.csxs.types.*;
         import com.adobe.csxs.events.*;
         import com.adobe.csxs.core.CSXSInterface;
         import flash.display.Sprite;
         import flash.events.Event;
         public class Main extends Sprite
              public function Main():void
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event = null):void {
                   CSXSInterface.instance.addEventListener(StateChangeEvent.WINDOW_OPEN, creationComplete);
              private function creationComplete(e:Event):void {
    Once I compile the SWF and have it run in the debug Flash Player I get a error message:
    [Fault] exception, information=TypeError: Error #1009: Cannot access a property or method of a null object reference.
    And whenever I test the SWF as a Photoshop panel (by copying the SWF file in the plugin../panel folder) I get null objects whenever I try to access it which blocks any associated actions (events, triggers,...).
    I am using CSXSLibrary-2.0-sdk-3.4.swc in combination with Photoshop CS4. Is that library perhaps not suited for CS4? Do I need a older library and if so where can I download it. Most of the libraries seem to be rather difficult to find on the internet anyway - which is a big drag for me.
    The SWC library itself however is just fine added to the library as I can even access the CSXSInterface class itself booth while coding and at runtime. Just the .instance or getInstance() singleton returns always NULL.
    Any insight or input would be greatly appriciated

    I'm having the exact same problem, attempting to make a panel in Flash CS4 to run in Photoshop CS4.
    I've tried CSXSLibrary-2.0-sdk-3.4.swc and CSXSLibrary-2.0-sdk-3.3.swc in the SDK, and the separate CSXSLibrary.swc that's been linked to. None of them work; CSXSInterface.instance is always null when my ActionScript runs in Photoshop.
    All I'm doing right now is creating a single Button component, with a script that attempts to run a test function in Photoshop.
    What's interesting is I can put the ShortcutButtons.jsx and ShortcutButtons.swf from the SDK into Plug-ins/Panels and that works just fine. My JavaScript is essentially the same:
    function TestFn()
         alert("Hello, world!");
         app.documents.add();
    And my ActionScript is as follows:
    import com.adobe.csxs.core.CSXSInterface;
    var btnTest = (root as MovieClip).btnTest;
    btnTest.addEventListener("click", testFn);
    function testFn(event:MouseEvent)
         CSXSInterface.instance.evalScript("TestFn");
    (I've put other test code in the testFn() that confirms that the click event is registered correctly.)
    I link the CSXSLibrary.swc in the "Library path" section of the ActionScript 3.0 settings, and I know it's being linked to because the size of my SWF balloons from 20 kB to anywhere from 50 to 300 kB depending on which library I'm trying.
    What am I missing here...?
    Thanks,
    Dan.

  • CS4 no longer recognizing AS2 classes

    Issue: I designed a site in CS4 using AS2 and external AS2 classes. Everything worked fine until about a week ago. Now when I go back and try to edit those files, the classes are no longer loaded and the site breaks.
    I haven't edited any of the code, just graphics.
    I even tested other files that use external classes and those break now as well. (I keep daily backups of my progress. Published two weeks ago: fine; publish the same file today: broken.)
    I went into the AS2.0 Preferences and they're set the way they always have been:
    $(UserConfig)/Classes
    $(LocalData)/Classes
    Since publishing those working files, the only thing I've been doing is a  bunch of AS3 tutorials on Lynda. I haven't edited any AS libraries or settings or preferences,  so I can't figure out what's going on.
    Has Flash gotten confused? How can I get these reconnected? Thanks.

    Ok, so that was the issue. I had connected to the FLA to the AS file, but not the AS file to the FLA.
    I had assumed that the general preferences, ($(UserConfig)/Classes, and $(LocalData)/Classes) were setting up the default connection to the Classes folder in my dev environment. That's why I had the folder titled "Classes" with a captial letter, and didn't link things all the way in either the FLA or the AS files.
    I changed Classes to lowercase, connected it in the FLA, ("classes.com.skin.Scrubber"), then matched the same in the first line of Scrubber.as  (class classes.com.skin.Scrubber extends MovieClip) and got things linked up.
    Thanks so much!
    I just wish I knew why things were working fine until now.

  • Could not deliver as2 message to partner: 1000 # null

    Hi,
    I'm trying to send a message to a partner using AS2, I've already defined the MDN and can see the message in SXMB_MONI pending.
    When looking to the Seeburger I can see the message with status "  Error on send, will be retried " with the following error:
       Could not deliver as2 message to partner: 1000 # null
    I didn't find any information about this 1000 error, so I went to communication channel (RWB) Audit logs and got:
    Delivering the message to the application using connection AS2_http://seeburger.com/xi failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: javax.resource.ResourceException: Fatal exception: javax.resource.ResourceException: SEEBURGER AS2: 1000  # , SEEBURGER AS2: 1000  # .
    In NWA log Viewer (Alert Java) I have:
    error occured! Caused by: com.seeburger.http.base.SSLConnException: response of server was ''
    at com.seeburger.http.base.SSLApacheConnection.checkHttpResponse(SSLApacheConnection.java:3759)
    at com.seeburger.http.base.SSLApacheConnection.doPost(SSLApacheConnection.java:964)...
    and
    Error while executing AS2 plugin: Could not deliver as2 message to partner: 1000  # null [LOC: Error while executing AS2 plugin: Could not deliver as2 message to partner: 1000  # null.execute] Caused by: java.lang.Exception: com.seeburger.as2.exception.AS2PluginRetryException: Could not deliver as2 message to partner: 1000  # null
    at com.seeburger.as2.AS2Plugin.execute(AS2Plugin.java:331)
    at com.seeburger.as2.AS2Plugin.execute(AS2Plugin.java:202)
    at com.seeburger.frame.core.FrameWorkListener.syncNewData(FrameWorkListener.java:530)
    What configuration do I have to make?
    Thanks,
    Pedro

    Hi
    This is a configuration problem at  your AS2 partner side. Please check whether the configuation at partner side is correct or not.
    Also check the receiver AS2 url , valid or not
    Regrads,
    Dhanish

  • Playing AS2 SWF fiel in Flash CS4

    Naive question perhaps... Does anyone know how adobe plays the AS2 SWF file so beautifully, including being able to go to next frame or prev frame or zoom functions?
    I have tried many different ways to play an AS2 SWF in my flex (AS3) SWF loader and it is a very difficult problem. I use a AS2 Shell as a proxy and I use local connection to communicate between the two AVMs. The result is quite a horrible one because, I am not able to scale the swf very well and also have a torrid time with the debugger.
    Does anyone know of any special methods used by Adobe to achieve that in CS4 Flash or do they also use LocalConnection to play the AS2? Thanks

    Hi Kglad,
    I am indeed using LocalConnection. My requirement is to load an AS2 SWF in my flex app and be able to control the playing of the AS2 file. After a lot of research, I found out that the only way to really accomplish that will be load a proxy AS2 shell swf in the main AS3 app using a SWF loader and to communicate with the AS2 shell using LocalConnection. Thru LocalConnection, I then pass the AS2 SWF movie name and have the peoxy shell load the SWF into an empty movie clip and play.
    This actually works, sort of. My problem is that I am not able to scale the AS2 SWF movie automatically. I can scale using the _xscale and _yscale properties, but to do taht, I need to know the width and height of the incoming SWF, which I don't know of a way of finding.My attempts to find it using the following code have resulted in bupkiss. the trace statement which attempts to show the width and height of the movie clip show 0 and the stage trace staement gives me the dimensions of the browser. Instead of what I really need is the width and height of the movie "fileName" that is loaded. Any thoughts? Thanks, Ramesh
            __vid = createEmptyMovieClip(__vid, 0);
            __vid._lockroot = true;
            __vidMCL = new MovieClipLoader();
            var mclHandler:Object = new Object();
            mclHandler.onLoadComplete = function(mc:MovieClip) {
                trace("wh vals are " + mc._width + "," + mc._height);
                trace("stage wh vals are " + Stage.height + "," + Stage.width);
                mc._xscale = 48;
                mc._yscale = 48;
                out_lc.send(LC_OUT_NAME(), "onPlayVideoResult", true);
            __vidMCL.addListener(mclHandler);
            __vidMCL.loadClip(fileName, __vid);

  • AS2 using HTTPS - Handshake failure # null

    Hello,
    I have scenario IDoc - PI - AS2 using HTTPS.
    when i am trying to send data it is giving me "Handshake Failure" error.
    I have check certificate and configuration properly.
    Parnter is saying "your client doesnu2019t sent the requested client certificate"
    following are traces:
       20120102 061927 011 SECS  I SES_INIT  (83903899) Netprof : NP_AS2_CERT_Sender_TEST selected [src_addr="---Hostname/port"] [dest_addr="hostname/port"]
       20120102 061927 013 SECS  I SES_INIT  (83903899) Server TLS Security Profile : TLS_AS2_SRV_CERT_Port selected
       20120102 061927 103 NET   I CONN_RESP (17809) incoming connection response     [resp_add=""]
       20120102 061929 030 SECS  I C_BUILD   (83903899) Server Certificate sent: Receiver_Partner
       20120102 061929 030 SECS  I C_BUILD   (83903899) Server Certificate sent: VeriSign Class 3 International
       20120102 061929 030 SECS  I C_BUILD   (83903899) Server Certificate sent: VeriSign Class 3 Public Primary
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: AS2 KRAFT Root Prod CA
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: AS2 KRAFT Root Test CA
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: AS2 KnorrPrandel (SIGN) New
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: AS2 KnorrPrandel (SSL) New
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: AS2 MarkantSyntradeRoot
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: AS2 ProcterGambleProd
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: D-TRUST Root Class 2 CA 2007
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: Entrust.net CA
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: EquifaxSecure(4Bacardi)
       20120102 061929 014 SECS  I CA_BUILD  (83903899) Server Sending Accepted DN: Sender RootCA (Sender)
      20120102 061929 053 NET   W TLSALSND  (17809) alert 40 sent (handshake failure)
                   20120102 061929 105 NET   I DISC_REQ  (17809) disconnection request            [reason="0"]
    Please suggest.
    //Manisha

    Hello,
    have u downloaded the certificate from the vendor url and uploaded in STRUST.
    have u restarted ICM through SMICM.  did connection test in SM 59 ? what is the response ???
    Regards,
    Phani

  • Cs4, publishing to fp9 as2, problem with mask

    hello;
    I have a tf on the stage, with character embedding;
    the tf is masked;
    I have publish setting on flash player 9, AS2;
    when I play swf in flash player, the tf is not visible;
    if I publish to fp7, as2, no problem;
    any thoughts?
    thanks,
    Shannon

    Hi,
    Try exporting your file with the following settings to get a high quality GIF
    Dimensions   : Match movie
    Playback       : Animated
                        : Loop continuously
    Options         : Optimize colors
                        : Smooth
    Transparent   : Opaque
    Dither           : None
    Palette Type : Adaptive
    Max colors   : 99999
    Thanks!
    ps: please mark this post as Answered if this of any help to you

  • 1009 Error (Null Object Call) Flash CS4

    Hi All
    I'm very new to Flash (this is my first attempt) and am trying to figure out how to deal with this error I'm getting.
    The code is supposed to animate a flyout menu on a mouse hover event.
    I'm actually surprised I have made it this far before getting stumped.
    Please help, My brain hurts. 
    Here is my code:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var FishingSub_mc:MovieClip = FishingSub_mc;
    var Fishing_btn:SimpleButton = Fishing_btn;
    function FishingFlyout (event:MouseEvent):void
        var FishingTween:Tween = new Tween (FishingSub_mc,"y",Regular.easeOut,0,40,20,false);
        Fishing_btn.addEventListener(MouseEvent.MOUSE_OVER,FishingFlyout);
    And here is the error I'm getting:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at menu_fla::MainTimeline/frame1()[menu_fla.MainTimeline::frame1:12]
    Thanks for your help.
    Dave

    I am not sure why you have these two lines...
    var FishingSub_mc:MovieClip = FishingSub_mc;
    var Fishing_btn:SimpleButton = Fishing_btn;
    If those two objects are items on your stage, then you should not need those lines of code at all. The important thing is to be sure that you have the instance names assigned to the objects.  Whichever object is being targeted on line 12 is out of scope when that code executes.
    Some of the possible reasons...
    - the object doesn't have the instance name assigned to it
    - the object animates into the movie and does not have that instance name assigned at each keyframe
    - the object is somewhere down a timeline when that code executes

  • CS4/AS2.0 Newbie Question.. help please?

    Hey all, I'm a newbie on the forum and in Flash.
    I've used it before, made my pages into scenes, and
    everything worked fine. Apparently, this doesn't work anymore (I
    used an earlier version of Flash) in CS4, and everyone is
    recommending to use frame labels. This doesn't work either.
    This is a screenshot of my site right now.
    The ActionScript is the exact same in all three frames on the
    actions layer you see in the screenie.
    All I want is when clicking on the AboutUs button and
    WhatIsHypnosis button, that they go to the specified frame labels.
    The only one that works is the AboutUs button. I can click on
    it and it loads the content that its supposed to,but the home (the
    logo) and the second button do not work. They are clickable, just
    nothing happens.
    I've tried everything I can think of and that I have been
    able to find.
    Changing the type of frame label has no effect.
    Help please? I've been trying to fix this for a good 6-7
    hours.
    Screenshot:
    http://img407.imageshack.us/img407/2372/picture8sq4.png
    Thank you!

    Fixed. :)
    I have no clue what it was..
    I changed some frame labels around, renamed a few buttons,
    renamed some instances, and it magically worked. :)

  • CS4 AS2 Tween Problem

    Hi there,
    Wondering if anyone can help with a crippling issue in Flash CS4. In short, the post production company I work for asked me to redesign their website using the version that happened to be hanging round the office- Flash MX (circa 2002). Half way through the project we bought CS4 as the site is quite video heavy and MX isn't really set up for that.
    I've opened my mx file in the new version and all has worked well- however a couple of days down the line i'm now having major tweening issues on the pages i've created since upgrading.
    When transitioning between scenes (yes i know everyone hates scenes but it seemed right at the time) the classic alpha tweens that fade the new scene in seem to be 'paused' on the first frame when viewed as an SWF. All is fine when scrubbing through the timeline. As I designed the site and know where the buttons are I can click them, it's just they're not visible.
    I've done a lot of reading into this and have seen reports of similar issues with dynamic text elements not alpha tweening properly - but this is all of the layers that have a tween at the start. Sadly i'm really tight on time to get the site done as it's only a side project and i've got work building up.
    If anyone can shed any light on the situation I would be very grateful. I can supply the .FLA on request but it's 200mb so it's going to be a bit of a beast to send around.
    I've searched for things like 'tween conflict' 'alpha tween not working' 'classic tween error' etc to no avail.
    Thanks in advance.
    Jon

    Hi Jon,
    Does this sound like the problem you're encountering? http://kb2.adobe.com/cps/496/cpsid_49616.html
    (there are a few workarounds on the page)

Maybe you are looking for