Share to: share facebook share twitter share wa share telegram print page

Component Object Model

COM
Component Object Model
AbbreviationCOM
StatusIn force
First published1993; 31 years ago (1993)
Latest versionLiving standard
2021
OrganizationMicrosoft
SeriesSystem Services
Base standardsMIDL, UUID
Related standards
DomainComponent Interfacing
Websitelearn.microsoft.com/en-us/windows/win32/com/the-component-object-model

Component Object Model (COM) is a binary-interface technology for software components from Microsoft that enables using objects in a language-neutral way between different programming languages, programming contexts, processes and machines.

COM is the basis for other Microsoft domain specific component technologies including OLE, OLE Automation, ActiveX, COM+, and DCOM as well as implementations such as DirectX, Windows shell, UMDF, Windows Runtime, and Browser Helper Object.

COM enables object use with only knowing its interface; not its internal implementation. The component implementer defines interfaces that are separate from the implementation.

Support for multiple programming contexts is handled by relying on the object for aspects that would be challenging to implement as a facility. Supporting multiple uses of an object is handled by requiring each object to destroy itself via reference-counting. Access to an object's interfaces (similar to Type conversion) is provided by each object as well.

COM is available only in Microsoft Windows and Apple's Core Foundation 1.3 and later plug-in application programming interface (API).[1] The latter only implements a subset of the whole COM interface.[2]

Over time, COM is being replaced with other technologies such as Microsoft .NET and web services (i.e. via WCF). However, COM objects can be used in a .NET language via COM Interop.

COM is similar to other component technologies such as SOM, CORBA and Enterprise JavaBeans, although each has its strengths and weaknesses.

Unlike C++, COM provides a stable application binary interface (ABI) that is unaffected by compiler differences.[3] This makes using COM advantageous for object-oriented C++ libraries that are to be used by clients compiled via different compilers.

History

Introduced in 1987, Dynamic Data Exchange (DDE) was one of the first interprocess communication technologies in Windows.[4][5] It allowed sending and receiving messages in so-called conversations between applications.

Antony Williams, involved in architecting COM, distributed two papers within Microsoft that embraced the concept of software components: Object Architecture: Dealing With the Unknown – or – Type Safety in a Dynamically Extensible Class Library in 1988 and On Inheritance: What It Means and How To Use It in 1990. These provided the foundation of many of the ideas behind COM.

Object Linking and Embedding (OLE), Microsoft's first object-based framework, was built on DDE and designed specifically for compound documents. It was introduced with Word and Excel in 1991, and was later included with Windows, starting with version 3.1 in 1992. An example of a compound document is a spreadsheet embedded in a Word document. As changes are made to the spreadsheet in Excel, they appear automatically in the Word document.

In 1991, Microsoft introduced the Visual Basic Extension (VBX) technology with Visual Basic 1.0. A VBX is a packaged extension in the form of a dynamic-link library (DLL) that allows objects to be graphically placed in a form and manipulated by properties and methods. These were later adapted for use by other languages such as Visual C++.

In 1992, with Windows 3.1, Microsoft released OLE 2 with its new underlying object model, COM. The COM application binary interface (ABI) was the same as the MAPI ABI (released in 1992), and like it was based on MSRPC and ultimately on the Open Group's DCE/RPC. COM was created to replace DDE since its text-based conversation and Windows messaging design was not flexible enough to allow sharing application features in a robust and extensible way.

In 1994, the OLE custom control (OCX) technology, based on COM, was introduced as the successor to VBX. At the same time, Microsoft stated that OLE 2 would be known simply as "OLE".

In early 1996, Microsoft found a new use for OCX – extending their web browser's capability. Microsoft renamed some parts of OLE relating to the Internet as ActiveX, and gradually renamed all OLE technologies to ActiveX, except the compound document technology that was used in Microsoft Office.

Later in 1996, Microsoft extended COM to work across the network with DCOM.[6]

MSRPC

The COM IDL is based on the feature-rich DCE/RPC IDL, with object-oriented extensions. Microsoft's implementation of DCE/RPC, MSRPC, is used as the primary inter-process communication mechanism for Windows NT services and internal components, making it an obvious choice of foundation.

