Mark Dykun on Development, SalesLogix and General Thoughts

.Net, Mobile and Sage SalesLogix Development

  • About

Breaking Backwards Compatibility

Posted by mdykun on January 8, 2013
Posted in: Uncategorized. Leave a Comment

is it sometimes it right to break compatibility of older versions of a software. This is a question that many of us struggle with. I am in the midst of that struggle as I push forward on the ERPLink release and determine the right answer.

Currently within the product there is a key component that serializes datasets to the database. These large blobs of xml data are not compatible with some of the forward technologies that we want to use in our different clients, let alone the format allows for a ease of getting more data then one really needs. This ultimately leads to longer the required sync times. I was never a fan of the storage of query data this way as it was pretty localized nor of the display format on the grid as it was never that clean however it was the way it was.

I am now at a point of changing that so that we can have a more structured data set. I am also going to break out child data tables from the parents allowing for at a time fetch support. This will ultimate lead to more records in the querydata table however pushing to structured data will lower the size of the data in the blobs and make it ultimate more consumable from other tools.

Ah to my tuesday …

SalesLogix and VS 2012 ASP.net 4.5

Posted by mdykun on November 14, 2012
Posted in: Uncategorized. 4 comments

I like the latest and greatest toys to get my job done. All the new shiny attracts me but from time to time I get smacked down by making a choice by jumping on the new .. one such smack down was with VS2012 and ASP.net 4.5. A strange issue was occurring while compiling the web site whereas tables with runat tags would break. With SalesLogix there are several places where this occurs mostly to allow for the setting of the visibility of the table. This is a know issue with Microsoft and a HF will be released (or so it has been told) but in the mean time working with SLX should be done inside of VS2012 without ASP.net 4.5 installed on the machine.

BITtelligent ERPLink Update

Posted by mdykun on September 18, 2012
Posted in: Uncategorized. Leave a Comment

One of the most requested features of late is web forms for ERPLink. They are a long time coming and I am happy to say great progress is being made on them. I want to give a bit of history behind the forms and then provide you with a glimpse of the new web forms that will be included in the next iteration of ERPLink from BITtelligent.

Initially the ERPLink web forms were a collaboration between a Business Partner and Sage in development. I was working on the Sage side to enable API access to the system. Progress was made and a iteration or 2 was provided out to the community to test and confirm the functionality. Not a lot of feedback came and other priorities took over in the mean time. One of the biggest problems with the web forms was the usability story. ERPLink is a pretty heavy sync engine that works in process meaning that it was quite possible that there could be lockups, timeouts and potentially crashing of the IIS process when doing a link and sync. Also most of the core functionality was provided through SalesLogix LAN client. Management and Loads would need the client to be installed even in a web only environment.

When we acquired the ERPLink and DynaLink IP some tough decisions had to be made, some I am still living with since we are not yet ready to come to market and we have done what we can to provide timely updates to the progress of the updates we are making to the platform, however the changes are quite substantial and take both time and effort (as well as $$s) to execute. We have finished principal development on DynaLink and are ready for providing CTP to customers who sign up to the BITtelligent software assurance program. It’s a great time to do so because the feedback will shape the product and the features in a meaningful way.

ERPLink however is taking a much longer time. It’s a bigger beast and we really want to make sure its completely ready for prime time. We have in the mean time built out a interim release based on the HF code release that is branded and includes some incremental fixes. This interim release will be provided to any existing ERPLink customers who sign up the the software assurance plan and they will automatically be eligible for future releases of the platform.

Now back on web forms. Though the team at Sage have created an incredible product in SalesLogix and I am very happy to work with all of them I had to make some critical decisions on how I was going to invest into ERP integration into the Web client. I mulled over the current smart part architecture and the bundler. Also how 3rd party functionality integrates and the development effort required. I also balanced it out on the product plans that Sage has publically stated for both MAS 500 (now Sage 500 ERP) and SalesLogix. Factoring in the future push for windows 8 and some more immersive UI’s and the goal of standardizing on a code base in the future for all of our integration platforms. Ultimately I had decided that for US (BITtelligent) a focus on XAML based UI technologies would give us the best in several worlds. For the following reasons we are picking Silverlight as the UI web forms technology for our ERPLink integration;

  1. Simpler packaging and distribution in .xap files where we do not need to worry about merge/upgrade issues with SalesLogix smartparts
  2. Silverlight currently has a greater published support lifespan then MAS500 (MAS 5+ years, Silverlight 10)
  3. Quicker development time. We can develop all of out UI code outside of the SalesLogix build/deploy cycle. There are robust tools and the code can be contained into 3 known tiers (UI/Services Façade/DB access)
  4. Easier to integrate both platforms in our UI. To reduce the sync cycles we will be adding dynamic queries as an option. Therefore there will be a huge win on the daily data request cycle.
  5. Though this is subjective I believe with XAML based tech we can provide a better UI with a greater ROI
  6. Shared code base. Moving forward a lot of the assets can be shared seamlessly between a win forms (WPF)/Web and future Win8RT client

and there are other reasons. Its always good to review product goals and ensure that the investments that we make coupled with the investments our customers make .. well .. make sense. Its tough to predict tomorrow but for our team we will need to focus on the consolidation of efforts and platforms and choose technologies where we can deliver the greatest value with the least effort.

This post includes some screenshots of the upcoming ERPLink web plugins. Hopefully you will like what you hear and see and I welcome your comments.

image

 

image

image

image

To Registry or Not To Registry

Posted by mdykun on September 11, 2012
Posted in: Uncategorized. Leave a Comment

