SlideShare una empresa de Scribd logo
1 de 26
Descargar para leer sin conexión



























ChannelFactory<IInvoiceService> cf =
new ChannelFactory<IInvoiceService>(endpoint);
...


ChannelFactory<IInvoiceService> factory =
new ChannelFactory<IInvoiceService>(
new BasicHttpBinding(),
new EndpointAddress("http://server/invoiceservice"));
...

ChannelFactory<IInvoiceService> factory =
new ChannelFactory<IInvoiceService>("httpEndpoint");
...
<configuration>
<system.serviceModel>
<client>
<endpoint name="httpEndpoint"
address="http://server/invoiceservice"
binding="basicHttpBinding"
contract="IInvoiceService"/>
<endpoint name="tcpEndpoint"
address="net.tcp://server:8081/invoiceservice"
binding="netTcpBinding"
contract="IInvoiceService"/>
</client>
</system.serviceModel>
</configuration>




ChannelFactory<IInvoiceService> factory =
new ChannelFactory<IInvoiceService>("tcpEndpoint");
IInvoiceService channel = factory.CreateChannel();
channel.SubmitInvoice(invoice);
((IClientChannel)channel).Close();

















public interface IInvoiceServiceChannel :
IInvoiceService, System.ServiceModel.IClientChannel {
}
ChannelFactory<IInvoiceServiceChannel> factory =
new ChannelFactory<IInvoiceServiceChannel>("tcpEndpoint");
IInvoiceServiceChannel channel = factory.CreateChannel();
channel.SubmitInvoice(invoice);
channel.Close();