DCOM

DCOM extends COM from merely supporting a single user with separate applications communicating on the Windows desktop, to activating objects running under different security contexts, and on different machines across the network. With this were added necessary features for configuring which users have authority to create, activate and call objects, for identifying the calling user, as well as specifying required encryption for security of calls.

COM+

Microsoft introduced Microsoft Transaction Server (MTS) in Windows NT 4 in order to provide developers with support for distributed transactions, resource pooling, disconnected applications, event publication and subscription, better memory and processor (thread) management, as well as to position Windows as an alternative to other enterprise-level operating systems.

Renamed to COM+ in Windows 2000, the feature set was incorporated into the operating system as opposed to the series of external tools provided by MTS. At the same time, Microsoft de-emphasized DCOM as a separate entity. Components that used COM+ were handled more directly by the added layer of COM+; in particular by operating system support for interception. In the first release of MTS, interception was tacked on – installing an MTS component would modify the Windows Registry to call the MTS software, and not the component directly.

Windows 2000 included Component Services control panel updates for configuring COM+ components.

An advantage of COM+ was that it could be run in "component farms". Instances of a component, if coded properly, could be pooled and reused by new calls to its initializing routine without unloading it from memory. Components could also be distributed (called from another machine). COM+ and Microsoft Visual Studio provided tools to make it easy to generate client-side proxies, so although DCOM was used to make the remote call, it was easy to do for developers. COM+ also introduced a subscriber/publisher event mechanism called COM+ Events, and provided a new way of leveraging MSMQ (a technology that provides inter-application asynchronous messaging) with components called Queued Components. COM+ events extend the COM+ programming model to support late-bound (see Late binding) events or method calls between the publisher or subscriber and the event system.

.NET

.NET is Microsoft's component technology that supersedes COM. .NET hides many details of component creation and therefore eases development.

.NET provides wrappers to commonly used COM controls.

.NET can leverage COM+ via the System.EnterpriseServices namespace, and several of the services that COM+ provides have been duplicated in .NET. For example, the System.Transactions namespace provides the TransactionScope class, which provides transaction management without resorting to COM+. Similarly, queued components can be replaced by Windows Communication Foundation (WCF) with an MSMQ transport.

There is limited support for backward compatibility. A COM object may be used in .NET by implementing a Runtime Callable Wrapper (RCW).[7] NET objects that conform to certain interface restrictions may be used in COM objects by calling a COM callable wrapper (CCW).[8] From both the COM and .NET sides, objects using the other technology appear as native objects. See COM Interop.

WCF eases a number of COM's remote execution challenges. For instance, it allows objects to be transparently marshalled by value across process or machine boundaries more easily.

Windows Runtime

Windows Runtime (WinRT) is a COM-based API, albeit an enhanced COM variant. Because of its COM-like basis, WinRT supports interfacing from multiple programming contexts, but it is an unmanaged, native API. The API definitions are stored in ".winmd" files, which are encoded in ECMA 335 metadata format; the same CLI metadata format that .NET uses with a few modifications. This metadata format allows for significantly lower overhead than P/Invoke when WinRT is invoked from .NET applications.

Nano-COM

Nano-COM is a subset of COM focused on the application binary interface (ABI) aspects of COM that enable function and method calls across independently compiled modules/components. Nano-COM can be expressed in a portable C++ header file. Nano-COM extends the native ABI of the underlying instruction architecture and OS to support typed object references – whereas a typical ABI focuses on atomic types, structures, arrays and function calling conventions.

A Nano-COM header file defines or names at least three types:

  • GUID – identifies an interface type
  • HRESULT – method result codes such as S_OK, E_FAIL, E_OUTOFMEMORY
  • IUnknown – base type for object references; abstract virtual functions to support dynamic_cast<T>-style acquisition of new interface types and ref counting a la shared_ptr<T>

Many uses of Nano-COM define two functions to address callee-allocated memory buffers as results:

  • <NanoCom>Alloc – called by method implementations to allocate raw buffers (not objects) that are returned to the caller
  • <NanoCom>Free – called by method callers to free callee-allocated buffers when no longer in use