Dynalink uses the registry for storing configuration details. This includes runtime settings as well as paths to any of the configuration databases located on the system. While developing the new version of the platform several things bothered me about this approach but one thing specifically with handing different versions of the product on the same machine. Our goal is to allow for side by side versions of the service application. Each capable of service a different set of databases or versions of MAS. This would work well when testing new environments or migration work.  I am not a fan of the Registry and believe that having the configuration stored in the file system local to the runtime is a much more desirable solution.

To that end the latest build now uses local configuration files to handle the runtime details of the server.

My Head Hurts

Posted by mdykun on September 11, 2012
Posted in: Uncategorized. 1 comment

No matter how much you might know about a given subject there are times when you cannot see the answer no matter how much you beat your head against the table.

Yesterday was one of those days for me and I lost several hours that I cannot get back. We are working on getting a build of ERPLink out and during some testing I could not get the .net extension part of the product to work. No matter what I tried I could not get them to work, however a set of the extensions build on my local machine worked without issue. Finally I decided to do a side by side comparison of the assemblies that worked vs. the broken ones. Everything looked the same, both having the same .Net version, references, and so on. However, after closer inspection of the Assembly info the one difference was in the assembly title, where the working set had a title and the non working was cleared. It seems that our Finalbuilder build was clearing out the title (we set other attributes like incremented version) and the title is required by SalesLogix .net Extensions. After getting the build fixed to ensure that title remained the system registered and UI elements showed up as expected in SalesLogix.

So make sure that the title attribute is set accordingly or your SalesLogix .Net Extensions will not be located by the runtime correctly.

ERPLink/Dynalink Update

Posted by mdykun on July 25, 2012
Posted in: Uncategorized. 1 comment

The march to Summit is in full force here at BITtelligent Software.

As I mentioned in a earlier blog post we are re-developing Dynalink and ERPLink synchronization platforms. Technology IP that we had acquired from Sage Software. Since the short time when the acquisition completed both products have taken on significant transformations. The initial goal was to rebrand, refactor and introduce some incremental usability updates. Primarily with the refactor of the code I wanted both products to be in place for simple management and extension of new features, as well as putting in place robust testing around the sync logic.

We literally have 2 weeks to get the products ready for demo, and potentially sale. Creation of marketing material is also happening. Potentially we will be doing a web site revamp, however that may just have to wait until after I get back from Summit.

Transitional Time at BITtelligent

Posted by mdykun on June 29, 2012
Posted in: Uncategorized. Leave a Comment

Has it ever been a rollercoaster of a ride at BITtelligent this month. So much has happened in the last month that is both exciting and scary at times. Earlier this month we acquired Dynalink and ERPLink integration platforms from Sage Software. We have been on a mad tear to get the products ready for Sale and its been an interesting run. I am pretty confident that we are close to signing off on the new Dynalink branding and UI as well as a rewrite of then communication pipeline from sockets to a more open WCF layer. Ultimately the goal is to be able to host Dynalink in cloud instances while continuing to have desktop productivity managing your jobs.

ERPLink has also been moving forward and we are seeing some great memory consumption and performance wins. There is still much to do with ERPLink on the road to Summit but I really believe that what we show will excite current customers and help bring new ones in.

During this time we also continued to support our other customers, doing several web upgrades, providing support and other custom solutions and kept the team at BITtelligent busy. Its such an interesting time and I am truly excited to see what comes next.

Mark

Posts navigation

← Older Entries
  • Apple Business Cool Stuff Development General Rants Microsoft Mobile Development Politics Sage Mobile SalesLogix SalesLogix Web Uncategorized Visual Studio
  • Categories

    • Apple
    • Business
    • Cool Stuff
    • Development
    • General Rants
    • Microsoft
    • Mobile Development
    • Politics
    • Sage Mobile
    • SalesLogix
    • SalesLogix Web
    • Uncategorized
    • Visual Studio
  • Recent Comments

    mdykun on SalesLogix and VS 2012 ASP.net…
    Sebastian Walter on SalesLogix and VS 2012 ASP.net…
    mdykun on SalesLogix and VS 2012 ASP.net…
    Sebastian Walter on SalesLogix and VS 2012 ASP.net…
    Dick Wooden on My Head Hurts
  • Archives

    • January 2013
    • November 2012
    • September 2012
    • July 2012
    • June 2012
    • February 2012
    • September 2011
    • July 2011
    • June 2011
    • May 2011
    • April 2011
    • February 2011
    • January 2011
    • December 2010
    • September 2010
    • August 2010
    • July 2010
    • June 2010
    • May 2010
    • March 2010
    • January 2010
    • December 2009
    • November 2009
    • September 2009
    • August 2009
    • June 2009
    • May 2009
    • April 2009
    • March 2009
    • February 2009
    • January 2009
    • December 2008
    • November 2008
    • October 2008
    • September 2008
    • August 2008
    • July 2008
    • June 2008
    • May 2008
    • April 2008
    • March 2008
    • February 2008
  • Marks Tweets

    • I just wrote and passed the #Xamarin developer exam ... I guess I am certifiable! 2 days ago
    • Off to Scottsdale in the Morning to see my friends at #Swiftpage and a littly family fun 2 days ago
    • Got approved for #Build2013 today. Looking forward to being In San Fran for the first time end of June. 2 days ago
    • Looking to replace #xheo as licensing solution. Any suggestions? 3 days ago
    • trying to pay for #Microsoft partner program has been pathetic.. Some reason its ok for their reps to call the company at 7pm. #Fail 4 days ago
Blog at WordPress.com. Theme: Parament by Automattic.
Mark Dykun on Development, SalesLogix and General Thoughts
Blog at WordPress.com. Theme: Parament.
Follow

Get every new post delivered to your Inbox.

Powered by WordPress.com
Cancel