service
「service」の意味
「service」とは、他者に対して行われる支援や援助、またはその過程で提供される利益や機能を指す言葉である。ビジネスの文脈では、商品やサービスを顧客に提供することを指すことが多い。また、「service」は、公共の利益のために行われる活動や、宗教的な儀式を指すこともある。「service」の発音・読み方
「service」の発音は、IPA表記では /ˈsɜːrvɪs/ であり、IPAのカタカナ読みでは「サーヴィス」となる。日本人が発音するカタカナ英語では「サービス」と読むことが一般的である。「service」の語源
「service」の語源は、ラテン語の「servitium」であり、これは「奉仕」や「隷属」を意味する言葉である。これが古フランス語を経て中英語に伝わり、「service」という形になった。現代英語では、様々な文脈で使用されるようになっている。「service」の類語
「service」の類語には、以下のような言葉がある。 1. assistance:援助、支援 2. aid:援助、助け 3. help:助け、援助 4. support:支援、後援 5. facility:設備、機能 これらの言葉は、それぞれ異なるニュアンスを持っているが、「service」と同様に他者への支援や援助を意味する。「service」に関連する用語・表現
「service」に関連する用語や表現には、以下のようなものがある。 1. customer service:顧客対応、顧客サービス 2. public service:公共サービス、公共事業 3. service industry:サービス業 4. after-sales service:アフターサービス、販売後のサポート 5. community service:地域奉仕活動、ボランティア活動「service」の例文
1. Our company provides a wide range of services to our clients.(私たちの会社は、顧客に幅広いサービスを提供している。) 2. The hotel offers excellent room service.(そのホテルは、優れたルームサービスを提供している。) 3. She works in the financial services industry.(彼女は金融サービス業界で働いている。) 4. The government is committed to improving public services.(政府は公共サービスの向上に取り組んでいる。) 5. The church holds a weekly service on Sundays.(その教会は毎週日曜日に礼拝を行っている。) 6. The car is due for a service next month.(その車は来月、定期点検が予定されている。) 7. The company has a reputation for outstanding customer service.(その会社は、卓越した顧客サービスで評判がある。) 8. He is performing community service as part of his sentence.(彼は判決の一環として地域奉仕活動を行っている。) 9. The new software offers several useful services for businesses.(新しいソフトウェアは、ビジネスに役立ついくつかのサービスを提供している。) 10. The airline is known for its excellent in-flight service.(その航空会社は、優れた機内サービスで知られている。)サービス
誰かのために何かを行うこと、他者の助けになること。無形の財や価値あるいは労役などを提供すること。奉仕。用役。尽力。提供。
サービス(service)は英語に由来する語であり、動詞 serve の名詞形、語源を辿ると slave(奴隷)と同源のラテン語に行き着く。英語辞書における定義は、例えばオックスフォード英語辞書では「 The action of helping or doing work for someone. 」(誰かの手助けをしたり誰かのために仕事をしたりするという行為)という記述が筆頭に挙げられている。
経済用語におけるサービスは無形の財であり、顧客に利便性や満足を与える非物質的な価値である。サービスを提供する産業をサービス業という。サービス業はクラークの産業分類における第三次産業に含まれる。サービス業の主な種類としては、ホテル業、金融業、広告業、イベント興行業などが挙げられる。
関連サイト:
Definition of service in English ― OxfordDictionaries
サービス【service】
サービス
サービスとは、一般的には「提供すること」「奉仕」といった意味の英語である。IT用語としては、主にプログラムが処理やルーチンを実行して他のコンピュータに特定の機能を提供することなどを指す語である。
Service クラス
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文
解説
Service クラスは、<definitions> ルート要素で囲まれた WSDL (Web Services Description Language) <service> 要素に対応します。WSDL の詳細については、http://www.w3.org/TR/wsdl/ の仕様を参照してください。
Imports System Imports System.Web.Services.Description Imports System.Xml Imports Microsoft.VisualBasic Class MyServiceClass Public Shared Sub Main() Try ' Read a WSDL document. Dim myServiceDescription As ServiceDescription = _ ServiceDescription.Read("MathService_vb.wsdl") Dim myServiceCollection As ServiceCollection = _ myServiceDescription.Services Dim noOfServices As Integer = myServiceCollection.Count Console.WriteLine(ControlChars.Newline & _ "Total Number of Services :" & noOfServices.ToString()) ' Gets a reference to the service. Dim myOldService As Service = myServiceCollection(0) Console.WriteLine("No. of Ports in the Service" & _ myServiceCollection(0).Ports.Count.ToString()) Console.WriteLine("These are the ports in the service:") Dim i As Integer For i = 0 To myOldService.Ports.Count - 1 Console.WriteLine("Port name: " & myOldService.Ports(i).Name) Next i Console.WriteLine("Service name: " & myOldService.Name) Dim myService As New Service() myService.Name = "MathService" ' Add the Ports to the newly created Service. Dim j As Integer For j = 0 To myOldService.Ports.Count - 1 Dim PortName As String = myServiceCollection(0).Ports(j).Name Dim BindingName As String = _ myServiceCollection(0).Ports(j).Binding.Name myService.Ports.Add(CreatePort(PortName, BindingName, _ myServiceDescription.TargetNamespace)) Next j Console.WriteLine("Newly created ports -") Dim k As Integer For k = 0 To myService.Ports.Count - 1 Console.WriteLine("Port name: " & myOldService.Ports(k).Name) Next k ' Add the extensions to the newly created Service. Dim noOfExtensions As Integer = myOldService.Extensions.Count Console.WriteLine("No. of extensions: " & noOfExtensions.ToString()) If noOfExtensions > 0 Then Dim l As Integer For l = 0 To myOldService.Ports.Count - 1 myService.Extensions.Add(myServiceCollection(0).Extensions(l)) Next l End If ' Remove the service from the collection. myServiceCollection.Remove(myOldService) ' Add the newly created service. myServiceCollection.Add(myService) myServiceDescription.Write("MathService_New.wsdl") Catch e As Exception Console.WriteLine("Exception:" & e.Message) End Try End Sub 'Main Public Shared Function CreatePort(PortName As String, _ BindingName As String, targetNamespace As String) As Port Dim myPort As New Port() myPort.Name = PortName myPort.Binding = New XmlQualifiedName(BindingName, targetNamespace) ' Create a SoapAddress extensibility element to add to the port. Dim mySoapAddressBinding As New SoapAddressBinding() mySoapAddressBinding.Location = _ "http://localhost/ServiceClass/MathService.vb.asmx" myPort.Extensions.Add(mySoapAddressBinding) Return myPort End Function 'CreatePort End Class 'MyServiceClass
using System; using System.Web.Services.Description; using System.Xml; class MyServiceClass { public static void Main() { try { // Read a WSDL document. ServiceDescription myServiceDescription = ServiceDescription.Read("MathService_CS.wsdl"); ServiceCollection myServiceCollection = myServiceDescription.Services; int noOfServices = myServiceCollection.Count; Console.WriteLine("\nTotal number of services: " + noOfServices); // Gets a reference to the service. Service myOldService = myServiceCollection[0]; Console.WriteLine("No. of ports in the service: "+ myServiceCollection[0].Ports.Count); Console.WriteLine("These are the ports in the service:"); for(int i = 0 ; i < myOldService.Ports.Count; i++) Console.WriteLine("Port name: " + myOldService.Ports[i].Name); Console.WriteLine("Service name: " + myOldService.Name); Service myService = new Service(); myService.Name = "MathService"; // Add the Ports to the newly created Service. for(int i = 0; i < myOldService.Ports.Count; i++) { string PortName = myServiceCollection[0].Ports[i].Name; string BindingName = myServiceCollection[0].Ports[i].Binding.Name; myService.Ports.Add(CreatePort(PortName,BindingName, myServiceDescription.TargetNamespace)); } Console.WriteLine("Newly created ports -"); for(int i = 0; i < myService.Ports.Count; i++) Console.WriteLine("Port name: " + myOldService.Ports[i].Name); // Add the extensions to the newly created Service. int noOfExtensions = myOldService.Extensions.Count; Console.WriteLine("No. of extensions: " + noOfExtensions); if (noOfExtensions > 0) { for(int i = 0; i < myOldService.Ports.Count; i++) myService.Extensions.Add(myServiceCollection[0].Extensions[i]); } // Remove the service from the collection. myServiceCollection.Remove(myOldService); // Add the newly created service. myServiceCollection.Add(myService); myServiceDescription.Write("MathService_New.wsdl"); } catch(Exception e) { Console.WriteLine("Exception: " + e.Message); } } public static Port CreatePort(string PortName,string BindingName, string targetNamespace) { Port myPort = new Port(); myPort.Name = PortName; myPort.Binding = new XmlQualifiedName(BindingName,targetNamespace); // Create a SoapAddress extensibility element to add to the port. SoapAddressBinding mySoapAddressBinding = new SoapAddressBinding(); mySoapAddressBinding.Location = "http://localhost/ServiceClass/MathService_CS.asmx"; myPort.Extensions.Add(mySoapAddressBinding); return myPort; } }
#using <System.Xml.dll> #using <System.Web.Services.dll> #using <System.dll> using namespace System; using namespace System::Web::Services::Description; using namespace System::Xml; Port^ CreatePort( String^ PortName, String^ BindingName, String^ targetNamespace ) { Port^ myPort = gcnew Port; myPort->Name = PortName; myPort->Binding = gcnew XmlQualifiedName( BindingName,targetNamespace ); // Create a SoapAddress extensibility element to add to the port. SoapAddressBinding^ mySoapAddressBinding = gcnew SoapAddressBinding; mySoapAddressBinding->Location = "http://localhost/ServiceClass/MathService_CS.asmx"; myPort->Extensions->Add( mySoapAddressBinding ); return myPort; } int main() { try { // Read a WSDL document. ServiceDescription^ myServiceDescription = ServiceDescription::Read( "MathService_CS.wsdl" ); ServiceCollection^ myServiceCollection = myServiceDescription->Services; int noOfServices = myServiceCollection->Count; Console::WriteLine( "\nTotal number of services: {0}", noOfServices ); // Gets a reference to the service. Service^ myOldService = myServiceCollection[ 0 ]; Console::WriteLine( "No. of ports in the service: {0}", myServiceCollection[ 0 ]->Ports->Count ); Console::WriteLine( "These are the ports in the service:" ); for ( int i = 0; i < myOldService->Ports->Count; i++ ) Console::WriteLine( "Port name: {0}", myOldService->Ports[ i ]->Name ); Console::WriteLine( "Service name: {0}", myOldService->Name ); Service^ myService = gcnew Service; myService->Name = "MathService"; // Add the Ports to the newly created Service. for ( int i = 0; i < myOldService->Ports->Count; i++ ) { String^ PortName = myServiceCollection[ 0 ]->Ports[ i ]->Name; String^ BindingName = myServiceCollection[ 0 ]->Ports[ i ]->Binding->Name; myService->Ports->Add( CreatePort( PortName, BindingName, myServiceDescription->TargetNamespace ) ); } Console::WriteLine( "Newly created ports -" ); for ( int i = 0; i < myService->Ports->Count; i++ ) Console::WriteLine( "Port name: {0}", myOldService->Ports[ i ]->Name ); // Add the extensions to the newly created Service. int noOfExtensions = myOldService->Extensions->Count; Console::WriteLine( "No. of extensions: {0}", noOfExtensions ); if ( noOfExtensions > 0 ) { for ( int i = 0; i < myOldService->Ports->Count; i++ ) myService->Extensions->Add( myServiceCollection[ 0 ]->Extensions[ i ] ); } // Remove the service from the collection. myServiceCollection->Remove( myOldService ); // Add the newly created service. myServiceCollection->Add( myService ); myServiceDescription->Write( "MathService_New.wsdl" ); } catch ( Exception^ e ) { Console::WriteLine( "Exception: {0}", e->Message ); } }
import System.*; import System.Web.Services.Description.*; import System.Xml.*; class MyServiceClass { public static void main(String[] args) { try { // Read a WSDL document. ServiceDescription myServiceDescription = ServiceDescription. Read("MathService_JSL.wsdl"); ServiceCollection myServiceCollection = myServiceDescription. get_Services(); int noOfServices = myServiceCollection.get_Count(); Console.WriteLine("\nTotal number of services: " + noOfServices); // Gets a reference to the service. Service myOldService = myServiceCollection.get_Item(0); Console.WriteLine("No. of ports in the service: " + myServiceCollection.get_Item(0).get_Ports().get_Count()); Console.WriteLine("These are the ports in the service:"); for (int i = 0; i < myOldService.get_Ports().get_Count(); i++) { Console.WriteLine("Port name: " + myOldService.get_Ports(). get_Item(i).get_Name()); } Console.WriteLine("Service name: " + myOldService.get_Name()); Service myService = new Service(); myService.set_Name("MathService"); // Add the Ports to the newly created Service. for (int i = 0; i < myOldService.get_Ports().get_Count(); i++) { String PortName = myServiceCollection.get_Item(0).get_Ports(). get_Item(i).get_Name(); String BindingName = myServiceCollection.get_Item(0).get_Ports(). get_Item(i).get_Binding().get_Name(); myService.get_Ports().Add(CreatePort(PortName, BindingName, myServiceDescription.get_TargetNamespace())); } Console.WriteLine("Newly created ports -"); for (int i = 0; i < myService.get_Ports().get_Count(); i++) { Console.WriteLine("Port name: " + myOldService.get_Ports(). get_Item(i).get_Name()); } // Add the extensions to the newly created Service. int noOfExtensions = myOldService.get_Extensions().get_Count(); Console.WriteLine("No. of extensions: " + noOfExtensions); if (noOfExtensions > 0) { for (int i = 0; i < myOldService.get_Ports().get_Count(); i++) { myService.get_Extensions().Add(myServiceCollection. get_Item(0).get_Extensions().get_Item(i)); } } // Remove the service from the collection. myServiceCollection.Remove(myOldService); // Add the newly created service. myServiceCollection.Add(myService); myServiceDescription.Write("MathService_New.wsdl"); } catch (System.Exception e) { Console.WriteLine("Exception: " + e.get_Message()); } } //main public static Port CreatePort(String PortName, String BindingName, String targetNamespace) { Port myPort = new Port(); myPort.set_Name(PortName); myPort.set_Binding(new XmlQualifiedName(BindingName, targetNamespace)); // Create a SoapAddress extensibility element to add to the port. SoapAddressBinding mySoapAddressBinding = new SoapAddressBinding(); mySoapAddressBinding.set_Location("http://localhost/ServiceClass/" + "MathService_JSL.asmx"); myPort.get_Extensions().Add(mySoapAddressBinding); return myPort; } //CreatePort } //MyServiceClass
System.Web.Services.Description.DocumentableItem
System.Web.Services.Description.NamedItem
System.Web.Services.Description.Service
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
Service コンストラクタ
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
Service プロパティ
パブリック プロパティ
名前 | 説明 | |
---|---|---|
Documentation | DocumentableItem のインスタンスのテキスト ドキュメントを取得または設定します。 ( DocumentableItem から継承されます。) | |
DocumentationElement | DocumentableItem のドキュメント要素を取得または設定します。 ( DocumentableItem から継承されます。) | |
ExtensibleAttributes | Web Services Interoperability (WS-I) Basic Profile 1.1 に準拠する WSDL の属性の拡張機能を表す XmlAttribute 型の配列を取得または設定します。 ( DocumentableItem から継承されます。) | |
Extensions | オーバーライドされます。 Service に関連付けられている機能拡張要素のコレクションを取得します。 | |
Name | 項目の名前を取得または設定します。 ( NamedItem から継承されます。) | |
Namespaces | ServiceDescription オブジェクトが生成されるときに名前空間プレフィックスと名前空間を保持するために使用する、名前空間プレフィックスと名前空間のディクショナリを取得または設定します。 ( DocumentableItem から継承されます。) | |
Ports | Service に格納されている Port インスタンスのコレクションを取得します。 | |
ServiceDescription | Service がメンバとして含まれている ServiceDescription を取得します。 |
Service メソッド
パブリック メソッド
名前 | 説明 | |
---|---|---|
Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) | |
GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) | |
GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) | |
ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) | |
ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |
名前 | 説明 | |
---|---|---|
Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) | |
MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |
Service メンバ
XML Web サービスに関連付けられる Port クラスと関連するインスタンスをセットにしてグループ化します。このクラスは継承できません。
Service データ型で公開されるメンバを以下の表に示します。
パブリック コンストラクタ
名前 | 説明 | |
---|---|---|
Service |
名前 | 説明 | |
---|---|---|
Documentation | DocumentableItem のインスタンスのテキスト ドキュメントを取得または設定します。(DocumentableItem から継承されます。) | |
DocumentationElement | DocumentableItem のドキュメント要素を取得または設定します。(DocumentableItem から継承されます。) | |
ExtensibleAttributes | Web Services Interoperability (WS-I) Basic Profile 1.1 に準拠する WSDL の属性の拡張機能を表す XmlAttribute 型の配列を取得または設定します。(DocumentableItem から継承されます。) | |
Extensions | オーバーライドされます。 Service に関連付けられている機能拡張要素のコレクションを取得します。 | |
Name | 項目の名前を取得または設定します。(NamedItem から継承されます。) | |
Namespaces | ServiceDescription オブジェクトが生成されるときに名前空間プレフィックスと名前空間を保持するために使用する、名前空間プレフィックスと名前空間のディクショナリを取得または設定します。(DocumentableItem から継承されます。) | |
Ports | Service に格納されている Port インスタンスのコレクションを取得します。 | |
ServiceDescription | Service がメンバとして含まれている ServiceDescription を取得します。 |
名前 | 説明 | |
---|---|---|
Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) | |
GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) | |
GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) | |
ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) | |
ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |
名前 | 説明 | |
---|---|---|
Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) | |
MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |
サービス
サービス
(Service から転送)
出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2024/02/01 05:27 UTC 版)
サービス(英: service)あるいは用役(ようえき)、役務(えきむ)とは、経済活動において、売買した後にモノが残らず、効用や満足などを提供する、形のない財を指す経済学の用語である。第三次産業が取り扱う商品である。
注釈
出典
- ^ 小宮路雅博「サービスの諸特性とサービス取引の諸課題 (木綿良行名誉教授古稀記念号)」『成城大學經濟研究』第187巻、2010年2月、149-178頁、CRID 1050001337473516800。
- ^ a b 尾崎政久『自動車日本史』自研社、1955年。doi:10.11501/2476331。 NCID BN04404754。全国書誌番号:55012410 。
- ^ 『消費者教育』 第23巻、光生館、2003年、141頁。
- ^ a b c d e f 武田哲男「6.「無料」はサービスになりえない」『顧客に「感動以上」の喜びを提供するための 「サービス」の常識』PHP研究所、2008年。ISBN 9784569697505。
- ^ “学会HP”. 日本商業学会. 2022年1月23日閲覧。 個人会員1,072名,賛助会員11社・団体,購読会員32件 (2019年7月現在)
- ^ 詳細は総務省の産業分類のページ参照。
- Serviceのページへのリンク