JP4305146B2 - Communication control device, application server, and program - Google Patents
Communication control device, application server, and program Download PDFInfo
- Publication number
- JP4305146B2 JP4305146B2 JP2003396541A JP2003396541A JP4305146B2 JP 4305146 B2 JP4305146 B2 JP 4305146B2 JP 2003396541 A JP2003396541 A JP 2003396541A JP 2003396541 A JP2003396541 A JP 2003396541A JP 4305146 B2 JP4305146 B2 JP 4305146B2
- Authority
- JP
- Japan
- Prior art keywords
- client terminal
- authentication
- data
- user
- received
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Lifetime
Links
- 238000004891 communication Methods 0.000 title claims description 46
- 238000000034 method Methods 0.000 claims description 96
- 238000012545 processing Methods 0.000 claims description 90
- 230000008569 process Effects 0.000 claims description 10
- 238000013475 authorization Methods 0.000 claims description 6
- 210000000746 body region Anatomy 0.000 claims description 5
- 230000004044 response Effects 0.000 description 16
- 230000005540 biological transmission Effects 0.000 description 5
- 230000006870 function Effects 0.000 description 4
- 230000008859 change Effects 0.000 description 2
- 235000014510 cooky Nutrition 0.000 description 2
- 238000010586 diagram Methods 0.000 description 2
- 235000010724 Wisteria floribunda Nutrition 0.000 description 1
- 238000012790 confirmation Methods 0.000 description 1
- 230000000694 effects Effects 0.000 description 1
- 230000006872 improvement Effects 0.000 description 1
- 230000000717 retained effect Effects 0.000 description 1
- 238000012360 testing method Methods 0.000 description 1
Images
Landscapes
- Information Transfer Between Computers (AREA)
Description
本発明は、通信制御装置、特に、認証を受けたクライアント端末に対して、所定のサービスを提供するために、クライアント端末からのアクセスを制御する通信制御装置に関する。 The present invention relates to a communication control apparatus, and more particularly to a communication control apparatus that controls access from a client terminal in order to provide a predetermined service to an authenticated client terminal.
従来、認証サーバのユーザ認証を受けたクライアント端末に対してのみ、HTTP通信により、各種サービスを提供するWebサーバが知られている。このようなWebサーバを含むネットワークシステムでは、クライアント端末からWebサーバに対してアクセスがあった場合、Webサーバは、まず、そのクライアント端末を操作するユーザがすでに認証サーバの認証を受けているか否かを判定する。判定の結果、未認証ユーザの場合は、クライアント端末に対して、認証サーバの認証を受けるように指示を出す。そして、クライアント端末から、認証サーバによるユーザ認証を受けた旨の通知を受けるのを待って、Webサーバは、そのクライアント端末との間にセッションを確立させ、そのクライアント端末に対して、各種サービスを提供する。 2. Description of the Related Art Conventionally, a web server that provides various services by HTTP communication is known only to a client terminal that has received user authentication from an authentication server. In such a network system including a Web server, when a client terminal accesses the Web server, the Web server first checks whether the user operating the client terminal has already been authenticated by the authentication server. Determine. If it is determined that the user is an unauthenticated user, the client terminal is instructed to receive authentication from the authentication server. Then, after receiving notification from the client terminal that the user authentication by the authentication server has been received, the Web server establishes a session with the client terminal, and provides various services to the client terminal. provide.
このようなHTTP通信を利用して、Webサーバが、ユーザ認証を行ったクライアント端末に対して、各種サービスを提供するシステムとして、例えば、特開2003−296277号公報(以下、特許文献1)に開示された技術がある。 For example, Japanese Patent Laid-Open No. 2003-296277 (hereinafter referred to as Patent Document 1) discloses a system that provides various services to a client terminal for which a Web server performs user authentication using such HTTP communication. There are disclosed techniques.
この特許文献1では、HTTP通信として、HTTPのGETメソッドやPOSTメソッドを利用して通信を行い、HTTPの機能の一つであるリダイレクトを使用して、ユーザ認証を行っている。 In this patent document 1, as HTTP communication, communication is performed using an HTTP GET method or POST method, and user authentication is performed using a redirect which is one of HTTP functions.
ここで、GETメソッドとは、サーバ等へアクセスする場合に使用するメソッドであり、HTTPメッセージ形式の一つである。具体的には、GETメソッドを構成するヘッダ領域に記述されるURL(Uniform Resource Identifer)に直接送信先へ送りたいデータを記述する形式のことをいう。例えば、ヘッダ領域に記述されるURLが、「http://test.fujixerox.co.jp/login?user=fuji&passwd=xerox」という記述の場合、「?」より前の記述が、データ送信先となるサーバ等のアクセス先(アドレス)を示し、「?」より後の記述が、送信先のサーバ等へ送信すべきデータを示す。つまり、GETメソッドを使用する場合、ヘッダ領域に記述されたデータのみ送信すれば、所望のデータを送信先のサーバ等へ送信することができる。しかし、GETメソッドのURLに書き込むことが可能なデータ量には、制限があり、大量のデータを送信する場合などには適さない。一方、POSTメソッドも、サーバ等へアクセスする場合に使用するメソッドの一つであり、HTTPメッセージ形式の一つである。しかし、ヘッダ領域とは別に定義されたボディ領域に、送信先のサーバ等へ送信すべきデータを記述する点で、GETメソッドとは異なる。POSTメソッドを利用する場合、ヘッダ領域のデータのほかに、HTTP通信において、ボディ領域のデータも送信先のサーバ等に送信する必要がある。POSTメソッドは、送信するデータ量が多かったり、メッセージにファイルを添付して送信する場合や、直接URLに書き込んで送信することで、サーバ上にデータをログとして残したくない場合などに使用されることが多い。また、リダイレクトとは、アクセスしてきた端末等に対して、別の接続先へアクセスするように指示を出すことをいう。 Here, the GET method is a method used when accessing a server or the like, and is one of HTTP message formats. Specifically, it refers to a format that describes data to be sent directly to a destination in a URL (Uniform Resource Identifier) described in a header area constituting a GET method. For example, when the URL described in the header area is “http://test.fujixerox.co.jp/login?user=fuji&passwd=xerox”, the description before “?” Is the data transmission destination. The description after “?” Indicates the data to be transmitted to the transmission destination server or the like. That is, when using the GET method, if only the data described in the header area is transmitted, desired data can be transmitted to a destination server or the like. However, the amount of data that can be written to the URL of the GET method is limited, and is not suitable for transmitting a large amount of data. On the other hand, the POST method is one of methods used when accessing a server or the like, and is one of HTTP message formats. However, it differs from the GET method in that data to be transmitted to a destination server or the like is described in a body area defined separately from the header area. When the POST method is used, in addition to the header area data, the body area data needs to be transmitted to the transmission destination server or the like in HTTP communication. The POST method is used when there is a large amount of data to be transmitted, when a file is attached to a message for transmission, or when it is not desired to leave data as a log on the server by directly writing to a URL for transmission. There are many cases. Redirection refers to issuing an instruction to access another connection destination to a terminal that has accessed.
このようなGETメソッド等を利用して、特許文献1では、次のように、ユーザ認証を行っている。 Using such a GET method or the like, in Patent Document 1, user authentication is performed as follows.
まず、WWWブラウザは、GETメソッドを用いて、例えば、「GET url1 HTTP/1.X」といった要求メッセージを、WWWアプリケーションに送信する。ここで、「url1」は、WWWアプリケーションのURLを示す。WWWアプリケーションは、WWWブラウザからのアクセスを受けると、SSOサーバ(認証サーバ)の認証を受けたユーザからのアクセスか否かを判断する。そして、まだ認証が済んでいないユーザからのアクセスであった場合、WWWアプリケーションは、SSOサーバによるユーザ認証を受けるように、SSOサーバへのリダイレクトをWWWブラウザに対して指示する。 First, the WWW browser transmits, for example, a request message such as “GET url1 HTTP / 1.X” to the WWW application using the GET method. Here, “url1” indicates the URL of the WWW application. When receiving an access from the WWW browser, the WWW application determines whether the access is from a user who has been authenticated by the SSO server (authentication server). If the access is from a user who has not been authenticated yet, the WWW application instructs the WWW browser to redirect to the SSO server so as to receive user authentication by the SSO server.
そして、WWWアプリケーションからのリダイレクトを受信したWWWブラウザは、その要求に従い、指定されたURLを有するSSOサーバに対して、アクセスし、ユーザ認証要求を行う。SSOサーバは、ユーザ認証が成功すると、WWWアプリケーションにアクセスするように、WWWアプリケーションへのリダイレクトをWWWブラウザに対して指示する。リダイレクト指示を受けたWWWブラウザは、再度WWWアプリケーションにアクセスすることで、セッションが保持され、所望のサービスの提供を受ける。 Then, the WWW browser that has received the redirect from the WWW application accesses the SSO server having the designated URL and makes a user authentication request in accordance with the request. When the user authentication is successful, the SSO server instructs the WWW browser to redirect to the WWW application so as to access the WWW application. The WWW browser that has received the redirect instruction accesses the WWW application again, thereby holding the session and receiving a desired service.
このように、HTTPのリダイレクトを利用して、ユーザ認証を行う場合、クライアント端末(WWWブラウザ)は、WWWアプリケーションに直接アクセスすれば、その後、リダイレクトの機能により、自動的に認証サーバにアクセスし、認証成功後は、さらにリダイレクトすることで、クライアント端末は、WWWアプリケーションとの間にセッションを確立できるため、クライアント端末は、認証サーバのURLを直接知らなくても、サービスの提供を受けることができる。 In this way, when performing user authentication using HTTP redirection, if the client terminal (WWW browser) directly accesses the WWW application, then it automatically accesses the authentication server by the redirection function and performs authentication. After the success, the client terminal can establish a session with the WWW application by further redirecting. Therefore, the client terminal can be provided with a service without directly knowing the URL of the authentication server.
上述したような認証サーバの認証成功により保持された、クライアント端末とWWWアプリケーションとのセッションは、永続的に確立しておくと、WWWアプリケーションの処理を行うサーバのメモリ空間を圧迫したり、セキュリティ上の問題があるため、クライアント端末からのレスポンスが一定の期間なかった場合、強制的にセッションを切断するようにシステムも構成するのが一般的である。しかしながら、このように構成されたシステムにおいて、リダイレクトの機能を利用すると、リダイレクトのRFCの規定上、次のような課題が生じる。 If the session between the client terminal and the WWW application held by the authentication server successful as described above is permanently established, the memory space of the server that performs the WWW application processing may be compressed, In general, the system is also configured to forcibly disconnect the session when there is no response from the client terminal for a certain period. However, when the redirect function is used in the system configured as described above, the following problems occur due to the definition of the redirect RFC.
すなわち、リダイレクトは、RFC2616の規定されているとおり、GETメソッドのみ使用可能であり、リダイレクトを受け取った受信側は、リダイレクトに示されたURLに対して、GETメソッドを用いてアクセスを行う。POSTメソッドを使用して、アクセスした場合でも、RFCの規定上、リダイレクトは、GETメソッドによりアクセスが行われる。すると、GETメソッドには、上述のようにボディ領域について定義されていないため、POSTメソッドに対してリダイレクトが行われた場合、POSTメソッドのボディ領域に含まれるデータは、リダイレクトによって、失われてしまうこととなる。 That is, as defined in RFC 2616, only the GET method can be used for redirection, and the receiving side that has received the redirection accesses the URL indicated in the redirection using the GET method. Even when accessed using the POST method, the redirect is accessed by the GET method according to the RFC specification. Then, since the body region is not defined in the GET method as described above, when the redirect is performed for the POST method, the data included in the body region of the POST method is lost due to the redirect. It will be.
したがって、従来において、クライアント端末とWWWアプリケーションとの間にセッションが確立されてから一定期間経過後に、クライアント端末が、WWWアプリケーションに処理させたデータを作成して、POSTメソッドを用いて、そのデータをボディ領域に書き込み、WWWアプリケーションにアクセスしたとしても、すでにセッションが切断され、上述したような認証に伴うリダイレクトが行われると、クライアント端末から送信されたPOSTメソッドのボディ領域に書き込まれたデータは失われてしまう。よって、クライアント端末は、先ほど作成したデータを、WWWアプリケーションに提供し処理してもらうためには、ユーザ認証が行われ、セッションが再確立された後に、同じデータを再度作成し、POSTメソッドにて再送する必要がある。 Therefore, conventionally, after a certain period of time has elapsed since the session was established between the client terminal and the WWW application, the client terminal creates data processed by the WWW application and uses the POST method to store the data. Even if you write to the body area and access the WWW application, if the session is already disconnected and redirection is performed as described above, the data written to the body area of the POST method sent from the client terminal is lost. It will be broken. Therefore, in order for the client terminal to provide and process the previously created data to the WWW application, after the user authentication is performed and the session is re-established, the same data is created again, and the POST method is used. It is necessary to resend.
上記では、HTTP通信において、リダイレクトを用いた認証を行った後にアプリケーションを提供するシステムにおいて、タイムアウト等が原因で、一度確立されたセッションが切断してしまい、再認証が行われたことにより、POSTメソッドのボディ領域に書き込まれたデータが失われてしまうことを例として挙げた。しかし、このようなデータの喪失は、認証後に、タイムアウト等が原因で、一度確立されたセッションが切断してしまい、再度認証が行われるシステムでは、同様に起こる可能性がある。 In the above, in a system that provides an application after performing authentication using redirect in HTTP communication, the session once established is disconnected due to timeout or the like, and re-authentication is performed. As an example, the data written in the body area of the method is lost. However, such data loss may occur in the same way in a system in which a session once established is disconnected due to a timeout or the like after authentication and authentication is performed again.
本発明は、上記課題を鑑みてなされたものであり、認証を伴うアプリケーションを利用するシステムにおいて、アプリケーションの利便性の向上を図ることを目的とする。 The present invention has been made in view of the above problems, and an object of the present invention is to improve the convenience of an application in a system that uses an application with authentication.
本発明に係る通信制御装置は、利用者によりクライアント端末から送信された、指定したサービス処理装置が処理する処理対象データと、指定したサービス処理装置を特定するサービス識別子とを含む情報データを受信する受信手段と、前記受信手段により受信された情報データを送信したクライアント端末の利用者が所定の認証装置の認証を受けていない場合、当該クライアント端末と当該情報データに含まれるサービス識別子とに関連づけて、当該情報データに含まれる処理対象データを保持する保持手段と、前記受信手段により受信された情報データを送信したクライアント端末の利用者が前記認証装置の認証を受けていない場合、当該クライアント端末に対して、前記認証装置への認証要求を指示する認証要求指示手段と、クライアント端末から前記認証要求の指示に対する認証が済んだことを示す通知を受けるのを待って、前記保持手段に保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該クライアント端末から送信されたデータとして、当該処理対象データに関連づけられたサービス識別子に基づき特定したサービス処理装置に提供する提供手段と、を備える。 Communication control apparatus according to the present invention is transmitted from the client terminal by the user, received and processed data specified service processing apparatus for processing, the including information data and a service identifier for identifying the specified service processor receiving means for, if the user of the client terminal transmitting the information data received by the receiving means has not received the authorization of a predetermined authentication device associated with the service identifier contained in the client terminal and the information data Te, a holding means for the processing object data included in the information data to retain, if the user of the client terminal transmitting the information data received by the receiving means has not received the authentication of the authentication device, the client the terminal, an authentication request instruction means for instructing an authentication request to the authentication device, client Waiting for the preparative terminal for receiving a notification indicating that they are done authentication against the instruction of the authentication request, among the processed data held in said holding means, the processing object data associated with the client terminal, as data transmitted from the client terminal, and a providing means for providing the identified service processing apparatus based on the service identifier associated with the processed data.
本発明によれば、未認証のクライアント端末が送信した情報データであった場合でも、その情報データに含まれる処理対象データを、保持手段に保持しておき、そのクライアント端末からの認証済み報告通知を受けるのを待って、提供手段が、保持手段に保持した処理対象データを、そのサービス対象データに関連づけられたクライアント端末から送信されたデータとして、そのサービス対象データに関連づけられたサービス識別子に基づき特定したサービス処理装置に提供することができる。これにより、例えば、クライアント端末は、情報データを送信した際に、未認証であった場合でも、認証を受けた後、改めて同一の情報データを送信する手間が省け、利便性の向上を図ることができる。 According to the present invention, even in the case of information data transmitted by an unauthenticated client terminal, the processing target data included in the information data is held in the holding unit, and an authenticated report notification is sent from the client terminal The providing means waits to receive the processing target data held in the holding means as data transmitted from the client terminal associated with the service target data, based on the service identifier associated with the service target data. It can be provided to the identified service processing device. As a result, for example, even if the client terminal is not authenticated when transmitting the information data, it is possible to save the trouble of transmitting the same information data again after receiving the authentication, thereby improving convenience. Can do.
本発明に係る通信制御装置は、利用者によりクライアント端末から送信された、指定したアプリケーション処理装置が処理する処理対象データがボディ領域に書き込まれ、かつ指定したアプリケーション処理装置のアドレスがヘッダ領域に書き込まれたPOSTメソッドを受信する受信手段と、前記受信手段により受信されたPOSTメソッドを送信したクライアント端末の利用者が所定の認証サーバの認証を受けていない場合、当該クライアント端末と当該POSTメソッドのヘッダ領域に書き込まれたアプリケーション処理装置のアドレスとに関連づけて、当該POSTメソッドのボディ領域に書き込まれた処理対象データを保持する保持手段と、前記受信手段により受信されたPOSTメソッドを送信したクライアント端末の利用者が所定の認証サーバの認証を受けていない場合、当該クライアント端末に対して、前記認証サーバへの認証要求を指示するリダイレクトを行うリダイレクト手段と、クライアント端末から前記リダイレクト手段が行ったリダイレクトに対する認証が済んだことを示すGETメソッドによる通知を受けるのを待って、前記保持手段に保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該クライアント端末から送信されたデータとして、当該処理対象データに関連づけられたアドレスに基づき特定したアプリケーション処理装置に提供する提供手段と、を備える。 In the communication control apparatus according to the present invention, the processing target data to be processed by the specified application processing apparatus transmitted from the client terminal by the user is written in the body area, and the address of the specified application processing apparatus is written in the header area. receiving means for receiving a POST method which, if the user of the client terminal transmitting the POST method received by the receiving means has not received the authorization of a predetermined authentication server, the client terminal and the header of the POST method in association with the address of the application processing apparatus written in the area, the client terminal that the processing object data written in the body region of the POST method to send a holding unit that holds, the POST method received by the receiving means Users of If not certified by the constant authentication server for the client terminal, and redirection means for performing a redirect to instruct an authentication request to the authentication server, the authentication against the client terminal to redirect the redirection means is performed waiting to receive a notification by GET method which indicates that after completion, of the processing object data held in the holding means, the processing object data associated with the client terminal, as data transmitted from the client terminal, and a providing means for providing the identified application processor based on the address associated with the processed data.
本発明によれば、アプリケーション処理装置が処理する処理対象データがボディ領域に書き込まれたPOSTメソッドを送信したクライアント端末が、所定の認証サーバの認証を受けていなかった場合に、認証要求のためのリダイレクトがなされたとしても、保持手段が、POSTメソッドのボディ領域に書き込まれた処理対象データを一時保持し、提供手段が、クライアント端末からGETメソッドによる認証済み報告通知を受けるのを待って、その処理対象データをアプリケーション処理装置に提供する。よって、例えば、処理対象データがボディ領域に書き込まれたPOSTメソッドを送信したクライアント端末が、所定の認証サーバの認証を受けていなかった場合に、認証要求のためのリダイレクトがなされたとしても、その処理対象データは、破棄されることなく、アプリケーション処理装置に提供されるため、クライアント端末は、同じ処理対象データがボディ領域に書き込まれたPOSTメソッドを再度送信する手間が省け、利便性の向上につながる。
本発明に係るアプリケーションサーバは、クライアント端末からのアクセスを制御する通信制御手段と、アクセスしてきたクライアント端末によって指定されたアプリケーションサービスのサービス処理を実行するサービス処理手段と、を備えるアプリケーションサーバにおいて、前記通信制御手段は、利用者によりクライアント端末から送信された、前記サービス処理手段がサービス処理を実行する処理対象データと、指定されたアプリケーションサービスを特定するサービス識別子とを含む情報データを受信する受信手段と、前記受信手段により受信された情報データを送信したクライアント端末の利用者が所定の認証サーバの認証を受けていない場合、当該クライアント端末と当該情報データに含まれるサービス識別子とに関連づけて、当該情報データに含まれる処理対象データを保持する保持手段と、前記受信手段により受信された情報データを送信したクライアント端末の利用者が前記認証装置の認証を受けていない場合、当該情報データを送信したクライアント端末に対して、前記認証サーバへの認証要求を指示する認証要求指示手段と、クライアント端末から前記認証要求の指示に対する認証が済んだことを示す通知を受けるのを待って、前記保持手段に保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該処理対象データに関連づけられたサービス識別子に基づき特定したアプリケーションサービスのサービス処理を実行させるために、当該処理対象データに関連づけられたクライアント端末から送信されたデータとして、前記サービス処理手段に提供する提供手段と、を備える。
本発明に係るプログラムは、利用者によりクライアント端末から送信された、指定したサービス処理装置が処理する処理対象データと、指定したサービス処理装置を特定するサービス識別子とを含む情報データを受信する受信手段、前記受信手段により受信された情報データを送信したクライアント端末の利用者が所定の認証装置の認証を受けていない場合、当該クライアント端末と当該情報データに含まれるサービス識別子とに関連づけて、当該情報データに含まれる処理対象データを保持部に保持させる保持手段、前記受信手段により受信された情報データを送信したクライアント端末の利用者が前記認証装置の認証を受けていない場合、当該情報データを送信したクライアント端末に対して、前記認証装置への認証要求を指示する認証要求指示手段、クライアント端末から前記認証要求の指示に対する認証が済んだことを示す通知を受けるのを待って、前記保持部が保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該クライアント端末から送信されたデータとして、当該処理対象データに関連づけられたサービス識別子に基づき特定したサービス処理装置に提供する提供手段、としてコンピュータを機能させる。
According to the present invention, when the client terminal that has transmitted the POST method in which the processing target data to be processed by the application processing apparatus is written in the body area has not been authenticated by the predetermined authentication server, Even if the redirect is made, the holding means temporarily holds the processing target data written in the body area of the POST method, and waits for the providing means to receive an authenticated report notification by the GET method from the client terminal. The processing target data is provided to the application processing apparatus. Therefore, for example, even if the client terminal that sent the POST method in which the processing target data is written in the body area has not been authenticated by a predetermined authentication server, even if the authentication request is redirected, Since the processing target data is provided to the application processing apparatus without being discarded, the client terminal can save the trouble of retransmitting the POST method in which the same processing target data is written in the body area, thereby improving convenience. Connected.
The application server according to the present invention is an application server comprising: a communication control unit that controls access from a client terminal; and a service processing unit that executes a service process of an application service specified by the client terminal that has accessed the server. A communication control means is a receiving means for receiving information data transmitted from a client terminal by a user and including processing target data for the service processing means to execute service processing and a service identifier for specifying a designated application service. And if the user of the client terminal that transmitted the information data received by the receiving means has not been authenticated by a predetermined authentication server, it is associated with the client terminal and the service identifier included in the information data. If the user of the client terminal that has transmitted the information data received by the receiving unit and the holding unit that holds the processing target data included in the information data is not authenticated by the authentication device, the information data is transmitted. Waiting for receiving an authentication request instruction means for instructing an authentication request to the authentication server from the client terminal, and a notification indicating that the authentication for the authentication request instruction has been completed from the client terminal. In order to execute the service processing of the application service identified based on the service identifier associated with the processing target data, the processing target data associated with the client terminal is processed. Data sent from the client terminal associated with , And a providing means for providing to said service processing unit.
The program according to the present invention is a receiving means for receiving information data including processing target data to be processed by a designated service processing device and a service identifier for identifying the designated service processing device, transmitted from a client terminal by a user. If the user of the client terminal that transmitted the information data received by the receiving means has not been authenticated by a predetermined authentication device, the information is associated with the client terminal and the service identifier included in the information data. Holding means for holding the processing target data included in the data in the holding unit; if the user of the client terminal that sent the information data received by the receiving means has not been authenticated by the authentication device, send the information data Authentication that instructs an authentication request to the authentication device to the client terminal The processing target data associated with the client terminal among the processing target data held by the holding unit after waiting for the notification indicating that the authentication request instruction is authenticated from the client terminal. As a data transmitted from the client terminal, the computer is caused to function as providing means for providing the service processing device specified based on the service identifier associated with the processing target data.
本発明の実施の形態(以下、実施形態とする)について、以下、図面を用いて説明する。図1は、本実施形態におけるシステム構成を示す図である。図1において、WWWブラウザ10、WWWアプリケーション20、認証サーバ30は、ネットワーク40を介して相互にHTTPなどのプロトコルを使用して通信を行う。本実施形態では、WWWブラウザ、WWWアプリケーション、認証サーバは、それぞれ1つのみシステム上に存在するが、もちろん、多くのWWWブラウザ、WWWアプリケーション、認証サーバを含むシステムでもよい。
Embodiments of the present invention (hereinafter referred to as embodiments) will be described below with reference to the drawings. FIG. 1 is a diagram showing a system configuration in the present embodiment. In FIG. 1, a
WWWブラウザ10は、クライアント端末(図示せず)上で動作するソフトウェアであり、ネットワーク40を介して、HTTP通信により様々なサービスや情報の提供を受ける。クライアント端末は、例えば、デスクトップコンピュータ、ラップトップコンピュータ、PDA、携帯電話など、ネットワークに接続可能な端末であって、WWWブラウザが動作する環境を提供可能な端末であれば何でもよい。
The
WWWアプリケーション20は、WWWブラウザ10に対して各種のサービスを提供する。また、WWWアプリケーション20は、コンピュータなどのネットワーク装置(サーバ)上でWWWブラウザ10にサービスを提供するソフトウェアである。また、WWWアプリケーション20は、ユーザ認証が行われたユーザにのみサービスを提供する。
The
認証サーバ30は、WWWブラウザ10からのアクセスに対して、ユーザ認証を行うとともに、WWWアプリケーション20からの要求に応じてユーザ認証結果を返す。
The
ここで、さらに、WWWアプリケーション20と認証サーバ30について説明する。
Here, the
WWWアプリケーション20は、通信制御部21と処理部22とを含み構成されている。通信制御部21は、ネットワーク40を介して、WWWブラウザ10からのアクセスを受け付けて、対応する処理を行う。例えば、未認証のWWWブラウザ10からのアクセスを受け付けた際には、WWWブラウザ10を利用しているユーザが認証済みであるか否かを判断する。そして、判断の結果、未認証であれば、認証の判断等に使用するリクエストIDを発行するとともに、WWWブラウザ10に対して、認証サーバ30へのリダイレクトを行う。これにより、WWWブラウザ10に対して、認証サーバ30による認証を受けさせる。また、認証済みのWWWブラウザ10からのアクセスであった場合には、先に発行したリクエストIDを受け取って、処理部22にサービスを行わせる。また、通信制御部21は、リダイレクトによりWWWブラウザ10から、認証済み報告通知を受けると、WWWブラウザ10との間のセッションを一定期間保持する。ただし、そのセッションは、一定期間経過後は、切断し、その後再度そのユーザからアクセスがあった場合は、再度WWWブラウザ10に対して、認証サーバ30へのリダイレクトを行う。
The
さらに、本実施形態における通信制御部21は、アクセスしてきたWWWブラウザ10が未認証であって、それがPOSTメソッドを用いたアクセスであった場合、リダイレクトに伴うGETメソッドを用いた認証済み報告の通知を受けるまでの間、そのPOSTメソッドのボディ領域に書き込まれたデータを一時保持することを特徴としている。そして、通信制御部21は、WWWブラウザ10からのGETメソッドを用いた認証済み報告を受けた後に、そのGETメソッドを、先ほど一時保持したデータがボディ領域に書き込まれたPOSTメソッドとなるようにエミュレートして、処理部22へ渡す。これにより、POSTメソッドを用いてアクセスしてきたWWWブラウザ10が、未認証ユーザからのアクセスであった場合にも、POSTメソッドのボディ領域に書き込まれたデータは破棄されることなく、処理部22に提供される。
Furthermore, the
これにより、例えば、WWWブラウザ上に表示された各入力フォームに、ユーザが必要に応じて、データを入力して、WWWアプリケーションの管理するデータベースに登録するようなシステムでは、次のような効果がある。すなわち、WWWブラウザ10が、ユーザ認証を受けた後に、WWWアプリケーション20から、図2に示すようなブラウザ表示画面を受け取り、ユーザが、クライアント端末に備えられたキーボードなどを使用して、各入力フォームに必要事項を入力する。ここで、入力フォームに入力されるデータとしては、テキストデータであったり、文書作成ツールなどの他のソフトウェアで作成した文書データや画像データ等の添付ファイルデータなどである。そして、データを入力した後、WWWブラウザ10が、その入力データのデータ形式変換を行い、その入力内容をボディ領域に書き込んでPOSTメソッドにより、WWWアプリケーション20へアクセスを試みる。その際に、例えば、ユーザが入力フォームに内容を入力する時間が多くかかったことなどが原因で、入力途中に、ユーザ認証によって確立されたWWWブラウザ10とWWWアプリケーション20との間のセッションがタイムアウトして、切断されてしまうことがある。その場合、WWWアプリケーション20は、リダイレクトにより、改めてWWWブラウザ10に対して認証を受けさせる。しかし、上述したように、リダイレクトは、RFCの規定上、GETメソッドを用いて行われるため、従来のWWWアプリケーションでは、先ほど、WWWブラウザ10より受け取ったPOSTメソッドのボディ領域に書き込まれたデータを破棄せざるを得なかった。一方、本実施形態におけるWWWアプリケーション20は、通信制御部21において、POSTメソッドのボディ領域に書き込まれたデータを一時保持しておき、認証の確認を行ったのちに、そのデータを処理部22に提供することができるため、認証が終了したのち、ユーザは改めて、各入力フォームに同じ内容を入力する必要がなく、WWWアプリケーションの利便性の向上を果たすことができる。
Thus, for example, in a system in which a user inputs data to each input form displayed on a WWW browser as necessary and registers it in a database managed by the WWW application, the following effects are obtained. is there. That is, after the
認証サーバ30は、認証部31と、個人情報管理データベース32とを含み構成されている。認証部31は、WWWブラウザ10からのアクセスに応じて認証処理を行うと伴に、WWWアプリケーション20からの問い合わせに応じて認証結果の返送などを行う。また、WWWブラウザ10からのアクセスを受けたとき、WWWブラウザ10のユーザが未認証である場合には、WWWブラウザ10に対して、図3に示すような認証フォームを送信してユーザによるユーザIDやパスワードなどの入力情報を受け取る。そして、その入力情報に基づいて、個人情報管理データベース32への問い合わせを行って、ユーザの認証を行う。認証済のユーザによるWWWブラウザ10からのアクセスに対しては、WWWブラウザに対して認証フォームを送信することはせずに、認証処理は行わない。
The
なお、この例では個人情報管理データベース32を認証サーバ30内に設けられるように図示しているが、これに限らず、認証サーバ30とは別のサーバにより構成することも可能である。また、それぞれの構成要素は実際の装置構成と一致しない場合もある。例えば、複数のWWWアプリケーションを一台のコンピュータに実装してもよいし、一台のコンピュータにおいて、WWWアプリケーションと認証サーバとを実現しても構わない。また、例えば、WWWアプリケーション20の通信制御部21と処理部22とを、別々の装置として構成しても構わない。
In this example, the personal
続いて、本実施形態において、未認証のWWWブラウザ10が、WWWアプリケーション20にアクセスしてきた場合の、ユーザ認証フローについて、図4に示すシーケンス図を元に説明する。
Next, a user authentication flow when the
WWWブラウザ10を利用しているユーザは、WWWアプリケーション20を利用する場合には、WWWアプリケーション20のURL(url1)を入力し、アクセスを指示する。するとWWWブラウザ10は、WWWアプリケーション20へのアクセスを行う(S101)。このときのHTTPの要求メッセージでは“GET”メソッドを用い、例えば“GET url1 HTTP/1.x”といった要求メッセージをWWWアプリケーション20へ送る。
When using the
WWWアプリケーション20の通信制御部21は、WWWブラウザ10からのアクセスを受けると、WWWブラウザ10との間にセッションが存在するか否か、すなわち認証済みか否かを判断する(S102)。セッションの有無は、WWWアプリケーション20内に保持しているセッションオブジェクトとして登録されているか否かを判断するなど、任意の方法によって行えばよい。ここではそれまでにWWWブラウザ10との間にセッションが存在しない。そこで、セッションを確立するために、まず新たに、そのWWWブラウザとWWWアプリケーションとを関連づけた固有の識別子であるリクエストIDを一時的に発行して、セッションオブジェクトとして登録しておく(S103)。
When receiving the access from the
WWWアプリケーション20の通信制御部21は、WWWブラウザ10とのセッションが存在していなかったので、WWWブラウザ10に対して認証サーバ30による認証を行うように促すために、認証サーバ30へのリダイレクトをWWWブラウザ10に対して指示する(S104)。具体的には、認証サーバ30のURLをssoとするとき、応答時のコード“302”を用い、応答メッセージとして例えば“HTTP/1.x 302 Moved Temporarily Location:sso+id”などとして、リダイレクトによりアクセスするように応答すればよい。なお、“sso+id”は、認証サーバ30のURL“sso”に、WWWアプリケーション20が一時的に発行したリクエストIDを付加したものである。さらに、WWWアプリケーション20のURLも付加しておくとよい。また、応答時にWWWアプリケーション20用の仮のクッキー(cookie)をWWWブラウザ10に送っておいてもよい。
Since the session with the
WWWブラウザ10は、上述のようなWWWアプリケーション20からの応答メッセージを受けると、自動的に認証サーバ30に対して、認証要求をするためにアクセスを行う(S105)。このようなリダイレクトを利用することによって、ユーザは認証サーバ30のURL等を知らなくても、利用したいWWWアプリケーションにアクセスすれば、初回は認証サーバ30へ自動的にアクセスされるので、利便性を向上させることができる。
When receiving the response message from the
また、自動的に行われるWWWブラウザ10から認証サーバ30へのアクセス時の要求メッセージは、具体的には“GET”メソッドを用い、アドレス部分はS104で渡された“Location:”以降の部分、すなわち“sso+id”である。例えば“GET sso+id HTTP/1.x”といった要求メッセージがWWWブラウザ10から認証サーバ30へ渡される。なお、アドレス部分にWWWアプリケーション20のURLが含まれる場合もある。
Further, the request message when accessing the
認証サーバ30では、WWWブラウザ10からのアクセスを受けた場合、この時点ではいままでにWWWブラウザ10とのセッションはなく、認証を行っていない。従って、認証サーバの認証部31が、新規にセッションを生成し、内部にセッションオブジェクトとして登録しておく。このとき、アドレス部分で渡された、通信制御部21で生成したリクエストIDを用いることができる。また、アドレス部分にWWWアプリケーション20のURLが含まれる場合、そのURLも保持しておく。
When the
新たにWWWブラウザ10からアクセスされた場合、認証部31は、認証を行うための認証フォームをWWWブラウザ10へ送る(S106)。具体的には応答コード“200”を用い、例えば応答ヘッダ“HTTP/1.x 200OK”と、認証フォームのデータを応答メッセージとしてWWWブラウザ10に送信すればよい。このとき、認証サーバ30用の仮のクッキーを送信しておいてもよい。
When newly accessed from the
ユーザが、認証フォームに表示された欄にユーザID及びパスワードを入力したのち、そのユーザが入力したユーザID及びパスワードがWWWブラウザ10から認証サーバ30へ送られる(S107)。
After the user inputs the user ID and password in the column displayed on the authentication form, the user ID and password input by the user are sent from the
WWWブラウザ10から認証サーバ30へユーザID及びパスワードを送信する場合の具体的な要求メッセージは、“POST”メソッドを用い、例えばリクエストラインとして“POST sso HTTP/1.x”、ボディ領域にユーザが入力したユーザID及びパスワードを含めればよい。
A specific request message in the case of transmitting a user ID and password from the
認証部31は、WWWブラウザ10からユーザIDおよびパスワードを受け取ると、個人情報管理データベース32への問い合わせを行い、ユーザの認証を行う(S108)。ユーザIDとパスワードが正しくなければ、認証できなかった旨をWWWブラウザ10に通知し、再入力を受けるかあるいは処理を終了する。
Upon receiving the user ID and password from the
受け取ったユーザIDとパスワードが正しければ、WWWブラウザ10のユーザを正規のユーザとして認証する。このとき、認証サーバ30へのログインが行われ、認証済である状態がユーザのユーザIDとともにセッションオブジェクトとして登録される。
If the received user ID and password are correct, the user of the
認証サーバ30の認証部31での認証が行われたら、認証部31はWWWブラウザ10に対してWWWアプリケーション20へのリダイレクトをするように、応答メッセージを返す(S109)。具体的には、応答コード“302”を使用し、例えば“HTTP/1.x 302 Moved Temporarily Location:url1”とし、WWWアプリケーション20のURL(“url1”)を指定したリダイレクトをWWWブラウザ10に指示すればよい。
When authentication by the
認証サーバ30からのリダイレクトを受けたWWWブラウザ10は、GETメソッドを用いて、認証サーバ30によるユーザ認証が済んだことを通知するために、WWWアプリケーション20にアクセスする(S110)。WWWブラウザ10からのアクセスを受けたWWWアプリケーション20の通信制御部21は、認証サーバ30に対して、先ほど発行したリクエストIDをキーとして、認証されたユーザ名を要求し(S111)、その要求に応じて、認証サーバ30の認証部31は、認証されたユーザ名をWWWアプリケーション20に送信する(S112)。要求したユーザ名を受信した通信制御部21は、ユーザ認証が適正に行われたユーザからのアクセスであると判断して、WWWブラウザ10からの受信したデータを処理部22へ渡し、WWWブラウザ10からの要求に応じたサービスを提供する(S113)。例えば、処理部22は、通信制御部21を介して、図2に示す表示画面フォームをWWWブラウザ10に送信する。
The
このように、ユーザ認証を受けたユーザに対してのみ、サービスを提供するWWWアプリケーションにおいて、リダイレクトを用いて、自動的にWWWブラウザに対して、認証要求を行わせることで、WWWブラウザは、直接認証サーバのURL等を知ることなしに、ユーザ認証を受けて、サービスの提供を受けることができる。 As described above, in a WWW application that provides a service only to a user who has received user authentication, the WWW browser automatically makes an authentication request to the WWW browser by using redirection. Without knowing the URL of the authentication server, it is possible to receive user authentication and receive service.
しかしながら、認証を受けた後、図2に示すような表示画面フォームが提供されたWWWブラウザ10において、ユーザが各入力フォームに必要事項の入力を行っている間に、一定時間が経過してしまうことなどが原因で、ユーザ認証に伴い確立されたセッションが切断されてしまうことがある。すると、WWWブラウザ10が、ユーザによるデータ入力が完了した時点で、その入力データをデータベースに登録する処理をWWWアプリケーション20に行ってもらうために、その入力データを、ボディ領域に書き込んで、POSTメソッドを用いて、WWWアプリケーション20にアクセスしたとしても、セッションが切断されているために、再度、リダイレクトにより認証が行われる。しかし、リダイレクトは、GETメソッドでのみ行われるため、POSTメソッドのボディ領域に書き込まれたデータは、破棄されてしまう。
However, after receiving the authentication, in the
そこで、本実施形態では、ユーザ認証が済んだものの、一定期間が経過してしまったことなどが原因により、セッションが切断された時点で、WWWブラウザ10が、POSTメソッドを用いて、WWWアプリケーション20にアクセスしてきた場合に、図5に示すようなシーケンスを実行することで、そのPOSTメソッドのボディ領域に書き込まれたデータが破棄されてしまうことを防いでいる。
Therefore, in the present embodiment, the
すなわち、図5において、ユーザによるデータ入力が済んだのち、WWWブラウザ10は、POSTメソッドを用いて、そのボディ領域に入力されたデータを書き込んで、WWWアプリケーション20にアクセスする(S201)。WWWアプリケーション20の通信制御部21は、そのアクセスを受けて、そのWWWブラウザ10がユーザ認証を受けているか否かを判断する(S202)。ここでは、タイムアウト等のために一度ユーザ認証が成功し、確立されていたセッションが切断されてしまった場合を想定しているため、通信制御部21は、そのWWWブラウザ10について、未認証と判断する。そこで、新たにユーザ認証を行うために、改めて、一時的なリクエストIDを発行して(S203)、セッションオブジェクトとして登録しておく。さらに、本実施形態の特徴として、通信制御部21は、そのWWWブラウザとWWWアプリケーションとを関連づけた固有の識別子であるリクエストIDに関連づけて、WWWブラウザから受け取ったPOSTメソッドのボディ領域に書き込まれたデータを、通信制御部21が保有するRAM等の記憶部(図示せず)に一時保持する(S204)。
That is, in FIG. 5, after data input by the user is completed, the
続いて、通信制御部21は、WWWブラウザ10に対して認証サーバ30による認証を行うように促すために、認証サーバ30へのリダイレクトをWWWブラウザ10に対して指示する(S205)。この指示は、リダイレクトのため、上述したように、RFCの規定により、GETメソッドにより行われる。したがって、従来であれば、WWWブラウザ10からのPOSTメソッドのボディ領域に書き込まれたデータは、WWWアプリケーションによるリダイレクトにより破棄されてしまう。しかし、本実施形態によれば、S205において、POSTメソッドのボディ領域に書き込まれたデータは、リクエストIDと関連づけられて一時保持されるため、破棄されずに済む。
Subsequently, the
そして、WWWアプリケーション20からのリダイレクトを受けたWWWブラウザ10は、認証サーバ30との間で、図4に示すシーケースのS105〜S109と同様の処理をS206〜S210において、実行する。さらに、認証サーバ30による認証に成功すると、認証サーバ30の認証部31からのリダイレクトにより、WWWブラウザ10は、WWWアプリケーション20に、認証サーバ30による認証が済んだことを通知するために、GETメソッドを用いてアクセスする(S211)。WWWブラウザ10からのアクセスを受けて、WWWアプリケーション20の通信制御部21は、図4に示すシーケースのS111〜S112と同様の処理をS212〜S213において、実行することで、正式にユーザ認証が済んだことを認証サーバ30に対して確認する。
Then, the
認証サーバ30への認証確認の後、本実施形態において、特徴的な処理として、通信制御部21は、リクエストIDと関連づけられ、一時保持しているデータが存在するか否かを判断する(S214)。ここでは、先ほど一時保持したデータが存在するため、WWWアプリケーション20は、その一時保持したデータを復元し、POSTメソッド後のrequestオブジェクトをエミュレートするようなラッパーを作成し、処理部22へ渡す(S215)。処理部22は、通信制御部21によって一時保持したデータを復元し、エミュレートされたPOSTメソッドを用いて処理を行うため、S201において、POSTメソッドを用いてアクセスした際の、そのPOSTメソッドのボディ領域に書き込まれたデータは破棄されることなく、処理部22において処理されて、その処理結果が、通信制御部21を介してWWWブラウザ10に提供される(S216)。
After confirming the authentication with the
よって、たとえ、図2に示すような表示画面フォームが提供されたWWWブラウザ10において、ユーザが各入力フォームに必要事項の入力を行っている間に、一定時間が経過してしまうことなどが原因で、ユーザ認証に伴い確立されたセッションが切断されてしまい、改めて、リダイレクトにより認証が行われたとしても、通信制御部21が、そのリダイレクトの前にPOSTメソッドを用いてアクセスされた際のデータを復元し、処理部22に提供するため、ユーザは、認証後に再度同じデータを、入力する手間を省くことができ、WWWアプリケーションの利便性の向上につながる。
Therefore, for example, in the
なお、本実施形態において、説明したユーザ認証方法は、一例に過ぎず、リダイレクトを用いた認証を行うWWWアプリケーションを含むシステムであれば、どのような認証方法でもよい。また、本実施形態では、ユーザ認証の際に用いるリクエストIDを、POSTメソッドのボディ領域に書き込まれたデータを一時保持する際に、併用している。しかし、リクエストIDとは別に、固有のIDを発行して、そのIDに基づいて、データの保持及び復元を行っても構わない。 Note that the user authentication method described in this embodiment is merely an example, and any authentication method may be used as long as the system includes a WWW application that performs authentication using redirection. In this embodiment, the request ID used for user authentication is used together when temporarily storing the data written in the body area of the POST method. However, a unique ID may be issued separately from the request ID, and data may be retained and restored based on the ID.
また、本実施形態では、HTTP通信において、リダイレクトを用いた認証を行った後にアプリケーションを提供するシステムにおいて、タイムアウト等が原因で、一度確立されたセッションが切断してしまい、再認証が行われたことにより、POSTメソッドのボディ領域に書き込まれたデータが失われてしまうことを例として挙げた。しかし、HTTP通信でのPOSTメソッドを利用したシステムでなくとも、認証後に、タイムアウト等が原因で、一度確立されたセッションが切断してしまい、再度認証が行われるシステムであれば、同様に、認証前に受信したいデータを一時保持しておき、認証確認後に、その認証前のデータを復元することで、実現可能である。 In the present embodiment, in the system that provides an application after performing authentication using redirect in HTTP communication, the session once established is disconnected due to timeout or the like, and re-authentication is performed. As an example, the data written in the body area of the POST method is lost. However, even if the system is not a system using the POST method in HTTP communication, if authentication is performed again after authentication, the session once established is disconnected due to a timeout or the like. This can be realized by temporarily storing data to be received in advance and restoring the data before the authentication after the authentication confirmation.
さらに、本実施形態では、WWWブラウザ10とWWWアプリケーション20との間に確立された1つのセッションに対して、1つのPOSTメソッドのボディ領域に書き込まれたデータを関連づけて一時保持するのではなく、WWWブラウザ10とWWWアプリケーション20とに関連づけて発行されるリクエストIDに関連づけて、POSTメソッドのボディ領域に書き込まれたデータを一時保持する。よって、確立された1つのセッションに対して、POSTメソッドのボディ領域に書き込まれたデータを、複数保持することができる。
Furthermore, in this embodiment, instead of temporarily storing the data written in the body area of one POST method in association with one session established between the
加えて、1つのセッションに、POSTメソッドのボディ領域に書き込まれたデータを、複数保持することができるため、図2に示すような、フレームで複数の入力フォームに分割された画面において、複数のPOSTメソッドにより複数のデータが入力された場合でも、データの競合をすることなく、個々のフレームに入力されたデータを適切に管理し、復元することが可能である。 In addition, since a plurality of data written in the body area of the POST method can be held in one session, in a screen divided into a plurality of input forms in a frame as shown in FIG. Even when a plurality of data is input by the POST method, it is possible to appropriately manage and restore the data input to each frame without data conflict.
また、本実施形態は、WWWアプリケーション20の通信制御部21で行う処理内容に改良を加えるだけで、実現可能なため、処理部22での処理内容や、WWWブラウザ10での処理内容は、従来と同一でよい。したがって、本実施形態を実現するために、WWWアプリケーションのシステム変更を大幅に行ったり、WWWブラウザの仕様を変更する必要がなく、容易に現状のシステムに導入することが可能である。
In addition, since the present embodiment can be realized by simply improving the processing content performed by the
10 WWWブラウザ、20 WWWアプリケーション、21 通信制御部、22 処理部、30 認証サーバ、31 認証部、32 個人情報管理データベース、40 ネットワーク。 10 WWW browser, 20 WWW application, 21 communication control unit, 22 processing unit, 30 authentication server, 31 authentication unit, 32 personal information management database, 40 network.
Claims (4)
前記受信手段により受信された情報データを送信したクライアント端末の利用者が所定の認証装置の認証を受けていない場合、当該クライアント端末と当該情報データに含まれるサービス識別子とに関連づけて、当該情報データに含まれる処理対象データを保持する保持手段と、
前記受信手段により受信された情報データを送信したクライアント端末の利用者が前記認証装置の認証を受けていない場合、当該クライアント端末に対して、前記認証装置への認証要求を指示する認証要求指示手段と、
クライアント端末から前記認証要求の指示に対する認証が済んだことを示す通知を受けるのを待って、前記保持手段に保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該クライアント端末から送信されたデータとして、当該処理対象データに関連づけられたサービス識別子に基づき特定したサービス処理装置に提供する提供手段と、
を備える通信制御装置。 Transmitted from the client terminal by the user, a receiving unit and processed data specified service processing apparatus for processing, and a service identifier for identifying the specified service processor receives the including information data,
When the user of the client terminal transmitting the information data received by the receiving means has not received the authorization of a predetermined authentication device, in association with the service identifier contained in the client terminal and the information data, the information data a holding unit that holds the processing object data included in,
Authentication request instruction means for instructing an authentication request to the authentication apparatus to the client terminal when the user of the client terminal that has transmitted the information data received by the receiving means has not received authentication of the authentication apparatus When,
Waiting for the client terminal to receive a notification that they are done authentication against the instruction of the authentication request, among the processed data held in said holding means, the processing object data associated with the client terminal, as data transmitted from the client terminal, and providing means for providing the identified service processing apparatus based on the service identifier associated with the processed data,
A communication control device comprising:
前記受信手段により受信されたPOSTメソッドを送信したクライアント端末の利用者が所定の認証サーバの認証を受けていない場合、当該クライアント端末と当該POSTメソッドのヘッダ領域に書き込まれたアプリケーション処理装置のアドレスとに関連づけて、当該POSTメソッドのボディ領域に書き込まれた処理対象データを保持する保持手段と、
前記受信手段により受信されたPOSTメソッドを送信したクライアント端末の利用者が所定の認証サーバの認証を受けていない場合、当該クライアント端末に対して、前記認証サーバへの認証要求を指示するリダイレクトを行うリダイレクト手段と、
クライアント端末から前記リダイレクト手段が行ったリダイレクトに対する認証が済んだことを示すGETメソッドによる通知を受けるのを待って、前記保持手段に保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該クライアント端末から送信されたデータとして、当該処理対象データに関連づけられたアドレスに基づき特定したアプリケーション処理装置に提供する提供手段と、
を備える通信制御装置。 Receiving means for receiving a POST method transmitted from a client terminal by a user, in which processing target data to be processed by a specified application processing apparatus is written in a body area, and an address of the specified application processing apparatus is written in a header area When,
When the user of the client terminal transmitting the POST method received by the receiving means has not received the authorization of a predetermined authentication server, the address of the application processing apparatus written in the header area of the client terminal and the POST method the association, and retaining means for the processing target data written in the body region of the POST method to retain,
When the user of the client terminal that has transmitted the POST method received by the receiving means has not received authentication of a predetermined authentication server, the client terminal is redirected to instruct an authentication request to the authentication server. Redirection means,
Waiting for the client terminal to be notified by the GET method to indicate against that after completion authentication redirect said redirected unit has performed, among the processed data held in said holding means, associated with the client terminal processing the object data, and providing means for the data transmitted from the client terminal, provides to the specified application processing apparatus based on the address associated with the processed data,
A communication control device comprising:
前記通信制御手段は、
利用者によりクライアント端末から送信された、前記サービス処理手段がサービス処理を実行する処理対象データと、指定されたアプリケーションサービスを特定するサービス識別子とを含む情報データを受信する受信手段と、
前記受信手段により受信された情報データを送信したクライアント端末の利用者が所定の認証サーバの認証を受けていない場合、当該クライアント端末と当該情報データに含まれるサービス識別子とに関連づけて、当該情報データに含まれる処理対象データを保持する保持手段と、
前記受信手段により受信された情報データを送信したクライアント端末の利用者が前記認証装置の認証を受けていない場合、当該情報データを送信したクライアント端末に対して、前記認証サーバへの認証要求を指示する認証要求指示手段と、
クライアント端末から前記認証要求の指示に対する認証が済んだことを示す通知を受けるのを待って、前記保持手段に保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該処理対象データに関連づけられたサービス識別子に基づき特定したアプリケーションサービスのサービス処理を実行させるために、当該処理対象データに関連づけられたクライアント端末から送信されたデータとして、前記サービス処理手段に提供する提供手段と、
を備えるアプリケーションサーバ。 In an application server comprising communication control means for controlling access from a client terminal, and service processing means for executing service processing of an application service designated by the accessed client terminal,
The communication control means includes
Receiving means for receiving information data transmitted from a client terminal by a user, including processing target data for the service processing means to execute service processing , and a service identifier for specifying a specified application service;
When the user of the client terminal transmitting the information data received by the receiving means has not received the authorization of a predetermined authentication server, in association with the service identifier contained in the client terminal and the information data, the information data a holding unit that holds the processing object data included in,
When the user of the client terminal that has transmitted the information data received by the receiving means has not received authentication by the authentication device, the client terminal that has transmitted the information data is instructed to perform an authentication request to the authentication server. Authentication request instruction means for
Waiting for the client terminal for receiving a notification indicating that authentication after completion relative indication of the authentication request, among the processed data held in said holding means, the processing object data associated with the client terminal, the process to execute a service process identified application services based on the service identifier associated with the target data, as data transmitted from the client terminal associated with the processing data, and providing means for providing to said service processing unit ,
An application server comprising
前記受信手段により受信された情報データを送信したクライアント端末の利用者が所定の認証装置の認証を受けていない場合、当該クライアント端末と当該情報データに含まれるサービス識別子とに関連づけて、当該情報データに含まれる処理対象データを保持部に保持させる保持手段、
前記受信手段により受信された情報データを送信したクライアント端末の利用者が前記認証装置の認証を受けていない場合、当該情報データを送信したクライアント端末に対して、前記認証装置への認証要求を指示する認証要求指示手段、
クライアント端末から前記認証要求の指示に対する認証が済んだことを示す通知を受けるのを待って、前記保持部が保持した処理対象データのうち、当該クライアント端末に関連づけられた処理対象データを、当該クライアント端末から送信されたデータとして、当該処理対象データに関連づけられたサービス識別子に基づき特定したサービス処理装置に提供する提供手段、
としてコンピュータを機能させるためのプログラム。 Transmitted from the client terminal by the user, the process target data specified service processing apparatus for processing, receiving means and a service identifier for identifying the specified service processor receives the including information data,
When the user of the client terminal transmitting the information data received by the receiving means has not received the authorization of a predetermined authentication device, in association with the service identifier contained in the client terminal and the information data, the information data holding means for holding the processing object data included in the hold section,
If the user of the client terminal that has transmitted the information data received by the receiving means has not received authentication of the authentication device, the client terminal that has transmitted the information data is instructed to request authentication from the authentication device. Authentication request instruction means to perform,
Waiting for the client terminal to receive a notification that they are done authentication against the instruction of the authentication request, among the processed data to which the holding portion is held, the process target data associated with the client terminal, as data transmitted from the client terminal, providing means for providing the identified service processing apparatus based on the service identifier associated with the processed data,
As a program to make the computer function.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2003396541A JP4305146B2 (en) | 2003-11-27 | 2003-11-27 | Communication control device, application server, and program |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2003396541A JP4305146B2 (en) | 2003-11-27 | 2003-11-27 | Communication control device, application server, and program |
Publications (3)
Publication Number | Publication Date |
---|---|
JP2005157822A JP2005157822A (en) | 2005-06-16 |
JP2005157822A5 JP2005157822A5 (en) | 2006-12-07 |
JP4305146B2 true JP4305146B2 (en) | 2009-07-29 |
Family
ID=34721954
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2003396541A Expired - Lifetime JP4305146B2 (en) | 2003-11-27 | 2003-11-27 | Communication control device, application server, and program |
Country Status (1)
Country | Link |
---|---|
JP (1) | JP4305146B2 (en) |
Families Citing this family (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP4867486B2 (en) * | 2006-06-12 | 2012-02-01 | 富士ゼロックス株式会社 | Control program and communication system |
US8914461B2 (en) | 2006-08-23 | 2014-12-16 | Cyberstation, Inc. | Method and device for editing web contents by URL conversion |
JP4825728B2 (en) * | 2007-05-18 | 2011-11-30 | 株式会社日立製作所 | Information processing apparatus and information processing method |
JP4672038B2 (en) * | 2008-04-10 | 2011-04-20 | 株式会社ソニー・コンピュータエンタテインメント | Information processing system |
JP5174955B2 (en) * | 2009-09-04 | 2013-04-03 | パナソニック株式会社 | Client terminal, server, server client system, cooperative operation processing method, program, and recording medium |
JP5521736B2 (en) | 2010-04-23 | 2014-06-18 | 富士ゼロックス株式会社 | COMMUNICATION CONTROL DEVICE, COMMUNICATION CONTROL PROGRAM, AND COMMUNICATION CONTROL SYSTEM |
JP2011253474A (en) * | 2010-06-04 | 2011-12-15 | Canon Inc | User apparatus identification method and information processing system |
-
2003
- 2003-11-27 JP JP2003396541A patent/JP4305146B2/en not_active Expired - Lifetime
Also Published As
Publication number | Publication date |
---|---|
JP2005157822A (en) | 2005-06-16 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US9866556B2 (en) | Common internet file system proxy authentication of multiple servers | |
US8006098B2 (en) | Integrating legacy application/data access with single sign-on in a distributed computing environment | |
EP2883340B1 (en) | Authorization method, apparatus, and system | |
US7500262B1 (en) | Implementing single sign-on across a heterogeneous collection of client/server and web-based applications | |
US8402518B2 (en) | Secure management of authentication information | |
CN101232375B (en) | Single sign-on system, information terminal device, single sign-on server, single sign-on utilization method | |
US8769645B2 (en) | Brokering a connection to access a secured service | |
US20060264202A1 (en) | System and method for authenticating clients in a client-server environment | |
JP2001512260A (en) | System and method for globally and securely accessing unified information in a computer network | |
JP2004173285A5 (en) | ||
JPWO2007110951A1 (en) | User confirmation apparatus, method and program | |
WO2006000898A1 (en) | System and method for authentificting a user to a service provider | |
US11824854B2 (en) | Communication system and computer readable storage medium | |
JP2007310512A (en) | Communication system, service providing server, and user authentication server | |
CN108200040A (en) | Mobile client exempts from method, system, browser and the mobile terminal of close login | |
JP2010273045A (en) | Server apparatus | |
CN105991640B (en) | Handle the method and device of HTTP request | |
JP4305146B2 (en) | Communication control device, application server, and program | |
CN107343028B (en) | Communication method and system based on HTTP (hyper text transport protocol) | |
CN1794730B (en) | Enhanced internet session management protocol | |
JP6156116B2 (en) | Session management system, session management device, and program | |
JP2023034929A (en) | Information processing device, information processing system, information processing method, and program | |
JP2008217376A (en) | Content sharing method and system | |
US20100175118A1 (en) | Access to service | |
JP4770209B2 (en) | File reciprocation system and program |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20061020 |
|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20061020 |
|
A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20080814 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20080819 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20081016 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20090407 |
|
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20090420 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 4305146 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20120515 Year of fee payment: 3 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20120515 Year of fee payment: 3 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20130515 Year of fee payment: 4 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20140515 Year of fee payment: 5 |
|
S533 | Written request for registration of change of name |
Free format text: JAPANESE INTERMEDIATE CODE: R313533 |
|
R350 | Written notification of registration of transfer |
Free format text: JAPANESE INTERMEDIATE CODE: R350 |
|
EXPY | Cancellation because of completion of term |