Some implementations of Nano-COM such as Direct3D eschew the allocator functions and restrict themselves to only use caller-allocated buffers.

Nano-COM has no notion of classes, apartments, marshaling, registration, etc. Rather, object references are simply passed across function boundaries and allocated via standard language constructs (e.g., C++ new operator).

The basis of Nano-COM was used by Mozilla to bootstrap Firefox (called XPCOM), and is currently in use as the base ABI technology for DirectX/Direct3D/DirectML.

Security

In Internet Explorer

Since an ActiveX control (any COM component) runs as native code, with no sandboxing protection, there are few restrictions on what it can do. Using ActiveX components, as Internet Explorer supported, in a web page lead to problems with malware infections. Microsoft recognized the problem as far back as 1996 when Charles Fitzgerald said, "We never made the claim up front that ActiveX is intrinsically secure".[9] Later versions of Internet Explorer prompt the user before installing an ActiveX control, allowing them to block installation.

As a level of protection, an ActiveX control is signed with a digital signature to guarantee authenticity.

It is also possible to disable ActiveX controls altogether, or to allow only a selected few.

Process corruption

The transparent support for out-of-process COM servers promotes software safety in terms of process isolation. This can be useful for decoupling subsystems of large application into separate processes. Process isolation limits state corruption in one process from negatively affecting the integrity of the other processes, since they only communicate through strictly defined interfaces. Thus, only the affected subsystem needs to be restarted in order to regain valid state. This is not the case for subsystems within the same process, where a rogue pointer in one subsystem can randomly corrupt other subsystems.

Binding

COM is supported via bindings in several languages, such as C, C++, Visual Basic, Delphi, Python[10][11] and several of the Windows scripting contexts. Component access is via interface methods. This allows for direct calling in-process and via the COM/DCOM sub-system access between processes and computers.

Type system

Coclass

A coclass, a COM class, implements one or more interfaces. It is identified by a class ID, called CLSID which is GUID, and by a human-readable programmatic identifier, called ProgID. A coclass is created via one of these identifiers.

Interface

Each COM interface extends the IUnknown interface, which exposes methods for reference counting and for accessing the other interfaces of the object – similar to type conversion, a.k.a. type casting.

An interface is identified by an interface ID (IID), a GUID.

A custom interface, anything derived from IUnknown, provides early bound access via a pointer to a virtual method table that contains a list of pointers to the functions that implement the functions declared in the interface, in the order they are declared. An in-process invocation overhead is, therefore, comparable to a C++ virtual method call.

Dispatching, a.k.a. late bound access, is provided by implementing IDispatch. Dispatching allows access from a wider range of programming contexts than a custom interface.

Like many object-oriented languages, COM provides a separation of interface from implementation. This distinction is especially strong in COM where an object has no default interface. A client must request an interface to have any access. COM supports multiple implementations of the same interface, so that clients can choose which implementation of an interface to use.

Type library

A COM type library defines COM metadata, such as coclasses and interfaces. A library can be defined as Interface definition language (IDL); a programming language independent syntax. IDL is similar to C++ with additional syntax for defining interfaces and coclasses. IDL also supports bracketed attributes before declarations to define metadata such as identifiers and relationships between parameters.

An IDL file is compiled via the MIDL compiler. For use with C/C++, the MIDL compiler generates a header file with struct definitions to match the vtbls of the declared interfaces and a C file containing declarations of the interface GUIDs. C++ source code for a proxy module can also be generated by the MIDL compiler. This proxy contains method stubs for converting COM calls into remote procedure calls to enable DCOM for out-of-process communication.

MIDL can generate a binary type library (TLB) that can be used by other tools to support access from other context.

Examples

The following IDL code declares a coclass named SomeClass which implements an interface named ISomeInterface.

coclass SomeClass {
  [default] interface ISomeInterface;
};

This is conceptually equivalent to the following C++ code where ISomeInterface is a pure virtual class, a.k.a. abstract base class.

class ISomeInterface {};
class SomeClass : public ISomeInterface {
};

