Options

Prob..in Employee portal

anil123anil123 Member Posts: 47
edited 2008-11-20 in Navision e-Commerce
Hi...

I have configured Navision Application Server 5.0 with startup parameter NEP-1. This is running successfully with no error in event log.i install employee portal frentend but my problem is how to setup the application server setup card in front end tab, key exchange tab and web.config. but i setup like the following

general tab
code :NEP-1
Des: NAS for Employee Portal

Front End

request queue:.\private$\nep_request_queue
reply queue :.\private$\nep_reply_queue

Key Exchange

Key exchange request :FormatName:DIRECT=TCP:192.168.1.17\private$\nep_request_queue
Key exchange reply :FormatName:DIRECT=HTTPS:\\192.168.1.17\msmq\nep_key_reply

web.config

<appSettings>
<add key="PictureUnavailable" value="/_layouts/images/picture_unavailable.gif" />
<add key="LookUpImage" value="/_layouts/images/lookup.gif" />
<add key="PictureLinkImage" value="/_layouts/images/pictindicator.gif" />
<add key="UseEncryption" value="0" />
<add key="UseCompression" value="0" />
<add key="UseDebug" value="0" />
<add key="DebugPath" value="" />
<add key="JobQueues" value="FormatName:DIRECT=OS:.\private$\nep_request_queue" />
<add key="ReplyQueues" value="FormatName:DIRECT=OS:.\private$\nep_reply_queue" />
<add key="MessageTimeOut" value="120" />
<add key="WaitForReplyTimeOut" value="60" />
</appSettings>
</configuration>

servername:ve55
ip address :192.168.1.17



](*,)
Anil

Comments

  • Options
    IHateLinuxIHateLinux Member Posts: 223
    Hi Anik123,

    can you please describe your problem a little bit more in detail?

    As first guess, I think your communication will not work?

    Please change the configuration in the web.config for the queues from:
    <add key="JobQueues" value="FormatName:DIRECT=OS:.\private$\nep_request_queue" />
    <add key="ReplyQueues" value="FormatName:DIRECT=OS:.\private$\nep_reply_queue" />
    to
    <add key="JobQueues" value="FormatName:DIRECT=OS:VE55\private$\nep_request_queue" />
    <add key="ReplyQueues" value="FormatName:DIRECT=OS:VE55\private$\nep_reply_queue" />

    Please use the search in this forum, I had posted a lot about how to identify communication issues in NEP.

    In a few words, you have to track down:
    1. Does the message leave the frontend server?
    2. Does the message arrive in the job queue on the NAS
    3. Does the NAS take the message out of the queue and start the processing?
    4. Does the NAS write a response back?
    5. Does the response be sent to the frontend?
    6. Does the response arrive on the frontend?

    For most of this, you should activate the Journal in MSMQ, but keep in mind to limit the size of it.

    HTH,
    Rainer
Sign In or Register to comment.