User Israr Khan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:07:25Z http://stackoverflow.com/feeds/user/37280 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/286563/microsoft-ax-and-business-connector-enterprise-portal-application-integration 0 Microsoft AX and Business Connector / Enterprise Portal / Application Integration Framework Israr Khan 2008-11-13T08:50:27Z 2009-11-06T08:16:25Z <p>I've been working a while with a project aiming to integrate AX with the Web.</p> <p>The company who delivered AX has chosen to use Business Connector (BC.net) directly on my side of the backend.</p> <p>I've searched a bit, and for me it looks like we must use Application Integration Framework (AIF) / Enterprise portal (EP) - this due to as I understand that the BC is not made for multi-users like on the web, but must be implemented with a session-wrapper like EP - and also it must be run on an LAN and is not capable to connect via WAN.</p> <p>Any comments about this?</p> <p>-- -EDIT- More info:</p> <p>Oh, sorry - new to stackoverflow - didn't see that you had commented my question. </p> <p>I'm doing this from scratch. The inital plan was to create a model, and send objects directly from AX via BC to my data layer, but since BC is not able to pass anything else then Axaptaobjects, we decided to serialise to XML, send as string with BC and then deserialize with my data layer.</p> <p>Now, everything works, but the stability and performance is really sucky - and I fear that the company delivering the backend (BC ->AX) is doing something <em>really</em> wrong here...</p> http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback 2 DropdownList.selectedIndex always 0 (yes, I do have !isPostBack) Israr Khan 2008-11-23T17:21:11Z 2009-08-10T12:56:46Z <p><strong>(Scroll down to bottom of post to find solution.)</strong></p> <p>Got a asp.net page which contains a Datalist. Inside this datalist, there is a template containing a dropdownlist and each time the datalist is filled with an item, a ItemCreatedCommand is called. The itemCreatedCommand is responsible for databinding the dropdownlist. </p> <p>I think the problem lies here, that I'm using ItemCreatedCommand to populate it - but the strange things is that if I choose the color "green", the page will autopostback, and I will see that the dropdown is still on the color green, but when trying to use it's SelectedIndex, I always get 0...</p> <pre><code>protected void DataListProducts_ItemCreatedCommand(object source, DataListItemEventArgs e) var itemId = (String)DataListProducts.DataKeys[e.Item.ItemIndex]; var item = itemBLL.GetFullItem(itemId); var DropDownListColor = (DropDownList)e.Item.FindControl("DropDownListColor"); //Also tried with : //if(!isPostBack) { DropDownListColor.DataSource = item.ColorList; DropDownList.Color.Databind(); // } End !isPostBack) Label1.test = DropDownListColor.SelectedIndex.toString(); // &lt;- THIS IS ALWAYS 0! *grr* </code></pre> <p>I've narrowed down the code a bit for viewing, but still you can see what I'm trying to do :) The reason for why I'm doing this, and not declaring the datasource for the colors directly i aspx-page, is that I need to run a test if(showColors), but I do not want to clutter up the html-page with code that I feel should be in the code behind-file. </p> <p>EDIT: After trying to alter SelectedIndexChange - I'm having a "logical" confusion in my head now - how am I to alter elements inside the datalist? Since, as far as I know - I do not have any way to check which of the items in the datalist this particular dropdownlist belongs to... Or? I'm going to try out a few ways and see what I end up with ;) But do please post your thoughts on this question :) </p> <p><strong>SOLUTION:</strong> </p> <p>Either bubble the event to ItemCommand, or Handle the event, get the senders parent(which is a datalistItem and manipulate elements in there. </p> <pre><code> protected void DropDownListColor_SelectedIndexChanged(object sender, EventArgs e) { DropDownList dropDownListColor = (DropDownList)sender; DataListItem dataListItem = (DataListItem)dropDownListColor.Parent; var item = items[dataListItem.ItemIndex]; var color = item.ItemColor[dropDownListColor.SelectedIndex]; var LabelPrice = (Label)dataListItem.FindControl("LabelPrice"); LabelPrice.Text = color.Price; } </code></pre> http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#761736 2 Answer by Israr Khan for What is the most designer friendly web framework? Israr Khan 2009-04-17T18:55:15Z 2009-04-17T18:55:15Z <p>To be honest - I still prefer ASP.net, and with asp.net AJAX extensions it is (from my point of view) still the easiest, most versatile and best framework for creating web-applications. </p> <p>I've tried java, jsf, gtk, spring, asp.net mvc and many other - but still. The ability to create good web pages/and application with pure asp.net still beats the others. Why? Asp.net is so well-tested... Things just work... Unlike many others where you keep hitting your head against the wall due to some stupid bug, or feature no possible to implement. </p> <p>When it comes to dividing the UI, business logic and data logic - I still would say unless you need a 100% divided UI as view(MVC-pattern), asp.net is still the right choice. The dividing of code-behind and UI is good enough for most uses. People tend to yell out that MVC is much better when it comes to testing... Maybe yes... But untill now I've managed to do unit-testing without complications just as well with MVC and without MVC. It's more like instead of trying to blame it on the framework/pattern, try asking "Are we testing the right stuff - the <em>RIGHT</em> way...?" Set-up a good 3-layer webapplication, and you'll be creating good, easy to code web pages. </p> <p>A note here: I usually receive PSD-files from my clients, which I ship to India for slicing and receive static HTML-pages. After a short modification, I'm up and running with my coded solution on the new design... Easy as that! </p> <p>Now... On the other hand, it might just be because I know ASP.net the most ;)</p> http://stackoverflow.com/questions/749273/how-can-i-assign-an-int-to-a-char-in-c/749294#749294 1 Answer by Israr Khan for How can I assign an int to a char in C#? Israr Khan 2009-04-14T20:40:42Z 2009-04-14T23:49:12Z <p>Have you tried <code>Convert.ToChar(1)</code>?</p> <pre><code>public static readonly char MYVAL = Convert.ToChar(1); </code></pre> http://stackoverflow.com/questions/293029/ax-axapta-retrive-custom-fields-via-sql/739860#739860 0 Answer by Israr Khan for AX / Axapta: Retrive Custom fields via SQL Israr Khan 2009-04-11T10:50:44Z 2009-04-11T10:50:44Z <p>Sorry for bringing up a dead corpse, but I found out what was going on:</p> <p>The company I did this project for got two SQL-server, one is SRVSQL, and another one named SQLSRV ;) Hehe!</p> <p>So all the custom fields were stored in tables in SRVSQL, while I was connected to SQLSRV ;) </p> <p>(Blame the network admin ;) </p> http://stackoverflow.com/questions/293029/ax-axapta-retrive-custom-fields-via-sql 0 AX / Axapta: Retrive Custom fields via SQL Israr Khan 2008-11-15T20:42:10Z 2009-04-11T10:50:44Z <p>I'm creating a rather "dirty" business connector of my own here, and I'm having trouble finding those "custom fields" that have been created. </p> <p>They show up in AX - but in the SQL-database, they are not mentioned at all... I have a hunch that all custom fields are stored somewhere else in the database, so that the original state of the tables does not get alterd - but where? </p> http://stackoverflow.com/questions/326839/mvc-net-for-the-desktop/326858#326858 1 Answer by Israr Khan for MVC.NET for the desktop Israr Khan 2008-11-28T22:55:59Z 2008-11-28T23:07:43Z <p>I've always thought of the term MVC as the same as a n-layer application - so correct me if I'm wrong here folks. </p> <p>When i develope, I always(unless other instructed) use the following model/structure, also in applications:</p> <p>GUI(Web, Winform, whatever) -> Business logic -> Data layer -> And also with an underlying "Model"</p> <p>... Which is a sort of MVC - So yes, it is usefull for desktop apps also. The main advantage with this, is that you can develope web, win and mobile(++) applications based on the same code.</p> <p>Another thing that could be done, is to create the data/businesslayers as web-services...</p> <p>I think this aproach would qualify as SOA. </p> <p>EDIT: As a note, the four levels of applications are created as seperate projects - and then used as adding reference to either the project, or the DLL, or from the GAC(or wherever you like.....) :) Thus, the need for a directory structure is not needed.</p> http://stackoverflow.com/questions/313735/access-dropdownlist-selectedindex-in-datalist-itemcreatedcommand-eventbubbling-o 0 Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions) Israr Khan 2008-11-24T09:21:47Z 2008-11-25T11:41:38Z <p>How am I to bubble the event caused when itemIndex is changed in a dropdownlist - so that I can use the itemindex-value in my ItemCreatedCommand-function?</p> <p>A solution is found at:</p> <p><a href="http://209.85.129.132/search?q=cache:cYDzeE8Swf0J:authors.aspalliance.com/hmcheung/Articles/030331/Default.aspx+dropdownlist+datalist+selectedindex&amp;hl=no&amp;ct=clnk&amp;cd=11&amp;gl=no&amp;client=firefox-a" rel="nofollow">http://209.85.129.132/search?q=cache:cYDzeE8Swf0J:authors.aspalliance.com/hmcheung/Articles/030331/Default.aspx+dropdownlist+datalist+selectedindex&amp;hl=no&amp;ct=clnk&amp;cd=11&amp;gl=no&amp;client=firefox-a</a></p> <ul> <li>But this is in VB.net, and I don't "speak" VB.net well enough to replicate this to C#. </li> </ul> http://stackoverflow.com/questions/313735/access-dropdownlist-selectedindex-in-datalist-itemcreatedcommand-eventbubbling-o/317092#317092 1 Answer by Israr Khan for Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions) Israr Khan 2008-11-25T11:41:38Z 2008-11-25T11:41:38Z <p>Not possible as far as I've found out - must be bubbled up to ItemCommand, and not ItemCreated-command. Thus, leaving you with handling the event, and getting the senders.parent, which is the datalistitem. </p> http://stackoverflow.com/questions/298718/things-to-keep-in-mind-while-creating-a-asp-net-mobile-web-application/298963#298963 1 Answer by Israr Khan for Things to keep in mind while creating a ASP.NET Mobile Web Application Israr Khan 2008-11-18T14:59:09Z 2008-11-18T14:59:09Z <p>Can you add some more info? If you are developing a application for all those platforms, I would guess you are creating either some sort of web-services or just a "standard" web-application? </p> <p>If it's just a standard web-application, I think it's a bit hard to ensure a good compatibility due to the fact that javascript, which is widely used in webapplications isn't always implemented in browsers for mobile phones.... Yes, if you have Opera, and not Pocket Internet Explorer, it get's a bit better. When it comes to Blackberry I'm not quite sure how well the browser performs. </p> <p>Iphone on the other hand is probably "easy" to develop for, since it's default browser is probably good at javascript - just as Opera mini. </p> <p>Also - Other graphical issues due to the fact that many Windows Mobile devices have a reather low resolution should also be taken in consideration, but this is eventually getting better with the new devices beeing released :) (As Touch HD, Omnia, Diamond etc)</p> http://stackoverflow.com/questions/298886/connecting-to-pop3-servers/298946#298946 0 Answer by Israr Khan for Connecting to POP3 servers Israr Khan 2008-11-18T14:50:38Z 2008-11-18T14:50:38Z <p>Hi! CodeProject got a good C# tutorial on this <a href="http://www.codeproject.com/KB/IP/despop3client.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/despop3client.aspx</a> Also check out:</p> <p><a href="http://www.developerfusion.com/article/4071/how-to-pop3-in-c/" rel="nofollow">http://www.developerfusion.com/article/4071/how-to-pop3-in-c/</a></p> http://stackoverflow.com/questions/298830/split-string-containing-command-line-parameters-into-string-in-c/298852#298852 -1 Answer by Israr Khan for Split string containing command-line parameters into string[] in C# Israr Khan 2008-11-18T14:20:17Z 2008-11-18T14:20:17Z <p>Not sure if I understood you, but is the problem that the character used as splitter, is also to be found inside the text? (Except for that it is escaped with double "?)</p> <p>If so, I would create a for loop, and replace all instances where &lt;"> is present with &lt;|> (or another "safe" character, but make sure that it only replaces &lt;">, and not &lt;""></p> <p>After iterating the string, I would do as previously posted, split the string, but now on the character &lt;|></p> <p>EDIT: For readably, I'ved added , i.e " is written as &lt;">, since it became a bit unclear what I meant when I only wrote "" and ", or |</p> http://stackoverflow.com/questions/295970/what-in-your-opinion-is-the-best-looking-webapp/296601#296601 -1 Answer by Israr Khan for What, in your opinion, is the best-looking webapp? Israr Khan 2008-11-17T19:31:43Z 2008-11-17T19:31:43Z <p>Not a mac-fan, but what about <a href="http://osx.portraitofakite.com/" rel="nofollow">http://osx.portraitofakite.com/</a> ? And is this actually a web-app or not? :) </p> http://stackoverflow.com/questions/294299/asp-net-ajax-errorsys-webforms-pagerequestmanagerservererrorexception-an-unknown/294317#294317 0 Answer by Israr Khan for ASP.NET Ajax ErrorSys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server Israr Khan 2008-11-16T20:07:12Z 2008-11-16T20:07:12Z <p>Have you tried: <a href="http://forums.asp.net/t/1044963.aspx" rel="nofollow">http://forums.asp.net/t/1044963.aspx</a></p> <p>And also, try to remove the "TextBox1.Text = "aaa""-line, and see if you still are getting errors. </p> http://stackoverflow.com/questions/292338/which-are-the-most-important-math-skills-in-order-to-better-understand-cryptograp/292341#292341 5 Answer by Israr Khan for Which are the most important Math skills in order to better understand cryptography? Israr Khan 2008-11-15T09:26:25Z 2008-11-15T09:26:25Z <p>I think discrete mathematics will be a very good friend in understanding some core concepts.</p> <p>-- Oh sorry, I guess you are looking for "single subjects" ?</p> <p>Well, then the lists gets a bit more comprehensive...: Primes, permuatations, matrix, equations, and so on... But you should really take on a course of Discrete mathematics to understand a bit more....</p> http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever/289700#289700 23 Answer by Israr Khan for What's the best open source game ever? Israr Khan 2008-11-14T10:23:45Z 2008-11-14T10:23:45Z <p>What about OpenTransportTycoon? :) Come one people - that's got to be the best! </p> <p><a href="http://www.openttd.org" rel="nofollow">http://www.openttd.org</a> FTW! ;) </p> http://stackoverflow.com/questions/289634/when-running-apt-get-remove-apache-i-get-an-error/289677#289677 0 Answer by Israr Khan for when running apt-get remove apache i get an error Israr Khan 2008-11-14T10:05:23Z 2008-11-14T10:05:23Z <p>You might have tried to deinstall uncorrectly? You can try to solve this by purging with DPKG</p> <p>Try: dpkg --purge apache </p> <p>and then try to uninstall Apache. If it still does not work, purge, reinstall, and then uninstall</p> http://stackoverflow.com/questions/264022/xmlhttp-post-request-and-system-reflection/289664#289664 1 Answer by Israr Khan for XMLHTTP POST request and System.Reflection Israr Khan 2008-11-14T09:57:57Z 2008-11-14T09:57:57Z <p>Try this: <a href="http://support.instantasp.co.uk/Topic4710-31-1.aspx" rel="nofollow">http://support.instantasp.co.uk/Topic4710-31-1.aspx</a></p> http://stackoverflow.com/questions/286563/microsoft-ax-and-business-connector-enterprise-portal-application-integration/1686152#1686152 Comment by Israr Khan on Microsoft AX and Business Connector / Enterprise Portal / Application Integration Framework Israr Khan 2009-12-08T20:03:37Z 2009-12-08T20:03:37Z Also - the project ended for a while ago - and the end of the story here was that I implemented a custom database connector on top of Linq2Sql where a certain amount of business logic needed for data to come out correct was added. In addition a persistent caching was added in between the DAL and database connector. At the end we got a quite snappy solution which was custom made for this project. http://stackoverflow.com/questions/286563/microsoft-ax-and-business-connector-enterprise-portal-application-integration/1686152#1686152 Comment by Israr Khan on Microsoft AX and Business Connector / Enterprise Portal / Application Integration Framework Israr Khan 2009-12-08T20:02:07Z 2009-12-08T20:02:07Z Whoo - this is a dead corpse - but still thanks for a reply. EP adds an extra layer on top of BC providing a custom &quot;mutex&quot; - thus overcomming the issue with multiple sessions stumbling on each other causing performance issues. This was the case here when BC was exposed &quot;directly&quot; to the end user via the DAL. What could have been done was using a singleton-pattern in the DAL to ensure only one instance of the BC used(or a certain amount of BC' depending on the license) in addition to a queing system controlling the flow of request sent in to the BC-pipe via DAL. http://stackoverflow.com/questions/763019/what-are-your-favorite-database-wrappers-in-c/763061#763061 Comment by Israr Khan on What are your favorite database wrappers in C# ? Israr Khan 2009-04-18T07:41:28Z 2009-04-18T07:41:28Z I agree - ORM is my choice of database &quot;wrapper&quot; :) As far as I know, linqTosql is &quot;dead&quot;, and will be put to sleep by MS soon, while entity framework is going to be their &quot;get it right&quot; in ORM. http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#761736 Comment by Israr Khan on What is the most designer friendly web framework? Israr Khan 2009-04-18T07:38:19Z 2009-04-18T07:38:19Z Also - when working with code-behind/UI_files. I think(as far as I can &quot;feel&quot; your needs) - you do not want to clutter up the design with alot of code - right? And that's exactly what you don't have to with regular asp.net! No semi-coding or lot's of brackets here and there... It's PURE HTML, and anyone with HTML-knowledge will be able to understand the code in the UI-file. And also, for the coders, they can access all your textbox', images etc from the codebehind by using their ID-tag http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#761736 Comment by Israr Khan on What is the most designer friendly web framework? Israr Khan 2009-04-18T07:34:42Z 2009-04-18T07:34:42Z So.. even thoug it's the &quot;same&quot; - having the ability to lauch your favorite html-editor, and still be able to see images, labels(text-spans), dropdownlist etc. is genius! http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#761736 Comment by Israr Khan on What is the most designer friendly web framework? Israr Khan 2009-04-18T07:32:56Z 2009-04-18T07:32:56Z I will say it's pretty much the same - Why? Because you either have to implement(in MVC) some HTML.helper which takes feed from the controller, or(in classic ASP.net) just use a &lt;asp:XXXX&gt; (where XXX is a textbox, image etc). The last one also renders in Dreamweaver and other populare WYSIWYG-editors, while HTML-helpers do not... http://stackoverflow.com/questions/749273/how-can-i-assign-an-int-to-a-char-in-c/749294#749294 Comment by Israr Khan on How can I assign an int to a char in C#? Israr Khan 2009-04-14T20:53:36Z 2009-04-14T20:53:36Z Take a look at: <a href="http://www.eblong.com/zarf/glk/latin-table.html" rel="nofollow">eblong.com/zarf/glk/latin-table.html</a> This will show the difference between these two solutions. One will give you the actual number 1, while the other will give you char value at position 1(mine) http://stackoverflow.com/questions/326839/mvc-net-for-the-desktop/326860#326860 Comment by Israr Khan on MVC.NET for the desktop Israr Khan 2008-11-28T23:09:10Z 2008-11-28T23:09:10Z (note to others: at the time the comment was posted - Brian Genisio had &quot;666&quot; points ;) http://stackoverflow.com/questions/326839/mvc-net-for-the-desktop/326860#326860 Comment by Israr Khan on MVC.NET for the desktop Israr Khan 2008-11-28T23:08:30Z 2008-11-28T23:08:30Z Ohh... Nice points Brian... Genisio... From the word &quot;Genesis&quot; ? ;) http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234095#234095 Comment by Israr Khan on What is your best programmer joke? Israr Khan 2008-11-28T13:08:16Z 2008-11-28T13:08:16Z Haha! Priceless ;) http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234138#234138 Comment by Israr Khan on What is your best programmer joke? Israr Khan 2008-11-28T13:01:46Z 2008-11-28T13:01:46Z HAHAHAHAHAHAH! Made me laugh ;) http://stackoverflow.com/questions/324861/ado-net-entity-framework-to-denormalize-a-database Comment by Israr Khan on ADO.Net Entity Framework to DeNormalize a Database Israr Khan 2008-11-28T00:36:20Z 2008-11-28T00:36:20Z You are sure you absolute need to do this in the Entity data model? I would have solved this a with lambda-query... But this might be a performance-hit? http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback/312832#312832 Comment by Israr Khan on DropdownList.selectedIndex always 0 (yes, I do have !isPostBack) Israr Khan 2008-11-24T07:19:55Z 2008-11-24T07:19:55Z But then you would have to manually press the button in order to get the dropdownlist populated - since I actually have two dropdowns which are dependant on each other, so I first need to populate one, and based on the first one, I need to populate the second-one. http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback Comment by Israr Khan on DropdownList.selectedIndex always 0 (yes, I do have !isPostBack) Israr Khan 2008-11-23T20:36:24Z 2008-11-23T20:36:24Z Well, to be honest, I think I'm going to give up the &quot;not clutter the html&quot;-file, since I've been searching around for hours, and It seems like there is none easy implementation of what I need. But the reason was to keep a strict speration of code and design. (Now I must add a if-check in the aspx) http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback/312743#312743 Comment by Israr Khan on DropdownList.selectedIndex always 0 (yes, I do have !isPostBack) Israr Khan 2008-11-23T17:30:41Z 2008-11-23T17:30:41Z Ah - thanks ;) I'll try that :)