User Israr Khan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T04:25:00Zhttp://stackoverflow.com/feeds/user/37280/http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/286563/microsoft-ax-and-business-connector-enterprise-portal-application-integration0Microsoft AX and Business Connector / Enterprise Portal / Application Integration Framework Israr Khan2008-11-13T08:50:27Z2009-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-ispostback2DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)Israr Khan2008-11-23T17:21:11Z2009-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();
// <- 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#7617362Answer by Israr Khan for What is the most designer friendly web framework?Israr Khan2009-04-17T18:55:15Z2009-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#7492941Answer by Israr Khan for How can I assign an int to a char in C#?Israr Khan2009-04-14T20:40:42Z2009-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#7398600Answer by Israr Khan for AX / Axapta: Retrive Custom fields via SQLIsrar Khan2009-04-11T10:50:44Z2009-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-sql0AX / Axapta: Retrive Custom fields via SQLIsrar Khan2008-11-15T20:42:10Z2009-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#3268581Answer by Israr Khan for MVC.NET for the desktopIsrar Khan2008-11-28T22:55:59Z2008-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-o0Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)Israr Khan2008-11-24T09:21:47Z2008-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&hl=no&ct=clnk&cd=11&gl=no&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&hl=no&ct=clnk&cd=11&gl=no&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#3170921Answer by Israr Khan for Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)Israr Khan2008-11-25T11:41:38Z2008-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#2989631Answer by Israr Khan for Things to keep in mind while creating a ASP.NET Mobile Web ApplicationIsrar Khan2008-11-18T14:59:09Z2008-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#2989460Answer by Israr Khan for Connecting to POP3 serversIsrar Khan2008-11-18T14:50:38Z2008-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-1Answer by Israr Khan for Split string containing command-line parameters into string[] in C#Israr Khan2008-11-18T14:20:17Z2008-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 <"> is present with <|> (or another "safe" character, but make sure that it only replaces <">, and not <""></p>
<p>After iterating the string, I would do as previously posted, split the string, but now on the character <|></p>
<p>EDIT:
For readably, I'ved added , i.e " is written as <">, 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-1Answer by Israr Khan for What, in your opinion, is the best-looking webapp?Israr Khan2008-11-17T19:31:43Z2008-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#2943170Answer by Israr Khan for ASP.NET Ajax ErrorSys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the serverIsrar Khan2008-11-16T20:07:12Z2008-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#2923415Answer by Israr Khan for Which are the most important Math skills in order to better understand cryptography?Israr Khan2008-11-15T09:26:25Z2008-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#28970021Answer by Israr Khan for What's the best open source game ever?Israr Khan2008-11-14T10:23:45Z2008-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#2896770Answer by Israr Khan for when running apt-get remove apache i get an errorIsrar Khan2008-11-14T10:05:23Z2008-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#2896641Answer by Israr Khan for XMLHTTP POST request and System.ReflectionIsrar Khan2008-11-14T09:57:57Z2008-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/763019/what-are-your-favorite-database-wrappers-in-c/763061#763061Comment by Israr Khan on What are your favorite database wrappers in C# ?Israr Khan2009-04-18T07:41:28Z2009-04-18T07:41:28ZI agree - ORM is my choice of database "wrapper" :) As far as I know, linqTosql is "dead", and will be put to sleep by MS soon, while entity framework is going to be their "get it right" in ORM. http://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#761736Comment by Israr Khan on What is the most designer friendly web framework?Israr Khan2009-04-18T07:38:19Z2009-04-18T07:38:19ZAlso - when working with code-behind/UI_files. I think(as far as I can "feel" 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-taghttp://stackoverflow.com/questions/761436/what-is-the-most-designer-friendly-web-framework/761736#761736Comment by Israr Khan on What is the most designer friendly web framework?Israr Khan2009-04-18T07:34:42Z2009-04-18T07:34:42ZSo.. even thoug it's the "same" - 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#761736Comment by Israr Khan on What is the most designer friendly web framework?Israr Khan2009-04-18T07:32:56Z2009-04-18T07:32:56ZI 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 <asp:XXXX> (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#749294Comment by Israr Khan on How can I assign an int to a char in C#?Israr Khan2009-04-14T20:53:36Z2009-04-14T20:53:36ZTake 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#326860Comment by Israr Khan on MVC.NET for the desktopIsrar Khan2008-11-28T23:09:10Z2008-11-28T23:09:10Z(note to others: at the time the comment was posted - Brian Genisio had "666" points ;) http://stackoverflow.com/questions/326839/mvc-net-for-the-desktop/326860#326860Comment by Israr Khan on MVC.NET for the desktopIsrar Khan2008-11-28T23:08:30Z2008-11-28T23:08:30ZOhh... Nice points Brian... Genisio... From the word "Genesis" ? ;) http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234095#234095Comment by Israr Khan on What is your best programmer joke?Israr Khan2008-11-28T13:08:16Z2008-11-28T13:08:16ZHaha! Priceless ;)
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234138#234138Comment by Israr Khan on What is your best programmer joke?Israr Khan2008-11-28T13:01:46Z2008-11-28T13:01:46ZHAHAHAHAHAHAH! Made me laugh ;) http://stackoverflow.com/questions/324861/ado-net-entity-framework-to-denormalize-a-databaseComment by Israr Khan on ADO.Net Entity Framework to DeNormalize a DatabaseIsrar Khan2008-11-28T00:36:20Z2008-11-28T00:36:20ZYou 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#312832Comment by Israr Khan on DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)Israr Khan2008-11-24T07:19:55Z2008-11-24T07:19:55ZBut 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-ispostbackComment by Israr Khan on DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)Israr Khan2008-11-23T20:36:24Z2008-11-23T20:36:24ZWell, to be honest, I think I'm going to give up the "not clutter the html"-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#312743Comment by Israr Khan on DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)Israr Khan2008-11-23T17:30:41Z2008-11-23T17:30:41ZAh - thanks ;) I'll try that :)http://stackoverflow.com/questions/305053/programmatically-reject-a-call-on-the-blackberry/306571#306571Comment by Israr Khan on Programmatically reject a call on the BlackBerryIsrar Khan2008-11-22T08:59:00Z2008-11-22T08:59:00ZSounds like a "good" hack :) Just curious - don't do Blackberry since I develop on WM - but, do you have to make sure you send the "hangup-button" to the correct window, and does this not matteR?http://stackoverflow.com/questions/298830/split-string-containing-command-line-parameters-into-string-in-c/298990#298990Comment by Israr Khan on Split string containing command-line parameters into string[] in C#Israr Khan2008-11-19T08:57:26Z2008-11-19T08:57:26ZNice one Earwicker :) Anton: This is the solution I was trying to describe to you in my earlier post, but Earwicker did a much better job in writitng it down ;) And also extened it a lot ;)