In C++, COM objects are instantiated via the COM subsystem CoCreateInstance function that takes the CLSID and IID. SomeClass can be created as follows:

ISomeInterface* interface_ptr = NULL;
HRESULT hr = CoCreateInstance(CLSID_SomeClass, NULL, CLSCTX_ALL, IID_ISomeInterface, (void**)&interface_ptr);

Reference counting

A COM object uses reference counting to manage object lifetime. An object's reference count is controlled by the clients through the IUnknown AddRef and Release methods. COM objects are responsible for freeing their own memory when the reference count drops to zero. Some programming contexts (e.g. Visual Basic) provide automatic reference counting to simplify object use. In C++, a smart pointer can be used to automate reference count management.

The following are guidelines for when to AddRef and Release should called:

  • A functions that returns an interface reference (via return value or via "out" parameter) increments the count of the returned object
  • Release is called before the interface pointer is overwritten or goes out of scope
  • If a copy is made on an interface reference pointer, AddRef is called
  • AddRef and Release are called on the interface which is being referenced (not a different interface of the same object) since an object may implement per-interface reference counts in order to allocate internal resources only for the interfaces which are being referenced

For remote objects, not all reference count calls are sent over the wire. A a proxy keeps only one reference on the remote object and maintains its own local reference count.

To simplify COM development for C++ developers, Microsoft introduced ATL (Active Template Library). ATL provides a relatively high-level COM development paradigm. It also shields COM client application developers from the need to directly maintain reference counting, by providing smart pointer types. Other libraries and languages that are COM-aware include the Microsoft Foundation Classes, the VC Compiler COM Support,[12] VBScript, Visual Basic, ECMAScript (JavaScript) and Borland Delphi.

Programming context

COM is a language agnostic binary standard that allows objects to be used in any programming context able to access its binary interfaces.

COM client software is responsible for enabling the COM sub-system, instantiating and reference-counting COM objects and querying objects for supported interfaces.

The Microsoft Visual C++ compiler supports extensions to the C++ language, referred to as C++ Attributes, [13] that are designed to simplify COM development and minimize boilerplate code required to implement COM servers in C++.[14]

Type metadata storage

Originally, type library metadata was required to be stored in the system registry. A COM client would use the registry information for object creation.

Registration-free (RegFree) COM was introduced with Windows XP to allow storing type library metadata as an assembly manifest either as a resource in the executable file or in a separate file installed with the component.[15] This allows multiple versions of the same component to be installed on the same computer, in different directories. And it allows for XCOPY deployment.[16] This technology has limited support for EXE COM servers[17] and cannot be used for system-wide components such as MDAC, MSXML, DirectX or Internet Explorer.

During application loading, the Windows loader searches for the manifest.[18] If it is present, the loader adds information from it to the activation context.[16] When the COM class factory tries to instantiate a class, the activation context is first checked to see if an implementation for the CLSID can be found. Only if the lookup fails, the registry is scanned.[16]

A COM object can be created without type library information; with only a path to the DLL file and CLSID. A client can use the COM DLL function DllGetClassObject with the CLSID and IID_IClassFactory to create an instance of a factory object. The client can then use the factory object's CreateInstance to create an instance.[19] This is the same process the COM sub-system uses.[20] If an object created this way creates another object, it will do so in the usual way (using the registry or manifest). But it can create internal objects (which may not be registered at all), and hand out references to interfaces to them, using its own private knowledge.

Marshalling

A COM object can be transparently created and used from within the same process (in-process), across process boundaries (out-of-process), or remotely over the network (DCOM). Out-of-process and remote objects use marshalling to serialize method calls and return values over process or network boundaries. This marshalling is invisible to the client, which accesses the object as if it were a local in-process object.

Threading

In COM, threading is addressed through a concept known as apartments.[21] An individual COM object lives in exactly one apartment, which might either be single-threaded or multi-threaded. There are three types of apartments in COM: Single-Threaded Apartment (STA), Multi-Threaded Apartment (MTA), and Thread Neutral Apartment (NA). Each apartment represents one mechanism whereby an object's internal state may be synchronized across multiple threads. A process can consist of multiple COM objects, some of which may use STA and others of which may use MTA. All threads accessing COM objects similarly live in one apartment. The choice of apartment for COM objects and threads are determined at run-time, and cannot be changed.

