Options

.Net application integration issue

jagujayanjagujayan Member Posts: 5
Hi,

I am using automation variable in order integrate a .Net application with Navision. THe fuction is like it fetches sales line no, document no and item no and loads a form in .Net. The same works perfectly fine while i am opening it form Classic client but while opening the same form RTC NAV-Not reponding issue pops in. What can be the reason for it?? I use the same codeunit for both classic client and RTC.

Answers

  • Options
    Wisa123Wisa123 Member Posts: 308
    From https://msdn.microsoft.com/en-us/library/dd355255.aspx:
    If OnClient is false (the default), then the Automation object is created on the Microsoft Dynamics NAV Server. If OnClient is true, then the Automation object is created on the client.
    This parameter is only valid when you run the function on the RoleTailored client. On the Classic client, the Automation object is always created on the client.

    Probably the Server doesnt know how to process your requests because your .net application runs on the client. Try setting this true in your CU.
    Austrian NAV/BC Dev
  • Options
    jagujayanjagujayan Member Posts: 5
    I tried this solution but its not working.
Sign In or Register to comment.