-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1017 lines (538 loc) · 33.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kine's info</title>
<meta name="description" content="Kamil Sacek blog about not only Microsoft Dynamics 365 Business Central but all around like Powershell, Azure DevOps etc.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:site_name" content="Kine's info">
<meta property="og:title" content="Kine's info">
<meta property="og:description" content="Kamil Sacek blog about not only Microsoft Dynamics 365 Business Central but all around like Powershell, Azure DevOps etc.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://blog.kine.cz/">
<meta property="og:image" content="https://blog.kine.cz/assets/KSCSmall.png">
<link rel="shortcut icon" href="https://blog.kine.cz/favicon.ico?v=1">
<meta name="generator" content="Hugo 0.101.0" />
<link rel="stylesheet" href="https://blog.kine.cz/css/bundle.min.5233f2a4cd515395301b4154f6c1c621695e8cf53faa0935b76ac52fed7f4585.css" integrity="sha256-UjPypM1RU5UwG0FU9sHGIWlejPU/qgk1t2rFL+1/RYU="><link rel="stylesheet" href="https://blog.kine.cz/css/add-on.css">
<link rel="stylesheet" href="https://blog.kine.cz/assets/css/copy-code-button.css">
</head>
<body>
<header id="site-header">
<nav id="site-nav">
<h1 class="nav-title">
<a href="https://blog.kine.cz/" class="nav">
Kine's Info
</a>
</h1>
<menu id="site-nav-menu" class="flyout-menu menu">
<a href="https://blog.kine.cz/" class="nav link"><i class='fa fa-home'></i> Home</a>
<a href="https://blog.kine.cz/about" class="nav link"><i class='far fa-id-card'></i> About</a>
<a href="https://blog.kine.cz/" class="nav link"><i class='far fa-newspaper'></i> Blog</a>
<a href="https://blog.kine.cz/categories" class="nav link"><i class='fas fa-sitemap'></i> Categories</a>
<a href="https://blog.kine.cz/tags" class="nav link"><i class='fas fa-tags'></i> Tags</a>
<a href="#share-menu" class="nav link share-toggle"><i class="fas fa-share-alt"> </i>Share</a>
<a href="#search-input" class="nav link search-toggle"><i class="fas fa-search"> </i>Search</a>
</menu>
<a href="#search-input" class="nav search-toggle"><i class="fas fa-search fa-2x"> </i></a>
<a href="#share-menu" class="nav share-toggle"><i class="fas fa-share-alt fa-2x"> </i></a>
<a href="#lang-menu" class="nav lang-toggle" lang="en">en</a>
<a href="#site-nav" class="nav nav-toggle"><i class="fas fa-bars fa-2x"></i></a>
</nav>
<menu id="search" class="menu"><input id="search-input" class="search-input menu"></input><div id="search-results" class="search-results menu"></div></menu>
<menu id="lang-menu" class="flyout-menu menu">
<a href="#" lang="en" class="nav link active"> (en)</a>
</menu>
<menu id="share-menu" class="flyout-menu menu">
<h1>Share Post</h1>
<a href="//twitter.com/share?text=Kine%27s%20info&url=https%3a%2f%2fblog.kine.cz%2f" target="_blank" rel="noopener" class="nav share-btn twitter">
<p>Twitter</p>
</a>
<a href="//www.linkedin.com/shareArticle?url=https%3a%2f%2fblog.kine.cz%2f&title=Kine%27s%20info" target="_blank" rel="noopener" class="nav share-btn linkedin">
<p>LinkedIn</p>
</a>
<a href="mailto:?subject=Check%20out%20this%20post%20by %7b%20%20%20%20%20%20%20%20map%5b%5d%7d&body=https%3a%2f%2fblog.kine.cz%2f" target="_blank" class="nav share-btn email" data-proofer-ignore>
<p>Email</p>
</a>
</menu>
</header>
<div id="wrapper">
<section id="site-intro" >
<a href="https://blog.kine.cz/"><img src="https://blog.kine.cz/assets/KSCSmall.png" class="circle" width="100" alt="Kine's Info" /></a>
<header>
<h1>Kine's Info</h1>
</header>
<main>
<p>Another blog about Microsoft Dynamics 365 Business Central (AL, Powershell, Azure DevOps etc.)<center><a href='https://mvp.microsoft.com/en-us/mvp/kamil%20sacek-21590'><img src='https://blog.kine.cz/assets/MVP_Logo_Horizontal_Secondary_Blue286_CMYK_72ppi.png' width='50%'></a></center></p>
</main>
<footer>
<ul class="socnet-icons">
<li><a href="https://blog.kine.cz/index.xml" type="application/rss+xml" target="_blank" title="RSS" class="fas fa-rss"></a></li>
<li><a href="//github.com/kine" target="_blank" rel="noopener" title="GitHub" class="fab fa-github"></a></li>
<li><a href="//www.linkedin.com/in/kamil-sacek-8830661" target="_blank" rel="noopener" title="LinkedIn" class="fab fa-linkedin"></a></li>
<li><a href="//twitter.com/MVPKine" target="_blank" rel="noopener" title="Twitter" class="fab fa-twitter"></a></li>
<li><a href="//www.buymeacoffee.com/kine" target="_blank" rel="noopener" title="BuyMeACoffee" class="fas fa-coffee"></a></li>
<li><a href="mailto:[email protected]" target="_blank" title="Email" class="far fa-envelope"></a></li>
</ul>
</footer>
</section>
<main id="site-main">
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/azureblobstoragewithserviceprincipalinal/">Accessing Azure Blob Storage with Service Principal from Business Central AL</a></h2>
</div>
<div class="meta">
<time datetime="2024-08-26 14:00:00 +0200 +0200">August 26, 2024</time>
<p>3-Minute Read</p>
</div>
</header>
<div class="content">
<p>After long time I needed to solve some AL problem for my colleagues and I was not able to find the solution on internet and even from other MVPs. Today I had some time to dig into the problem and I have solved it.
I want to share the solution with you. But first, we need some introduction into the problem.</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/azureblobstoragewithserviceprincipalinal/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/azure/">Azure</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/azure/">Azure</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/paketforbc/">Using Paket CLI for Business Central</a></h2>
</div>
<div class="meta">
<time datetime="2024-07-15 15:00:00 +0200 +0200">July 15, 2024</time>
<p>8-Minute Read</p>
</div>
</header>
<div class="content">
<a href="https://blog.kine.cz/posts/paketforbc/" class="image" style="--bg-image: url('/assets/NuGet/PaketLogo.png');">
<img class="" src="https://blog.kine.cz/assets/NuGet/PaketLogo.png" alt="Paket Logo">
</a>
<p>In my previous article <a href="https://blog.kine.cz/posts/nugetizingbusinesscentralstatus/">NuGet-izing Business Central: Current Status</a> I have mentioned <a href="https://github.com/kine/NVRAppDevOps">NVRAppDevOps</a> powershell module we are using in our DevOps and that it supports using NuGet packages together with Microsoft Dynamics 365 Business Central. This article will be about how it works.</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/paketforbc/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/architecture/">Architecture</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/nuget/">NuGet</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/nvrappdevops/">NVRAppDevOps</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/nuget/">NuGet</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/paket/">Paket</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/nvrappdevops/">NVRAppDevOps</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/nugetizingbusinesscentralstatus/">NuGet-izing Business Central: Current status</a></h2>
</div>
<div class="meta">
<time datetime="2024-07-12 10:00:00 +0200 +0200">July 12, 2024</time>
<p>3-Minute Read</p>
</div>
</header>
<div class="content">
<a href="https://blog.kine.cz/posts/nugetizingbusinesscentralstatus/" class="image" style="--bg-image: url('/assets/NuGet/NuGetDelivery.jpeg');">
<img class="" src="https://blog.kine.cz/assets/NuGet/NuGetDelivery.jpeg" alt="NuGet delivery">
</a>
<p>In my last sessions on different conferences and webcasts I was talking about my dream regarding using NuGet technology to distribute and consume Business Central .app files. These sessions were starter point for make the whole dream reality. But we are not there yet. We just started the trip. This blog article want to summarize current status of this trip.</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/nugetizingbusinesscentralstatus/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/architecture/">Architecture</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/nuget/">NuGet</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/nuget/">NuGet</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/sali_part2/">SaLi architecture for Microsoft Dynamics 365 Business Central, part 2</a></h2>
</div>
<div class="meta">
<time datetime="2024-01-04 14:00:00 +0100 +0100">January 4, 2024</time>
<p>6-Minute Read</p>
</div>
</header>
<div class="content">
<a href="https://blog.kine.cz/posts/sali_part2/" class="image" style="--bg-image: url('/assets/SaLi/SaLiArchitectureHeadline.jpeg');">
<img class="" src="https://blog.kine.cz/assets/SaLi/SaLiArchitectureHeadline.jpeg" alt="SaLi Architecture">
</a>
<p>See previous part first - <a href="https://blog.kine.cz/posts/sali_part1/">SaLi architecture for Microsoft Dynamics 365 Business Central, part 1</a></p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/sali_part2/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/architecture/">Architecture</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/appsource/">AppSource</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/architecture/">Architecture</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/sali/">SaLi</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/appsource/">AppSource</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/sali_part1/">SaLi architecture for Microsoft Dynamics 365 Business Central, part 1</a></h2>
</div>
<div class="meta">
<time datetime="2023-10-17 16:30:00 +0200 +0200">October 17, 2023</time>
<p>5-Minute Read</p>
</div>
</header>
<div class="content">
<a href="https://blog.kine.cz/posts/sali_part1/" class="image" style="--bg-image: url('/assets/SaLi/SaLiArchitectureHeadline.jpeg');">
<img class="" src="https://blog.kine.cz/assets/SaLi/SaLiArchitectureHeadline.jpeg" alt="SaLi Architecture">
</a>
<p>If you are developing solutions for Microsoft Dynamics 365 Business Central and you are building them from multiple applications (see <a href="https://blog.kine.cz/posts/ptearchitecture1/">Split or not to split</a>), may be you are now experiencing some problems with the dependencies between your apps, chaos made by development withouth rules. We were there too and this is example of dependency chart of one our solution:
<figure>
<a data-fancybox="SaLi" href="https://blog.kine.cz/assets/SaLi/Before.png" data-caption="Dependencies before SaLi"><img src="https://blog.kine.cz/assets/SaLi/Before.png"></a>
<figcaption>Dependencies before SaLi</figcaption>
</figure>
And because my coleague <a href="https://www.linkedin.com/in/jakub-linhart-11925a96/?originalSubdomain=cz">Jakub Linhart</a> is…</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/sali_part1/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/architecture/">Architecture</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/appsource/">AppSource</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/architecture/">Architecture</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/sali/">SaLi</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/appsource/">AppSource</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/proxy/">How to publish your local BC containers to internet using IIS</a></h2>
</div>
<div class="meta">
<time datetime="2022-08-18 12:00:00 +0100 +0100">August 18, 2022</time>
<p>4-Minute Read</p>
</div>
</header>
<div class="content">
<a href="https://blog.kine.cz/posts/proxy/" class="image">
<img class="" src="https://blog.kine.cz/images/ProxyDesign.png" alt="ProxyDesign">
</a>
<p>If you are doing Dynamics 365 Business Central development on your local (not Azure) containers, may be you want to have access to them from outside your local network without using VPN. And not only to BC Web Client, but even to API/OData and development endpoint. And of course you want to have them published with some trusted certificate to be able to use all the functionality like Business Central application, connection from Power BI connectors etc. It is handy when you are working with…</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/proxy/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/infrastructure/">Infrastructure</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/infrastructure/">Infrastructure</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/iis/">IIS</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/bclicensestructure/">Using BCLicense file from powershell</a></h2>
</div>
<div class="meta">
<time datetime="2022-05-18 00:00:00 +0100 +0100">May 18, 2022</time>
<p>7-Minute Read</p>
</div>
</header>
<div class="content">
<p>If you are working with OnPrem customers having Microsoft Dynamics 365 Business Central, you have already noticed the new license file format .bclicense. It was created by Microsoft to have modern way how to pass the licensing info without limits of the old .flf format (limited max size etc.). It had some side-effect (bugs) on beginning but I hope that they are solved (never tested yet). But today I am not writing about this file format because Customers, but because it could be handy for…</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/bclicensestructure/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/onprem/">OnPrem</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/powershell/">PowerShell</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/onprem/">OnPrem</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/license/">License</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/powershell/">PowerShell</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/whytowriteenutranslation/">How to translate your AL app from Devglish to Endglish</a></h2>
</div>
<div class="meta">
<time datetime="2022-05-05 00:00:00 +0100 +0100">May 5, 2022</time>
<p>5-Minute Read</p>
</div>
</header>
<div class="content">
<p>Since we started to use VSCode for AL development, I hear discussions that writing UI texts like ToolTips etc. should be done by someone else than developer. And I must agree. We - developers - are lazy kind and writing text is not our popular game. We are able to write some generic text, mostly automagically generated by different tools we are using to write code, but such a text is mostly equal to 0 <a href="https://en.wikipedia.org/wiki/Shannon_(unit)">Shannons</a> (no, I am not talking about <a href="https://twitter.com/1ShannonMullin1">@Shannon Mullins</a>). But how to solve this?</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/whytowriteenutranslation/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/al/">AL</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/appsource/">AppSource</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/translation/">Translation</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/localfs/">Unattended access to local resources - WCF Relay</a></h2>
</div>
<div class="meta">
<time datetime="2022-03-31 00:00:00 +0100 +0100">March 31, 2022</time>
<p>6-Minute Read</p>
</div>
</header>
<div class="content">
<p>In many cases you need to work with resources (files, scales, card readers etc.), which are available on local network/PC, from within Microsoft Dynamics 365 Business Central which runs somewhere in the Cloud.
I will show you one way how to solve these things.</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/localfs/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/pte/">PTE</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/pte/">PTE</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/webservices/">WebServices</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/api/">API</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/local-resources/">Local resources</a></li>
</ul>
</div>
</footer>
</article>
<article class="post">
<header>
<div class="title">
<h2><a href="https://blog.kine.cz/posts/snapshotdebuggeronprem/">Snapshot debugger on OnPrem - what you need to know to set it up</a></h2>
</div>
<div class="meta">
<time datetime="2022-02-15 11:00:00 +0100 +0100">February 15, 2022</time>
<p>3-Minute Read</p>
</div>
</header>
<div class="content">
<p>When you want to use Snapshot Debugging on your OnPrem environment, may be you can hit this error when trying to initialize it:</p>
</div>
<footer>
<a href="https://blog.kine.cz/posts/snapshotdebuggeronprem/" class="button big">Read More</a>
<div class="stats">
<ul class="categories">
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/administration/">Administration</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/categories/al/">AL</a></li>
</ul>
<ul class="tags">
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/business-central/">Business Central</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/al/">AL</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/administration/">Administration</a></li>
<li><a class="article-terms-link" href="https://blog.kine.cz/tags/ssl/">SSL</a></li>
</ul>
</div>
</footer>
</article>
<div class="pagination">
<a href="https://blog.kine.cz/page/2/" class="button right"><span>Next Page</span></a>
</div>
</main>
<section id="site-sidebar">
<section id="recent-posts">
<header>
<h1>Recent Posts</h1>
</header>
<article class="mini-post">
<header>
<h2><a href="https://blog.kine.cz/posts/azureblobstoragewithserviceprincipalinal/">Accessing Azure Blob Storage with Service Principal from Business Central AL</a></h2>
<time class="published" datetime="2024-08-26 14:00:00 +0200 +0200">August 26, 2024</time>
</header>
</article>
<article class="mini-post">
<a href="https://blog.kine.cz/posts/paketforbc/" class="image" style="--bg-image: url('/assets/NuGet/PaketLogo.png');">
<img class="" src="https://blog.kine.cz/assets/NuGet/PaketLogo.png" alt="Paket Logo">
</a>
<header>
<h2><a href="https://blog.kine.cz/posts/paketforbc/">Using Paket CLI for Business Central</a></h2>
<time class="published" datetime="2024-07-15 15:00:00 +0200 +0200">July 15, 2024</time>
</header>
</article>
<article class="mini-post">
<a href="https://blog.kine.cz/posts/nugetizingbusinesscentralstatus/" class="image" style="--bg-image: url('/assets/NuGet/NuGetDelivery.jpeg');">
<img class="" src="https://blog.kine.cz/assets/NuGet/NuGetDelivery.jpeg" alt="NuGet delivery">
</a>
<header>
<h2><a href="https://blog.kine.cz/posts/nugetizingbusinesscentralstatus/">NuGet-izing Business Central: Current status</a></h2>
<time class="published" datetime="2024-07-12 10:00:00 +0200 +0200">July 12, 2024</time>
</header>
</article>
<article class="mini-post">
<a href="https://blog.kine.cz/posts/sali_part2/" class="image" style="--bg-image: url('/assets/SaLi/SaLiArchitectureHeadline.jpeg');">
<img class="" src="https://blog.kine.cz/assets/SaLi/SaLiArchitectureHeadline.jpeg" alt="SaLi Architecture">
</a>
<header>
<h2><a href="https://blog.kine.cz/posts/sali_part2/">SaLi architecture for Microsoft Dynamics 365 Business Central, part 2</a></h2>
<time class="published" datetime="2024-01-04 14:00:00 +0100 +0100">January 4, 2024</time>
</header>
</article>
<article class="mini-post">
<a href="https://blog.kine.cz/posts/sali_part1/" class="image" style="--bg-image: url('/assets/SaLi/SaLiArchitectureHeadline.jpeg');">
<img class="" src="https://blog.kine.cz/assets/SaLi/SaLiArchitectureHeadline.jpeg" alt="SaLi Architecture">
</a>
<header>
<h2><a href="https://blog.kine.cz/posts/sali_part1/">SaLi architecture for Microsoft Dynamics 365 Business Central, part 1</a></h2>
<time class="published" datetime="2023-10-17 16:30:00 +0200 +0200">October 17, 2023</time>
</header>
</article>
<footer>
<a href="https://blog.kine.cz/blog" class="button">See More</a>
</footer>
</section>
<section id="categories">
<header>
<h1><a href="https://blog.kine.cz/categories">Categories</a></h1>
</header>
<ul>
<li>
<a href="https://blog.kine.cz/categories/business-central/">business-central<span class="count">11</span></a>
<li>
<a href="https://blog.kine.cz/categories/al/">al<span class="count">5</span></a>
<li>
<a href="https://blog.kine.cz/categories/architecture/">architecture<span class="count">5</span></a>
<li>
<a href="https://blog.kine.cz/categories/pte/">pte<span class="count">5</span></a>
<li>
<a href="https://blog.kine.cz/categories/appsource/">appsource<span class="count">2</span></a>
<li>
<a href="https://blog.kine.cz/categories/nuget/">nuget<span class="count">2</span></a>
<li>
<a href="https://blog.kine.cz/categories/administration/">administration<span class="count">1</span></a>
<li>
<a href="https://blog.kine.cz/categories/azure/">azure<span class="count">1</span></a>
<li>
<a href="https://blog.kine.cz/categories/general/">general<span class="count">1</span></a>
<li>
<a href="https://blog.kine.cz/categories/infrastructure/">infrastructure<span class="count">1</span></a>
<li>
<a href="https://blog.kine.cz/categories/nvrappdevops/">nvrappdevops<span class="count">1</span></a>
<li>
<a href="https://blog.kine.cz/categories/onprem/">onprem<span class="count">1</span></a>
<li>
<a href="https://blog.kine.cz/categories/powershell/">powershell<span class="count">1</span></a>
</li>
</ul>
</section>
<section id="mini-bio">
<header>
<h1>About</h1>
</header>
<p>I have more than 35 years of experience with SW development and everything around IT. I have got my first MVP award in 2005.</p>
<footer>
<a href="https://blog.kine.cz/about" class="button">Learn More</a>
</footer>
</section>
</section>
<footer id="site-footer">
<ul class="socnet-icons">
<li><a href="https://blog.kine.cz/index.xml" type="application/rss+xml" target="_blank" title="RSS" class="fas fa-rss"></a></li>
<li><a href="//github.com/kine" target="_blank" rel="noopener" title="GitHub" class="fab fa-github"></a></li>
<li><a href="//www.linkedin.com/in/kamil-sacek-8830661" target="_blank" rel="noopener" title="LinkedIn" class="fab fa-linkedin"></a></li>
<li><a href="//twitter.com/MVPKine" target="_blank" rel="noopener" title="Twitter" class="fab fa-twitter"></a></li>
<li><a href="//www.buymeacoffee.com/kine" target="_blank" rel="noopener" title="BuyMeACoffee" class="fas fa-coffee"></a></li>
<li><a href="mailto:[email protected]" target="_blank" title="Email" class="far fa-envelope"></a></li>
</ul>
<p class="copyright">
© 2024 Kine's info
<br>
Theme: <a href='https://github.com/pacollins/hugo-future-imperfect-slim' target='_blank' rel='noopener'>Hugo Future Imperfect Slim</a><br>A <a href='https://html5up.net/future-imperfect' target='_blank' rel='noopener'>HTML5 UP port</a> | Powered by <a href='https://gohugo.io/' title='0.101.0' target='_blank' rel='noopener'>Hugo</a>
</p>
</footer>
<a id="back-to-top" href="#" class="fas fa-arrow-up fa-2x"></a>
<script src="https://blog.kine.cz/js/highlight.js"></script>