public partial class InvoiceServiceClient :
ClientBase<IInvoiceService>, IInvoiceService
{
public InvoiceServiceClient() { }
public InvoiceServiceClient(string endpointName) :
base(endpointName)
{
}
... // you're service contract methods will be here
...
InvoiceServiceClient client =
new InvoiceServiceClient("httpEndpoint");
Invoice invoice = new Invoice();
invoice.CustomerName = "Acme, Inc";
invoice.Amount = 100.00;
invoice.InvoiceDate = DateTime.Now;
client.SubmitInvoice(invoice);
client.Close();
...







<configuration>
<system.serviceModel>
<client>
<endpoint name="httpEndpoint"
address="http://server/invoiceservice"
binding="basicHttpBinding"
bindingConfiguration="MyConfiguration"
contract="InvoiceServiceReference.IInvoiceService" />
</client>
<bindings>
<basicHttpBinding>
<binding name="MyConfiguration" sendTimeout="00:05:00">
<security mode="Transport">
<transport clientCredentialType="Basic"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
</configuration>
<configuration>
<system.serviceModel>
<client>
<endpoint name="httpEndpoint"
address="http://server/invoiceservice"
binding="basicHttpBinding"
behaviorConfiguration="viaBehavior"
contract="InvoiceServiceReference.IInvoiceService" />
</client>
<behaviors>
<endpointBehaviors>
<behavior name="viaBehavior">
<clientVia viaUri="http://router/invoiceservice"/>
</behavior>
</endpointBehaviors>
</behaviors>
...

InvoiceServiceClient client =
new InvoiceServiceClient("httpEndpoint");
Invoice invoice = ... // create invoice
try {
client.SubmitInvoice(invoice);
client.Close();
}
catch (FaultException fe) {
Console.WriteLine(fe);
client.Abort();
}
catch (CommunicationException ce) {
Console.WriteLine(ce);
client.Abort();
}
catch (TimeoutException te) {
Console.WriteLine(te);
client.Abort();
}
...











































Más contenido relacionado

Destacado

Odata writing-services-slides
Odata writing-services-slidesOdata writing-services-slides
Odata writing-services-slides
MasterCode.vn
 
2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides
MasterCode.vn
 
Wp7 basics-module-03-slides
Wp7 basics-module-03-slidesWp7 basics-module-03-slides
Wp7 basics-module-03-slides
MasterCode.vn
 
Wp7 basics-module-02-slides
Wp7 basics-module-02-slidesWp7 basics-module-02-slides
Wp7 basics-module-02-slides
MasterCode.vn
 
6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides
MasterCode.vn
 
3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides
MasterCode.vn
 
Wp7 basics-module-04-slides
Wp7 basics-module-04-slidesWp7 basics-module-04-slides
Wp7 basics-module-04-slides
MasterCode.vn
 
Wp7 basics-module-01-slides
Wp7 basics-module-01-slidesWp7 basics-module-01-slides
Wp7 basics-module-01-slides
MasterCode.vn
 
7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides
MasterCode.vn
 
1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides
MasterCode.vn
 
7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides
MasterCode.vn
 
5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides
MasterCode.vn
 
3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides
MasterCode.vn
 
Odata introduction-slides
Odata introduction-slidesOdata introduction-slides
Odata introduction-slides
MasterCode.vn
 

Destacado (20)

4. bootstrap aspdotnet-mvc5-slides
4. bootstrap aspdotnet-mvc5-slides4. bootstrap aspdotnet-mvc5-slides
4. bootstrap aspdotnet-mvc5-slides
 
Odata writing-services-slides
Odata writing-services-slidesOdata writing-services-slides
Odata writing-services-slides
 
2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides
 
Wp7 basics-module-03-slides
Wp7 basics-module-03-slidesWp7 basics-module-03-slides
Wp7 basics-module-03-slides
 
Wp7 basics-module-02-slides
Wp7 basics-module-02-slidesWp7 basics-module-02-slides
Wp7 basics-module-02-slides
 
2 introduction-php-mvc-cakephp-m2-installation-slides
2 introduction-php-mvc-cakephp-m2-installation-slides2 introduction-php-mvc-cakephp-m2-installation-slides
2 introduction-php-mvc-cakephp-m2-installation-slides
 
6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides
 
3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides
 
Wp7 basics-module-04-slides
Wp7 basics-module-04-slidesWp7 basics-module-04-slides
Wp7 basics-module-04-slides
 
Wp7 basics-module-01-slides
Wp7 basics-module-01-slidesWp7 basics-module-01-slides
Wp7 basics-module-01-slides
 
7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides
 
1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides
 
7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides
 
5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides
 
3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides
 
3. identity and security aspdotnet-mvc5-slides
3. identity and security aspdotnet-mvc5-slides3. identity and security aspdotnet-mvc5-slides
3. identity and security aspdotnet-mvc5-slides
 
Odata introduction-slides
Odata introduction-slidesOdata introduction-slides
Odata introduction-slides
 
1 seo-fundamentals-in depth keyword research (part 1)-slides
1 seo-fundamentals-in depth keyword research (part 1)-slides1 seo-fundamentals-in depth keyword research (part 1)-slides
1 seo-fundamentals-in depth keyword research (part 1)-slides
 
3 seo-fundamentals-establishing a domain strategy-slides
3 seo-fundamentals-establishing a domain strategy-slides3 seo-fundamentals-establishing a domain strategy-slides
3 seo-fundamentals-establishing a domain strategy-slides
 
6 seo-fundamentals-the power of the right content-slides
6 seo-fundamentals-the power of the right content-slides6 seo-fundamentals-the power of the right content-slides
6 seo-fundamentals-the power of the right content-slides
 

Similar a Programming clients-slides

Jasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-casJasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-cas
ellentuck
 
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docxRunning Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
joellemurphey
 

Similar a Programming clients-slides (20)

70562-Dumps
70562-Dumps70562-Dumps
70562-Dumps
 
WCF - In a Week
WCF - In a WeekWCF - In a Week
WCF - In a Week
 
twMVC#46 一探 C# 11 與 .NET 7 的神奇
twMVC#46 一探 C# 11 與 .NET 7 的神奇twMVC#46 一探 C# 11 與 .NET 7 的神奇
twMVC#46 一探 C# 11 與 .NET 7 的神奇
 
Simple callcenter platform with PHP
Simple callcenter platform with PHPSimple callcenter platform with PHP
Simple callcenter platform with PHP
 
[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager
[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager
[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager
 
WCF 4 Overview
WCF 4 OverviewWCF 4 Overview
WCF 4 Overview
 
Better Open Source Enterprise C++ Web Services
Better Open Source Enterprise C++ Web ServicesBetter Open Source Enterprise C++ Web Services
Better Open Source Enterprise C++ Web Services
 
WCF Fundamentals
WCF Fundamentals WCF Fundamentals
WCF Fundamentals
 
Jasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-casJasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-cas
 
Sockets
SocketsSockets
Sockets
 
Build resource server &amp; client for OCF Cloud (2018.8.30)
Build resource server &amp; client for OCF Cloud (2018.8.30)Build resource server &amp; client for OCF Cloud (2018.8.30)
Build resource server &amp; client for OCF Cloud (2018.8.30)
 
Java on Windows Azure
Java on Windows AzureJava on Windows Azure
Java on Windows Azure
 
How to build own IoT Platform
How to build own IoT PlatformHow to build own IoT Platform
How to build own IoT Platform
 
Advanced #2 networking
Advanced #2   networkingAdvanced #2   networking
Advanced #2 networking
 
Socket programming-tutorial-sk
Socket programming-tutorial-skSocket programming-tutorial-sk
Socket programming-tutorial-sk
 
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docxRunning Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
 
Consul: Service Mesh for Microservices
Consul: Service Mesh for MicroservicesConsul: Service Mesh for Microservices
Consul: Service Mesh for Microservices
 
Manage your calls with CallKit
Manage your calls with CallKitManage your calls with CallKit
Manage your calls with CallKit
 
Anypoint connectorfor ibm as 400
Anypoint connectorfor ibm as 400Anypoint connectorfor ibm as 400
Anypoint connectorfor ibm as 400
 
API gateway setup
API gateway setupAPI gateway setup
API gateway setup
 

Más de MasterCode.vn

Pd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vnPd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vn
MasterCode.vn
 
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vnPd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
MasterCode.vn
 
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vnPdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
MasterCode.vn
 
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vnPd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
MasterCode.vn
 

Más de MasterCode.vn (20)

Pd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vn
Pd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vnPd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vn
Pd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vn
 
Why apps-succeed-wpr-mastercode.vn
Why apps-succeed-wpr-mastercode.vnWhy apps-succeed-wpr-mastercode.vn
Why apps-succeed-wpr-mastercode.vn
 
Dzone performancemonitoring2016-mastercode.vn
Dzone performancemonitoring2016-mastercode.vnDzone performancemonitoring2016-mastercode.vn
Dzone performancemonitoring2016-mastercode.vn
 
Google công bố thông tin lịch xu hướng ngành 2017 mastercode.vn
Google công bố thông tin lịch xu hướng ngành 2017 mastercode.vnGoogle công bố thông tin lịch xu hướng ngành 2017 mastercode.vn
Google công bố thông tin lịch xu hướng ngành 2017 mastercode.vn
 
Nghiên cứu về khách hàng mastercode.vn
Nghiên cứu về khách hàng mastercode.vnNghiên cứu về khách hàng mastercode.vn
Nghiên cứu về khách hàng mastercode.vn
 
Lập trình sáng tạo creative computing textbook mastercode.vn
Lập trình sáng tạo creative computing textbook mastercode.vnLập trình sáng tạo creative computing textbook mastercode.vn
Lập trình sáng tạo creative computing textbook mastercode.vn
 
Pd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vnPd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vn
 
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vnPd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
 
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vnPdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
 
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vnPd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
 
Pd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vn
Pd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vnPd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vn
Pd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vn
 
Pd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vn
Pd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vnPd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vn
Pd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vn
 
Pdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vn
Pdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vnPdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vn
Pdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vn
 
Pdfbài 7 máy tính xác tay và máy in bảo trì sự cố máy tính-mastercode.vn
Pdfbài 7 máy tính xác tay và máy in   bảo trì sự cố máy tính-mastercode.vnPdfbài 7 máy tính xác tay và máy in   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 7 máy tính xác tay và máy in bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 6 bảo trì máy tính bảo trì sự cố máy tính-mastercode.vn
Pdfbài 6 bảo trì máy tính   bảo trì sự cố máy tính-mastercode.vnPdfbài 6 bảo trì máy tính   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 6 bảo trì máy tính bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 5 bảo trì và tối ưu windows bảo trì sự cố máy tính-mastercode.vn
Pdfbài 5 bảo trì và tối ưu windows   bảo trì sự cố máy tính-mastercode.vnPdfbài 5 bảo trì và tối ưu windows   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 5 bảo trì và tối ưu windows bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 4 ổ cứng hard drive bảo trì sự cố máy tính-mastercode.vn
Pdfbài 4 ổ cứng hard drive   bảo trì sự cố máy tính-mastercode.vnPdfbài 4 ổ cứng hard drive   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 4 ổ cứng hard drive bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 3 cpu và ram bảo trì sự cố máy tính-mastercode.vn
Pdfbài 3 cpu và ram   bảo trì sự cố máy tính-mastercode.vnPdfbài 3 cpu và ram   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 3 cpu và ram bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 1 giới thiệu chung về phần cứng bảo trì sự cố máy tính-mastercode.vn
Pdfbài 1 giới thiệu chung về phần cứng   bảo trì sự cố máy tính-mastercode.vnPdfbài 1 giới thiệu chung về phần cứng   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 1 giới thiệu chung về phần cứng bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 2 bo mạch chủ (main) bảo trì sự cố máy tính-mastercode.vn
Pdfbài 2 bo mạch chủ (main)   bảo trì sự cố máy tính-mastercode.vnPdfbài 2 bo mạch chủ (main)   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 2 bo mạch chủ (main) bảo trì sự cố máy tính-mastercode.vn
 

Último

The basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptxThe basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptx
heathfieldcps1
 

Último (20)

The basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptxThe basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptx
 
Basic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
Basic Civil Engg Notes_Chapter-6_Environment Pollution & EngineeringBasic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
Basic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
 
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
 
Open Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPointOpen Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPoint
 
An Overview of the Odoo 17 Discuss App.pptx
An Overview of the Odoo 17 Discuss App.pptxAn Overview of the Odoo 17 Discuss App.pptx
An Overview of the Odoo 17 Discuss App.pptx
 
factors influencing drug absorption-final-2.pptx
factors influencing drug absorption-final-2.pptxfactors influencing drug absorption-final-2.pptx
factors influencing drug absorption-final-2.pptx
 
Application of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matricesApplication of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matrices
 
The Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational ResourcesThe Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational Resources
 
“O BEIJO” EM ARTE .
“O BEIJO” EM ARTE                       .“O BEIJO” EM ARTE                       .
“O BEIJO” EM ARTE .
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT VẬT LÝ 2024 - TỪ CÁC TRƯỜNG, TRƯ...
 
Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 2 STEPS Using Odoo 17
 
Morse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxMorse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptx
 
Post Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdf
Post Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdfPost Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdf
Post Exam Fun(da) Intra UEM General Quiz 2024 - Prelims q&a.pdf
 
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdfDanh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
 
How to the fix Attribute Error in odoo 17
How to the fix Attribute Error in odoo 17How to the fix Attribute Error in odoo 17
How to the fix Attribute Error in odoo 17
 
Operations Management - Book1.p - Dr. Abdulfatah A. Salem
Operations Management - Book1.p  - Dr. Abdulfatah A. SalemOperations Management - Book1.p  - Dr. Abdulfatah A. Salem
Operations Management - Book1.p - Dr. Abdulfatah A. Salem
 
size separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceuticssize separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceutics
 
Capitol Tech Univ Doctoral Presentation -May 2024
Capitol Tech Univ Doctoral Presentation -May 2024Capitol Tech Univ Doctoral Presentation -May 2024
Capitol Tech Univ Doctoral Presentation -May 2024
 
Mbaye_Astou.Education Civica_Human Rights.pptx
Mbaye_Astou.Education Civica_Human Rights.pptxMbaye_Astou.Education Civica_Human Rights.pptx
Mbaye_Astou.Education Civica_Human Rights.pptx
 
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
 

Programming clients-slides