Apartment type Threading model Description
Single-Threaded Apartment[22] (STA)

Apartment

A single thread is dedicated to execute the methods of the object. Method calls from threads outside of the apartment are marshalled and automatically queued by the system (via Windows messaging). Thus, the COM run-time provides synchronization to ensure that each method call to the object is executed to completion before another is invoked.

Multi-Threaded Apartment[23] (MTA)

Free

The COM run-time provides no synchronization, and multiple threads are allowed to call object methods simultaneously. The object need to handle synchronization to prevent simultaneous access from multiple threads from problems. Calls to an MTA object from a thread in an STA are also marshalled.

Dynamically determined apartment

Both

The server auto-selects STA or MTA at object creation to match the apartment type of the calling thread.[24] This can be useful to avoid marshalling overhead when MTA servers are accessed by a STA thread.

Thread Neutral Apartment (NA)

Neutral

A special apartment without any assigned threads. When an STA or MTA thread calls an NA object in the same process, then the calling thread temporarily leaves its apartment and executes code directly in the NA without any thread switching.[25] Therefore, one can think of NA as an optimization for efficient interapartment method calls.

Threads and objects which belong to the same apartment follow the same thread access rules. Method calls which are made inside the same apartment are therefore performed directly without any assistance from COM. Method calls made across apartments are achieved via marshalling. This requires the use of proxies and stubs.

Criticisms

Complexity

COM is relatively complex especially compared to more modern component technologies such as .NET.

Message pumping

When an STA is initialized it creates a hidden window that is used for inter-apartment and inter-process message routing. This window must have its message queue regularly "pumped". This construct is known as a "message pump". On earlier versions of Windows, failure to do so could cause system-wide deadlocks. This problem is complicated by some Windows APIs that initialize COM as part of their implementation, which causes a "leak" of implementation details.

Reference counting

Reference counting within COM may cause problems if two or more objects are circularly referenced. The design of an application must take this into account so that objects are not left orphaned. Objects may also be left with active reference counts if the COM "event sink" model is used. Since the object that fires the event needs a reference to the object reacting to the event, the latter's reference count will never reach zero. Reference cycles are typically broken using either out-of-band termination or split identities. In the out-of-band termination technique, an object exposes a method which, when called, forces it to drop its references to other objects, thereby breaking the cycle. In the split identity technique, a single implementation exposes two separate COM objects (also known as identities). This creates a weak reference between the COM objects, preventing a reference cycle.

DLL Hell

Because in-process COM components are implemented in DLL files and registration only allows for a single version per CLSID, they might in some situations be subject to the "DLL Hell" effect. Registration-free COM capability eliminates this problem for in-process components; registration-free COM is not available for out-of-process servers.

See also

