Archive for February, 2008
Makale 4: Sunucu Uygulamalarının Çalışma Zamanında Yapılandırılması
Feb 29th
Daha önceki remoting uygulamaları makalelerimizden sonra sonra bir Remoting server’ının programatik olarak nasıl yapılandırılabileceğini görelim.
İlk olarak Remoting server’ımız üzerinde kullanılacak ve aşağıda listelenen method’lara sahip olan object’imizi (remotable type) oluşturalım.
- Default constructer. Console object’ine object’in construct olduğuna dair mesaj yazacaktır.
- Finalizer. Console object’ine object’in descruct edildiğine dair mesaj yazacaktır.
- GetExecutionCount. Hiçbir parametresi bulunmamaktadır ve executionCount değişkenini her seferinde 1 değer arttırarak geri döndürmekle görevlidir.
Listelenen method’lara göre kodumuz aşağıdaki gibi olmalıdır.
MyRemotableObject.cs
using System;
namespace ConfigSerAppProg.RemObjects
{
public class MyRemoteObject : MarshalByRefObject
{
int executionCount = 0;
// Constructer
public MyRemoteObject()
{
executionCount = 0;
Console.WriteLine("MyRemoteObject has been constructed...");
}
// Destructer
~MyRemoteObject()
{
Console.WriteLine("MyRemoteObject has been destructed...");
}
public int GetExecutionCount()
{
executionCount++;
return executionCount;
}
}
}
NOT
Oluşturacağımız tüm kodlar farklı Visual Studio projeleri içerisinde oluşturulmalıdır. Örneğin Oluşturduğumuz MyRemotableObject class’ı ConfigSerAppProg.RemObjects projesi içerisinde ConfigSerAppProg.RemObjects namespace’i ile tanımlanmıştır. Dolayısı ile birazdan ConfigSerAppProgrammatic ismiyle oluşturacağımız Remoting server’ı projemizde bu proje tarafından oluşturulacak olan assembly’leri Add Reference menüsü aracılığı ile eklememiz gerekmektedir.
Şimdi MyRemotableObject olarak isimlendirdiğimiz object’i sunacak olan Remoting server’ımızı yazalım.
RemotingServer.cs
using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using ConfigSerAppProg.RemObjects;
namespace ConfigSerAppProgrammatic
{
public class RemotingServer
{
static void Main(string[] args)
{
IDictionary channelProperties = new Hashtable();
channelProperties.Add("name", "MyTcpChannelName");
channelProperties.Add("port", "1234");
channelProperties.Add("priority", "1");
TcpChannel tcpChannel = new TcpChannel(channelProperties, new SoapClientFormatterSinkProvider(), new SoapServerFormatterSinkProvider());
ChannelServices.RegisterChannel(tcpChannel, false);
RemotingConfiguration.RegisterWellKnownServiceType(typeof(MyRemoteObject), "MyRemoteObject.rem", WellKnownObjectMode.Singleton);
string[] urls = tcpChannel.GetUrlsForUri("MyRemoteObject.rem");
string objectUrl = urls[0];
string objectUri = null;
string channelUri = tcpChannel.Parse(objectUrl, out objectUri);
Console.WriteLine("The URL for the object is {0}.", objectUrl);
Console.WriteLine("The URI for the object is {0}.", objectUri);
Console.WriteLine("The URI for the channel is {0}.", channelUri);
Console.WriteLine("Remoting server is now listening...");
Console.WriteLine("Press Enter to exit.");
Console.ReadLine();
}
}
}
Yazmış olduğumuz kodları sırasıyla şu şekilde açıklayalım.
- TcpChannel class’ının parametre olarak alacağı IDictionary tipindeki collection object’imizi oluşturduk ve bu collection’a channel’ın ismi olan “name” değerini, channel’ın üzerinde çalışacağı port olan “port” değerini ve birden fazla channel register edilmesi durumunda channel’ların öncelik sırasını belirleyen “priority” değerlerini tanımladık.
- TcpChannel tipindeki tcpChannel değişkenimizi create ettik ve seçmiş olduğumuz channel tipinin TCP olmasına rağmen biz formatter olarak Soap kullanacağımızı belirttik.
- tcpChannel değişkeni üzerinde tuttuğumuz channel’ımızı register ettik.
- Yapmış olduğumuz Remoting Configuration’ınını uygulamamız üzerinde register ettik. Bu işlem sırasında remotable type’ımızın Singleton modunda çalışacağını belirttik.
- Servisimiz ile ilgili URL ve URI bilgilerini sadece bilgi edinmek amacıyla ekrana yazdırdık.
Visual Studio üzerinde uygulamayı çalıştırdığımızda karşımıza aşağıdaki ekran gelir:
UYARI
Ekran görüntüsü içerisinde görünen IP adresi bilgisayarınızın network konfigürasyonuna göre farklılık gösterebilir.
RemotingServer class’ı içerisinde kullandığımız bazı method’lar ve görevleri aşağıdaki gibidir.
| Method
|
Görev |
| ChannelServices.RegisterChannel | Uygulama içerisinde belirlediğimiz channel’ın register edilmesini sağlar. Bu channel geliştirilen uygulamaya göre client ve ya server görevi görecek bir channel olabilir. |
| RemotingConfiguration.RegisterWellKnownServiceType | Uygulamayı geliştirmeden önce geliştirilen remotable type’ın (ör: MyRemotableType) Remoting server’ı üzerinde register edilmesini sağlar. Remotably object’lerin URI’ları method’un 2. parametresinde verilen isme göre belirlenecektir. |
| tcpChannel.GetUrlsForUri | Verilen isme göre sistemin network ayarlarını algılayıp URI bilgilerini vermek için kullanılabilir. Normal olarak Remoting server’ının çalışması ile görevli değildir. Yalnızca bilgi amaçlı gösterilmiştir. |
| tcpChannel.Parse | Verilen URL’i üzerinden channel URI’ını oluşturarak geri döndürür. Ayrıca ikinci parametresi ile “out” olarak object’in URI’ını döndürür. |
HTML 5 Draft
Feb 25th
We have been using HTML 4.01 and XHTML 1.0 for a long time. And the draft of HTML 5 was published a month ago. There are several new tags that I suppose you will like. For example <input type="number" /> will show up an input control that your visitor may only enter some numeric value. That sounds really cool! You may read a short list of changes/improvements below but that is not the complete list for sure.
The following elements have been introduced for better structure:
sectionrepresents a generic document or application section. It can be used together withh1-h6to indicate the document structure.
articlerepresents an independent piece of content of a document, such as a blog entry or newspaper article.
asiderepresents a piece of content that is only slightly related to the rest of the page.
headerrepresents the header of a section.
footerrepresents a footer for a section and can contain information about the author, copyright information, et cetera.
navrepresents a section of the document intended for navigation.
dialogcan be used to mark up a conversation like this:<dialog> <dt> Costello <dd> Look, you gotta first baseman? <dt> Abbott <dd> Certainly. <dt> Costello <dd> Who's playing first? <dt> Abbott <dd> That's right. <dt> Costello <dd> When you pay off the first baseman every month, who gets the money? <dt> Abbott <dd> Every dollar of it. </dialog>
figurecan be used to associate a caption together with some embedded content, such as a graphic or video:<figure> <video src=ogg>…</video> <legend>Example</legend> </figure>Then there are several other new elements:
audioandvideofor multimedia content. Both provide an API so application authors can script their own user interface, but there is also a way to trigger a user interface provided by the user agent.sourceelements are used together with these elements if there are multiple streams available of different types.
embedis used for plugin content.
mrepresents a run of marked text.
meterrepresents a measurement, such as disk usage.
timerepresents a date and/or time.
canvasis used for rendering dynamic bitmap graphics on the fly, such as graphs, games, et cetera.
commandrepresents a command the user can invoke.
datagridrepresents an interactive representation of a tree list or tabular data.
detailsrepresents additional information or controls which the user can obtain on demand.
datalisttogether with the a newlistattribute forinputis used to make comboboxes:<input list=browsers> <datalist id=browsers> <option value="Safari"> <option value="Internet Explorer"> <option value="Opera"> <option value="Firefox"> </datalist>The
datatemplate,rule, andnestelements provide a templating mechanism for HTML.
event-sourceis used to "catch" server sent events.
outputrepresents some type of output, such as from a calculation done through scripting.
progressrepresents a completion of a task, such as downloading or when performing a series of expensive operations.The
inputelement’stypeattribute now has the following new values:
datetimedatetime-localdatemonthweektimenumberrangeurlThe idea of these new types is that the user agent can provide the user interface, such as a calendar date picker or integration with the user’s address book and submit a defined format to the server. It gives the user a better experience as his input is checked before sending it to the server meaning there is less time to wait for feedback.
And of course there are new attributes and changes within the currently existing attributes.
HTML 5 has introduced several new attributes to various elements that were already part of HTML 4:
The
aandareaelements now have amediaattribute for consistency with thelinkelement. It is purely advisory.The
aandareaelements have a new attribute calledpingthat specifies a space separated list of URIs which have to be pinged when the hyperlink is followed. Currently user tracking is mostly done through redirects. This attribute allows the user agent to inform users which URIs are going to be pinged as well as giving privacy-conscious users a way to turn it off.The
areaelement, for consistency, now has thehreflangandrelattributes.The
baseelement can now have atargetattribute as well mainly for consistency with theaelement and because it was already widely supported. Also, thetargetattribute for theaandareaelements is no longer deprecated, as it is useful in Web applications, for example in conjunction withiframe.The
valueattribute for thelielement is no longer deprecated as it is not presentational. The same goes for thestartattribute of theolelement.The
metaelement has acharsetattribute now as this was already supported and provides a nicer way to specify the character encoding for the document.A new
autofocusattribute can be specified on theinput(except when thetypeattribute ishidden),select,textareaandbuttonelements. It provides a declarative way to focus a form control during page load. Using this feature should enhance the user experience as the user can turn it off if he does not like it, for instance.The new
formattribute forinput,output,select,textarea,buttonandfieldsetelements allows for controls to be associated with more than a single form.The
input,buttonandformelements have a newreplaceattribute which affects what will be done with the document after a form has been submitted.The
formandselectelements (as well as thedatalistelement) have adataattribute that allows for automatically prefilling of form controls, in case ofform, or the form control, in case ofselectanddatalist, with data from the server.The new
requiredattribute applies toinput(except when thetypeattribute ishidden,imageor some button type such assubmit) andtextarea. It indicates that the user has to fill in a value in order to submit the form.The
inputandtextareaelements have a new attribute calledinputmodewhich gives a hint to the user interface as to what kind of input is expected.You can now disable an entire
fieldsetby using thedisabledattribute on it. This was not possible before.The
inputelement has several new attributes to specify constraints:autocomplete,min,max,patternandstep. As mentioned before it also has a newlistattribute which can be used together with thedatalistandselectelement.
inputandbuttonalso have a newtemplateattribute which can be used for repetition templates.The
menuelement has three new attributes:type,labelandautosubmit. They allow the element to transform into a menu as found in typical user interfaces as well as providing for context menus in conjunction with the globalcontextmenuattribute.The
styleelement has a newscopedattribute which can be used to enable scoped style sheets. Style rules within such astyleelement only apply to the local tree.The
scriptelement has a new attribute calledasyncthat influences script loading and execution.The
htmlelement has a new attribute calledmanifestthat points to an application cache manifest used in conjunction with the API for offline Web applications.Several attributes from HTML 4 now apply to all elements. These are called global attributes:
class,dir,id,lang,tabindexandtitle.There are also several new global attributes:
The
contenteditableattribute indicates that the element is an editable area. The user can change the contents of the element and manipulate the markup. Thecontextmenuattribute can be used to point to a context menu provided by the author. Thedraggableattribute can be used together with the new drag & drop API. Theirrelevantattribute indicates that an element is not yet, or is no longer, relevant. </LI>The following are the attributes for the repetition model. These are global attributes and as such may be used on all HTML elements, or on any element in any other namespace, with the attributes being in the
http://www.w3.org/1999/xhtmlnamespace.:
repeatrepeat-startrepeat-minrepeat-maxHTML 5 also makes all event handler attributes from HTML 4 that take the form
onevent-nameglobal attributes and adds several new event handler attributes for new events it defines, such as theonmessageattribute which can be used together with the newevent-sourceelement and the cross-document messaging API.
If you are interested of reading the differences between HTML 4.01 and HTML 5, you may visit http://www.w3.org/TR/html5-diff/.
Makale 3: Remoting Formatter’ları
Feb 17th
Remoting Formatter’ları
Channel’lar üzerinden gönderilecek ve alınacak olan bilgilerin tamamı, öncesinde serializa edilmeli ve ondan sonra ilgili channel kullanılarak sistemler arasında geçiş yapmalıdır. Bu işlem sırasında hem Remoting server’ı hem de Remoting client’ı aynı sistem üzerinde çalışacak şekilde configure edilmelidir. Aksi durumda server ya da client’ın gönderdiği herhangi bir mesaj, diğer taraf için anlamsız bir paket niteliği taşıyacaktır.
.NET Framework’ün içerisinde kullanılabilecek iki adet formatter bulunmaktadır. Bunlar System.Runtime.Serialization.Formatters.Binary namespace’i içerisinde bulunan BinaryFormatter ve System.Runtime.Serialization.Formatters.Soap namespace’i içerisinde bulunan SoapFormatter class’larıdır. Remoting mimarisi uygulama geliştiricilerin kendi formatter’larını geliştirmelerine izin vermektedir. Bunun için yazılım geliştiren kişilerin System.Runtime.Remoting.Messaging namespace’i içerisinde bulunan IRemotingFormatter interface’ini implement edilmesi yeterlidir.
NOT
System.Runtime.Remoting.Messaging.IRemotingFormatter interface’i System.Runtime.Serialization.IFormatter interface’ini kendi içerisinde implement etmektedir. Formatter’ların yapacağı işin büyük bir kısmı System.Runtime.Serialization.IFormatter interface’i içerisinde tanımlı olan method’ların implementasyonunda belirlenecektir.
Genel olarak avantajlarından ve dezavantajlarından bahsedeceğimiz SoapFormatter ve BinaryFormatter’ların Tcp, Http ya da Ipc channel’ları üzerinde kullanım kısıtlamaları bulunmamaktadır. Yani uygun formatter’a ve uygun channel’a karar verildikten sonra hem SoapFormatter hem de BinaryFormatter istenilen channel’la kullanılabilir. Ayrıca yukarıda anlatılmış olduğu gibi IRemotingFormatter interface’ini implement eden herhangi bir custom formatter da Tcp, Http ya da Ipc channel farkı gözetmeksizin istenilen channel üzerinde kullanılabilir.
SoapFormatter
SOAP kelimesi Simple Object Access Protocol’ün kısaltılmış halidir. Server ve client arasındaki iletişimin XML altyapısı kullanılarak sağlanması mantığına dayanır. Farklı yapılar ve ya farklı programlama dillerinin XML konusunda verdiği desteğe dayanarak birbirlerinden farklı şekillerde çalışan sistemlerin iletişimi için kullanılabilir.. SOAP kullanımında gönderilen paketler içerisinde hem paketin XML dosyasından nasıl deserialize edileceği bilgisi hem de paketin içeriği gönderildiğinden paket boyutları beklenen boyutların üstüne çıkabilir. Bu da SoapFormatter’ın sistemi normalinden daha fazla yorması demektir.
UYARI
SoapFormatter üzerinden sunulacak method’lar yalnızca public olarak tanımlanmış method’lar olabilir.
BinaryFormatter
Binary formatting kullanılması durumunda paketler SOAP formatting’e göre daha ufak boyutlara sahip olacaktır. Bu network trafiği ve hız açısından büyük bir avantaj olarak görülebilir. BinaryFormatter’ın en büyük dezavantajı yalnızca .NET ile geliştirilen uygulamalar tarafından kullanılabilir olmasıdır. Fakat performansın önemli olduğu ve hem server’ın hem de client’ın .NET ile geliştirilmesi durumunda BinaryFormatter SoapFormatter’tan daha performanslı çalışacak ve yalnızca .NET ile geliştirilen uygulamalar arasında çalışabiliyor olmasının getirdiği dezavantajlar sistem açısından bir önem teşkil etmeyecektir.
NOT
BinaryFormatter üzerinden sunulacak method’lar hem public hem de private olarak tanımlanmış method’lar olabilir.
Visual Studio 2008 and Visual Web Developer Hotfix Released
Feb 12th
I have been testing this hotfix for a while and it is publicly available now. If you are using either Visual Studio 2008 or Visual Web Developer (or both) to develop your web applications, I extremely suggest you downloading and installing this hotfix.
A quote from Visual Web Developer Team’s blog about the fix list is below.
HTML Source view performance
Source editor freezes for a few seconds when typing in a page with a custom control that has more than two levels of sub-properties. “View Code” right-click context menu command takes a long time to appear with web application projects. Visual Studio has very slow behavior when opening large HTML documents. Visual Studio has responsiveness issues when working with big HTML files with certain markup. The Tab/Shift-Tab (Indent/Un-indent) operation is slow with large HTML selections.
Design view performance
Slow typing in design view with certain page markup configurations.
HTML editing
Quotes are not inserted after Class or CssClass attribute even when the option is enabled. Visual Studio crashes when ServiceReference element points back to the current web page.
JavaScript editing
When opening a JavaScript file, colorization of the client script is sometimes delayed several seconds. JavaScript Intellisense does not work if an empty string property is encountered before the current line of editing.
Web Site build performance
Build is very slow when Bin folder contains large number of assemblies and .refresh files with web-site projects.
Click here to download the hotfix.
Click here to read more about installing and uninstalling the hotfix.
Makale 2: Sunucu Uygulaması Kanalları
Feb 8th
Remoting Channel’ları
Remoting server’ları ve Remoting client’ları karşılıklı olarak farklı protokoller üzerinde haberleşme şansına sahiptir ve bu protokoller Remoting kapsamında “channel” olarak isimlendirilmektedir. Channel’lar ile ilgili tüm class ve interface’ler System.Runtime.Remoting.Channels namespace’i içerisinde bulunmaktadır.
.NET Framework içerisinde, hazır olarak kullanılabilir halde üç tipte channel bulunmaktadır. Bu channel’lar şu şekildedir;
- System.Runtime.Remoting.Channels.Http namespace’i içerisinde yer alan HTTP (Hyper Text Transfer Protocol) protokolünü kullanan channel’lar.
- System.Runtime.Remoting.Channels.Tcp namespace’i içerisinde yer alan TCP (Transmission Control Protocol) protokolünü kullanan channel’lar.
- System.Runtime.Remoting.Channels.Ipc namespace’i içerisinde yer alan IPC (Interprocess Communication) protokolünü kullanan channel’lar.
Channel’lar üç farklı tipteyken, protokollerin içerisinde bulunan channel sayısının üçten fazla olmasının sebebi Remoting server’larının ve Remoting Client’larının farklı channel’lardan türetiliyor olmalarıdır.
Daha detaya inersek, Remoting server’ları System.Runtime.Remoting.Channels.IChannelReceiver interface’ini implement eden herhangi bir class olmalıyken, Remoting client’ları da System.Runtime.Remoting.Channels.IChannelSender interface’ini implement eden herhangi bir class olmalıdır. Bununla birlikte System.Runtime.Remoting.Channels.IChannelReceiver ve System.Runtime.Remoting.Channels.IChannelSender interface’lerinin her ikisini birden implement ederek hem Remoting client’ı üzerinde hem de Remoting server’ı üzerinde çalışabilecek bir channel oluşturulabilir.
Verdiğimiz detaylardan yola çıkarak System.Runtime.Remoting.Channels.Http, System.Runtime.Remoting.Channels.Tcp ve System.Runtime.Remoting.Channels.Ipc namespace’leri içerisinde bulunan ve channel olarak kullanabileceğimiz class’ları görelim.
| Class | Açıklama | Implements | Channel Type
|
|
System.Runtime.Remoting.Channels.Http namespace’i içerisinde bulunan channel’lar: |
|||
| HttpClientChannel | Yalnızca Remoting client’ları kullanabilir ve işlemlerini HTTP protokolünü kullanarak gönderir. | IChannelSender | HTTP |
| HttpServerChannel | Yalnızca Remoting server’ları kullanabilir ve işlemlerini HTTP protokolünü kullanarak cevaplar. | IChannelReceiver | HTTP |
| HttpChannel | Hem Remoting server’ları hem de Remoting client’ları tarafından kullanılabilir ve işlemlerinin tamamını HTTP protokolünü kullanarak gerçekleştirir. | IChannelSender, IChannelReceiver | HTTP |
|
System.Runtime.Remoting.Channels.Tcp namespace’i içerisinde bulunan channel’lar: |
|||
| TcpClientChannel | Yalnızca Remoting client’ları kullanabilir ve işlemlerini TCP protokolünü kullanarak gönderir. | IChannelSender | TCP |
| TcpServerChannel | Yalnızca Remoting server’ları kullanabilir ve işlemlerini TCP protokolünü kullanarak cevaplar. | IChannelReceiver | TCP |
| TcpChannel | Hem Remoting server’ları hem de Remoting client’ları tarafından kullanılabilir ve işlemlerinin tamamını TCP protokolünü kullanarak gerçekleştirir. | IChannelSender, IChannelReceiver | TCP |
|
System.Runtime.Remoting.Channels.Ipc namespace’i içerisinde bulunan channel’lar: |
|||
| IpcClientChannel | Yalnızca Remoting client’ları kullanabilir ve işlemlerini IPC protokolünü kullanarak gönderir. | IChannelSender | IPC |
| IpcServerChannel | Yalnızca Remoting server’ları kullanabilir ve işlemlerini IPC protokolünü kullanarak cevaplar. | IChannelReceiver | IPC |
| IpcChannel | Hem Remoting server’ları hem de Remoting client’ları tarafından kullanılabilir ve işlemlerinin tamamını IPC protokolünü kullanarak gerçekleştirir. | IChannelSender, IChannelReceiver | IPC |
Tablo 3.1.1: .NET Framework içerisinde bulunan hazır Remoting Channel’ları.
UYARI
System.Runtime.Remoting.Channels.Http, System.Runtime.Remoting.Channels.Tcp ve System.Runtime.Remoting.Channels.Ipc namespace’leri, üzerinde çalıştığınız projenizde System.Runtime.Remoting assembly’sine referans vermediğiniz sürece ulaşılamayacaktır. Bu sebeple projenizin Add Reference bölümünü kullanarak bu assembly’i reference olarak eklemeniz gerekmektedir.
Bu üç protokolün kullanım açısından çeşitli avantajlar ve dezavantajlar sunmaktadırlar. HTTP protokolü kullanılması şu avantajlar ve dezavantajları beraberinde getirmektedir;
- Remoting server’ı ve client’ları farklı lokasyonlarda, örneğin server ve client’ların birbirine LAN (Local Area Network) ile değil de Internet gibi herhangi bir WAN (Wild Area Network) ile bir ağ üzerinden bağlı olması durumunda paketlerin firewall ve ya benzeri güvenlik sistemleri tarafından engellenme riski çoğunlukla yoktur.
- HTTP protokolü üzerinde çalışacak Remoting uygulamalarının IIS gibi sunucular üzerinden çalıştırılması sağlanabilir.
- Sunucu üzerinde Windows Authentication ve ya SSL (Secure Socket Layer) kullanılması durumunda network güvenliği başka bir gereksinime ihtiyaç duyulmadan sağlanabilir.
- HTTP protokolü aynı anda çok fazla request gelmesi durumunda işlemlere geç cevap verebileceği için sistemin yoğun olduğu durumlarda yavaş çalışabilir.
- HTTP protokolü üzerinden transfer edilecek olan mesajlar ekstra header bilgilerinin yüklenmesinden dolayı yavaşlıklara sebep olabilir.
TCP protokolünün kullanılması durumunda ise şu avantaj ve dezavantajlara sahiptir;
- TCP protokolü daha alt seviye paketleri algılayabildiği için network trafiğini önemli ölçüde az kullanacaktır ve bu da sistem hızını arttıracaktır.
- Özellikle LAN üzerinde çalışan sistemlerde TCP protokolünün kullanılması tavsiye edilir.
- Firewall gibi güvenlik araçları kullanılıyorsa TCP protokolü üzerinde kullanılacak port’ların yetkilendirmeye dahil edilmesi gerekir.
- System.Security namespace’i içerisinde bulunan ilgili class’ları kullanarak özel bir güvenlik sistemi geliştirilmediği sürece herhangi bir ön güvenlik sistemine sahip değildir.
IPC protokolünün kullanılması durumunda ise şu avantaj ve dezavantajlara sahiptir;
- IPC protokolü herhangi bir network connection’ı kullanmamaktadır. Bu sebeple hem TCP hem de HTTP protokollerine göre çok daha hızlı çalışır.
- IPC protokolü sadece aynı bilgisayar üzerinde bulunan application domain’leri arasında iletişim kurulması amacıyla kullanılabilir. Bu da IPC protokolünün farklı bilgisayarlar üzerinde çalışan uygulamalar arasında iletişim kuramayacağı anlamına gelir.
UYARI
IPC protokolünü yalnızca aynı bilgisayar üzerindeki application domain’lerinin iletişimi amacıyla kullanılabilir. IPC protokolü bilgisayarınızın içerisinde yer aldığı network connection’larını kullanabilme yeteneğine sahip değildir.
MVP – MSP Training
Feb 1st
I had a chance to train some students from Microsoft Student Partners program yesterday. The training included some headlines from ASP.NET, AJAX and new features in Visual Studio 2008. The bowling party afterwards the training was fun.
Thanks Mehmet Emre from Microsoft Turkey for the opportunity.
I will attach some pictures from the bowling party once I have them.
