Skip to main content

.NET Business Connector Reset

Eğer AX ile dış ortamlar arasında bir entegrasyon üzerinde çalışıyorsanız, AX tarafında değiştirdiğiniz kodların Business Connector (BC) tarafında yenilenmediğini ve hala eski şekli ile çalıştırıldığını görürsünüz. Bunun temel nedeni AOS’un kod performansını artırmak üzere kullandığı önbellek (cache) mekanizmasıdır. Canlı kullanımda olan bir projede normal olsa da, development esnasında oldukça sıkıntı veren bu durumu atlatmak için alttaki çözümü deneyebilirsiniz :
Bir web servisi yayınladıktan sonra her değişiklik yaptığınızda alttaki yolu izleyin:

1. Ax tarafında alttaki gibi bir job yazıp çalıştırın.
 
1static void FlushBC(Args _args)
2{
3 ;
4 xSession::removeAOC();
5 SysTreeNode::refreshAll();
6 SysFlushDictionary::doFlush();
7 xSession::updateAOC();
8}
2. IIS stop / start yapın.
3. BC’yi kullanarak AX nesnelerine eriştiğiniz metodlarda Garbage Collector’u çalıştırın.
 
01[WebMethod]
02public string testWS(string uid, string pwd, string _xml)
03{
04 using(Axapta ax = AX.AxLogon(uid, pwd))
05 {
06
07 try
08 {
09 if (ax != null)
10 {
11 object axObj = ax.CallStaticClassMethod("TestClass", "testMetod", _xml);
12 ax.Logoff();
13 return axObj.ToString();
14 }
15 else
16 {
17 return "0|İşlem Yapılmadı|Login Hatası";
18 }
19
20 }
21 catch (Exception e)
22 {
23 AX.WriteLog(e.ToString());
24 return "0|İşlem Yapılmadı|" + e.Message;
25 }
26 finally
27 {
28 ax.Logoff();
29 GC.Collect(); //Garbage Collector'u çalıştır
30 }
31 }
32}
Değerli katkılarından dolayı Alper Şamdancıoğlu ve Muammer Yiğit‘e teşekkürler.
Emre TÜFEKÇİ

Popular posts from this blog

What does this mean: "The form datasource query object does not support changing its AllowCrossCompany property after the form has executed the query."?

I have made a form with datasources vendtable and vendtrans. Inside vendtable_ds.executequery() looks like this: QueryBuildDataSource queryBuildDatasource ,queryBDS_VendTrans_Invoice; ; queryBuildDatasource = this.query().dataSourceTable(tablenum(vendtable)); queryBDS_VendTrans_Invoice = this.query().dataSourceTable(tablenum(vendtrans)); if (curext() == "MASTERCOMP") { this.query().allowCrossCompany(true); } else { this.query().allowCrossCompany(false); } //FilterVendorName = stringedit control on form if (FilterVendorName.text()) { queryBuildDatasource.addRange(fieldNum(VendTable,Name)).value(strfmt("*%1*", FilterVendorName.text())); } else { queryBuildDatasource.clearRange(fieldNum(VendTable,Name)); } //FilterInvoiceNumber = stringedit control on form if (FilterInvoiceNumber.valueStr() == "") { queryBDS_VendTrans_Invoice.enabled(false); } else { queryBDS_VendTrans_Invoice.enabled(true); queryBDS_VendTrans_In...

Credit Note [Dynamics AX] using X++

This post will help to create credit note for a sales order based on the invent lot id. All the invoices raised for a particular sales line – Lot Id will be raised back as a credit note. Information on Credit Note: A credit note or credit memorandum (memo) is a commercial document issued by a seller to a buyer. The seller usually issues a Credit Memo for the same or lower amount than the invoice, and then repays the money to the buyer or sets it off against a balance due from other transactions Below Code will help to create credit note for all the invoices raised against the sales line -lot id. Please note: This code can be customized as per your requirements. This is just a template to help creating credit note using X++ code. Please test the code before use. static void SR_CreateCreditNote_Sales(Args _args) { // Coded by Sreenath Reddy CustInvoiceTrans custInvoiceTrans; Dialog dialog = new Dialog(“Create credit note – for sales.”); DialogField dfInv...