Notes

  1. ^ "Documentation Archive". developer.apple.com.
  2. ^ "Plug-ins and Microsoft's COM". Apple Inc. Retrieved October 5, 2010.
  3. ^ Microsoft forum: Binary compatibility across Visual C++ versions
  4. ^ "About Network DDE - Windows applications". Microsoft.com. May 30, 2018.
  5. ^ "Code Execution Technique Takes Advantage of Dynamic Data Exchange". McAfee.com. October 27, 2017.
  6. ^ Brown, Nina; Kindel, Charlie (March 11, 1998). "draft-brown-dcom-v1-spec-03 - Distributed Component Object Model Protocol -- DCOM/1.0". Ietf Datatracker. Retrieved August 29, 2019.
  7. ^ rpetrusha. "Runtime Callable Wrapper". msdn.microsoft.com.
  8. ^ rpetrusha. "COM Callable Wrapper". msdn.microsoft.com.
  9. ^ Steinberg, Jill (March 1, 1997). "Competing components make for prickly panelists". JavaWorld. Retrieved 2020-07-16.
  10. ^ "win32com Documentation Index". docs.activestate.com.
  11. ^ "Python and COM". www.boddie.org.uk.
  12. ^ "Compiler COM Support". MSDN. Microsoft.
  13. ^ Microsoft MSDN: C++ Attributes Reference
  14. ^ MSDN Magazine: C++ Attributes: Make COM Programming a Breeze with New Feature in Visual Studio .NET
  15. ^ "Assembly Manifests". MSDN. Retrieved November 5, 2009.
  16. ^ a b c Dave Templin. "Simplify App Deployment with ClickOnce and Registration-Free COM". MSDN Magazine. Retrieved April 22, 2008.
  17. ^ "How to use an out-of-process COM server without its tlb file". Retrieved April 16, 2011.
  18. ^ "Concepts of Isolated Applications and Side-by-side Assemblies". MSDN. Retrieved February 5, 2016.
  19. ^ Arkhipov, Mikhail (April 1, 2005). "Registration-free COM". MSDN Blogs. Retrieved April 29, 2016.
  20. ^ "DllGetClassObject entry point (COM)". MSDN. If a call to the CoGetClassObject function finds the class object that is to be loaded in a DLL, CoGetClassObject uses the DLL's exported DllGetClassObject function.
  21. ^ Microsoft MSDN: Processes, Threads, and Apartments
  22. ^ Microsoft MSDN: Single-Threaded Apartments
  23. ^ Microsoft MSDN: Multithreaded Apartments
  24. ^ Microsoft MSDN: Understanding and Using COM Threading Models
  25. ^ Codeguru: Understanding COM Apartments

References

Read other articles:

Premier Ministru prezidents PremierPeriode: 1918 – heden Vlag van de Premier van Letland Kantoor Ambtstermijn Onbepaald Geschiedenis Eerste Kārlis Ulmanis Ontstaan in 19 november 1918 Huidige Evika Siliņa Sinds 15 september 2023 Portaal    Politiek De huidige premier Evika Siliņa. Letse politiek Wapen Letland Grondwet Regering: Staatshoofd Edgars Rinkēvičs Kabinet huidige Premier Evika Siliņa Ministeries Saeima Lijst van huidige leden Verkiezingen Politieke pa...

1961 film This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Vanina Vanini film – news · newspapers · books · scholar · JSTOR (June 2019) (Learn how and when to remove this template message) Vanina VaniniFilm posterDirected byRoberto RosselliniWritten byDiego FabbriJean GruaultProduced byMoris ErgasStarrin...

This is the results breakdown of the local elections held in Cantabria on 25 May 2003. The following tables show detailed results in the autonomous community's most populous municipalities, sorted alphabetically.[1][2][3] City control The following table lists party control in the most populous municipalities, including provincial capitals (shown in bold).[1] Gains for a party are displayed with the cell's background shaded in that party's colour. Municipality ...

Untuk tokoh Alkitab yang menjadi nama dari kitab ini, lihat Mikha. Untuk kegunaan lain, lihat Mikha (disambiguasi). Bagian dari Alkitab KristenPerjanjian LamaYosua 1:1 pada Kodeks Aleppo Taurat Kejadian Keluaran Imamat Bilangan Ulangan Sejarah Yosua Hakim-hakim Rut 1 Samuel 2 Samuel 1 Raja-raja 2 Raja-raja 1 Tawarikh 2 Tawarikh Ezra Nehemia Ester Puisi Ayub Mazmur Amsal Pengkhotbah Kidung Agung Kenabian Besar Yesaya Yeremia Ratapan Yehezkiel Daniel Kecil Hosea Yoël Amos Obaja Yunus Mikha Nah...

أشيي لو جران    شعار الاسم الرسمي (بالفرنسية: Achiet-le-Grand)‏    الإحداثيات 50°07′50″N 2°46′57″E / 50.130555555556°N 2.7825°E / 50.130555555556; 2.7825[1]  [2] تقسيم إداري  البلد فرنسا[3]  التقسيم الأعلى باد كاليه  خصائص جغرافية  المساحة 5.08 كيلومتر مربع[1]  ع

