NAS 3.70 vs NAS 3.60

Hi All… I’m recently working with navision 3.70 and try it’s NAS with MQ. I see some differences in it’s trigger 99 within codeunit 1, comparin g with 3.60. Previously, i’ve made some integration stuff in 3.60 and it’s work.But when i migrate the code into 3.70 (absolutely the same code), 3.70’s NAS can not retrieve the stream from MQ while 3.60 can. Is anybody here have some experiences the similar problem ? Here is my modified trigger 99 both in 3.60 and 3.70 : *************** 3.60 : *************** ATASStarted := FALSE; ParamStr := UPPERCASE(ATASID); REPEAT SepPosition := STRPOS(ParamStr,’,’); IF SepPosition > 0 THEN Parameter := COPYSTR(ParamStr,1,SepPosition - 1) ELSE Parameter := COPYSTR(ParamStr,1); CASE Parameter OF ‘CG’: BEGIN BizTalkATASStartup.RUN; ATASStarted := TRUE; END; … ‘ADCS’: BEGIN ADCSATASStartup.SetNASID(COPYSTR(ParamStr,SepPosition + 1)); ADCSATASStartup.RUN; ATASStarted := TRUE; END; //BN 100303 ‘PAYROLL’ : BEGIN CommunicationManager.CreateReceivePayroll(); ATASStarted := TRUE; END; //BN 100303 END; … *************** 3.70 : *************** … CASE Parameter OF ‘MAILLOG’: CODEUNIT.RUN(CODEUNIT::“E-Mail Dispatcher”); ‘ADCS’: BEGIN ADCSNASStartup.SetNASID(COPYSTR(ParamStr,SepPosition + 1)); ADCSNASStartup.RUN; END; //BN ‘PAYROLL’ : BEGIN CommunicationManager.CreateReceivePayroll(); END; //BN ELSE IF CPApplnSrvSetup.GET(Parameter) THEN BEGIN CPApplnSrvMgt.SetNASID(Parameter); WORKDATE := 0D; IF CPApplnSrvMgt.GetSendMail THEN BEGIN … Thank You.

ok solved already, works fine in 3.70… case closed