Book by Nikola Tesla My Inventions: The Autobiography of Nikola Tesla First (1982) editionAuthorNikola TeslaBen JohnstonCountryUnited StatesLanguageEnglishGenreAutobiographyPublisherExperimenter Publishing Company, Inc., New York, 1919 (Original serialized edition) Školska Knjiga, Zagreb, 1977 Hart Brothers, Williston, Vermont, 1982 (First edition)Publication date1919Pages111ISBN978-1-61640-386-7 (Hard cover)ISBN 978-0-910077-00-2 (Paperback) My Inventions: The Autobiography of Nikola T...

هذه المقالة يتيمة إذ تصل إليها مقالات أخرى قليلة جدًا. فضلًا، ساعد بإضافة وصلة إليها في مقالات متعلقة بها. (أبريل 2019) ميشيل لانغ (مخرج) معلومات شخصية اسم الولادة (بالفرنسية: Michel Jules Jean Marcel Lang)‏  الميلاد 9 يونيو 1939  الدائرة الثامنة عشرة في باريس  الوفاة 24 أبريل 2014 (74 سنة) &#...

الصفحة الأولى النوع دراما،  وإثارة  الموضوع تحقيق صحفي  إخراج إدريس الروخ بطولة سعد التسولي إدريس الروخ فرح الفاسي هشام الوالي فاطمة الزهراء بناصر ابتسام العروسي سعيد باي البلد  المغرب لغة العمل اللهجة المغربية  عدد المواسم 1 عدد الحلقات 4 مدة الحلقة 49 - 51 دقيقة...

PT Zurich General Takaful IndonesiaJenisJasa keuanganDidirikanJakarta, Indonesia (1991)Kantorpusat Jakarta, IndonesiaTokohkunciHilman Simanjuntak (Presiden Direktur)PemilikZurich Insurance GroupSitus webwww.zurich.co.id PT Zurich General Takaful Indonesia (sebelumnya bernama PT Zurich Insurance Indonesia) adalah perusahaan asuransi umum yang berdiri sejak 1991 dan berkantor pusat di Jakarta. Perusahaan dimiliki oleh Zurich Insurance Company. Perusahaan berencana untuk melakukan merger bisnis ...

Thai television show School RangersThaiรถโรงเรียน School Rangers GenreVariety showGame showPresented byAtthaphan PhunsawatHarit CheewagaroonNachat JuntapunWachirawit RuangwiwatKorapat KirdpanTanutchai WijitwongthongThitipoom TechaapaikhunWeerayut ChansookTawan VihokratanaLeo SaussayJumpol AdulkittipornNawat PhumphotingamKanaphan PuitrakulPirapat WatthanasetsiriSahaphap WongratchCountry of originThailandOriginal languageThaiNo. of episodes297 (as of 2 December 2023)Producti...

CTV television station in Sudbury, Ontario, Canada CICI-TVSudbury, OntarioCanadaChannelsAnalog: 5 (VHF)Digital: allocated 8 (VHF)BrandingCTV Northern Ontario (general)CTV News Northern Ontario (newscasts)ProgrammingNetworkCTV Northern OntarioAffiliationsCTV (1971–present)OwnershipOwnerBell Media Inc.Sister stationsCICS-FMHistoryFirst air dateOctober 25, 1953 (70 years ago) (1953-10-25)Former call signsCKSO-TV (1953–1980)Former affiliationsCBC (1953–1971)Technical informati...

中華民國海軍反潛航空大隊The Republic of China Naval Antisubmarine Aviation Group存在時期1977年9月1日-至今國家或地區 中華民國效忠於 中華民國軍種 中華民國海軍功能海軍唯一航空部隊隸屬於海軍艦隊指揮部駐地左營、花蓮、屏東別稱反潛大隊、反大格言發現問題,解決問題隊慶7月1日飛機直昇機S-70C500MD/ASW 中華民國海軍反潛航空大隊原為海軍艦隊直昇機隊,1977年9月1日...

Matchmaking event where people meet potential partners for a short period of time This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article possibly contains original research. Please improve it by verifying the claims made and adding inline citations. Statements consisting only of original research should be removed. (June 2014) (Learn how and when to remove this template message) Thi...

Japanese manga series and anime Manmaru The Ninja PenguinCover of the first volume of Ninpen Manmaru忍ペンまん丸GenreComedy MangaWritten byMikio IgarashiPublished byEnixMagazineMonthly Shōnen GanganDemographicShōnenOriginal runApril 1995 – April 1999Volumes11 Anime television seriesDirected byTetsuo YasumiStudioShin-Ei AnimationOriginal networkTV AsahiOriginal run July 5, 1997 – March 28, 1998Episodes48 Ninpen Manmaru (忍ペンまん丸) is a Japanese manga series ...

Species of snake Calamaria thanhi Conservation status Data Deficient (IUCN 3.1)[1] Scientific classification Domain: Eukaryota Kingdom: Animalia Phylum: Chordata Class: Reptilia Order: Squamata Suborder: Serpentes Family: Colubridae Genus: Calamaria Species: C. thanhi Binomial name Calamaria thanhiZiegler & Quyet, 2005 Calamaria thanhi, Thanh's reed snake, is a species of snake in the family, Colubridae. It is found in Vietnam.[2] References ^ Nguyen, T.Q. (2012)...

Voormalige Augustijnenkerk, protestantse kerk van 1815-1830 Het protestantisme in Brussel kende aanvankelijk een korte geschiedenis in de eerste helft van de 16e eeuw, tot het katholicisme werd gerestaureerd onder Spaans gezag. Sinds het begin van de 19e eeuw ontwikkelde het protestantisme zich blijvend in Brussel. Geschiedenis Opkomst en onderdrukking in de 16e eeuw Bij de augustijnen was veel sympathie voor de lutherse reformatie. Op 1 juli 1523 werden twee augustijner broeders, Hendrik Voe...

Harvesting machine MacDon swather New Holland Haybine H8040 self-propelled swather A swather (North America), or windrower (Australia and rest of world), is a farm implement that cuts hay or small grain crops and forms them into a windrow for drying. Crimper rollers and cutting discs They may be self-propelled with an engine, or drawn by a tractor and power take-off powered.[1] A swather uses a reciprocating sickle bar or rotating discs to sever the crop stems.[2] The reel hel...

Artikel ini sebatang kara, artinya tidak ada artikel lain yang memiliki pranala balik ke halaman ini.Bantulah menambah pranala ke artikel ini dari artikel yang berhubungan atau coba peralatan pencari pranala.Tag ini diberikan pada Februari 2023. SMKN 2 Jayapura adalah Sekolah Menengah Kejuruan (SMK) Negeri yang terletak di Jl. Raya Kotaraja Dalam, Kelurahan Vim Kotaraja, Abepura Papua.[1] Sebagaimana sekolah menengah kejuruan lainnya, Sekolah ini juga mengelola beberapa jurusan diatar...

1944 film The Enchanted DayEva Maria Meineke and Winnie Markus in their station kioskDirected byPeter PewasWritten byFranz Nabl (novel)Peter PewasRenate UhlProduced byViktor von StruweStarringWinnie MarkusHans StüweErnst WaldowCinematographyGeorg KrauseEdited byIra OberbergMusic byWolfgang ZellerProductioncompanyTerra FilmDistributed byDeutsche FilmvertriebsRelease dates 6 July 1944 (1944-07-06) 17 May 1951 (1951-05-17) (general release) Running time76 minut...

American sitcom The Jamie Foxx ShowGenreSitcomCreated byBentley Kyle EvansJamie FoxxStarringJamie FoxxGarcelle BeauvaisChristopher B. DuncanEllia EnglishGarrett MorrisTheme music composerJamie FoxxOpening themeHere Comes Jamie Foxx (seasons 1–3)The Simple Things Are All I Need (seasons 4–5),both performed by Jamie FoxxCountry of originUnited StatesOriginal languageEnglishNo. of seasons5No. of episodes100 (list of episodes)ProductionExecutive producersBentley Kyle EvansMarcus King (seasons...

Kembali kehalaman sebelumnya