JP6563070B2 - Image forming apparatus - Google Patents

Image forming apparatus Download PDF

Info

Publication number
JP6563070B2
JP6563070B2 JP2018084192A JP2018084192A JP6563070B2 JP 6563070 B2 JP6563070 B2 JP 6563070B2 JP 2018084192 A JP2018084192 A JP 2018084192A JP 2018084192 A JP2018084192 A JP 2018084192A JP 6563070 B2 JP6563070 B2 JP 6563070B2
Authority
JP
Japan
Prior art keywords
print job
server
printed
image forming
status
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.)
Active
Application number
JP2018084192A
Other languages
Japanese (ja)
Other versions
JP2018127004A (en
Inventor
岳史 木暮
岳史 木暮
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Canon Inc
Original Assignee
Canon Inc
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by Canon Inc filed Critical Canon Inc
Priority to JP2018084192A priority Critical patent/JP6563070B2/en
Publication of JP2018127004A publication Critical patent/JP2018127004A/en
Application granted granted Critical
Publication of JP6563070B2 publication Critical patent/JP6563070B2/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Accessory Devices And Overall Control Thereof (AREA)
  • Facsimiles In General (AREA)

Description

本発明は、ネットワーク上のサーバに蓄積された印刷ジョブをダウンロードし、印刷する画像形成装置に関する。   The present invention relates to an image forming apparatus that downloads and prints a print job stored in a server on a network.

ネットワーク上に蓄積された印刷ジョブを、画像形成装置がダウンロードし印刷するクラウドプリントサービスが知られている(特許文献1)。   A cloud print service is known in which an image forming apparatus downloads and prints a print job stored on a network (Patent Document 1).

クラウドプリントサービスでは、サービスを提供しているサーバが印刷ジョブを制御するためのAPIを公開し、画像形成装置がそれを利用することでクラウドプリントを実現している。APIは最低限次の3つで構成されている。1つはサーバ上に蓄積されているジョブ情報のリストを取得するAPI(以降fetchと記す)。もう一つはジョブのチケット、画像情報をダウンロードするAPI(以降downloadと記す)。最後の一つはジョブの状態を制御するAPI(以降contorlと記す)である。また、ジョブは最低限次の3つの状態を持つ。印刷待ちの状態(以降QUEUEDと記す),ダウンロード済み状態(以降IN_PROGRESSと記す),印刷済み状態(以降DONEと記す)。   In the cloud print service, a server providing the service publishes an API for controlling a print job, and the image forming apparatus uses the API to realize cloud print. The API is composed of at least the following three. One is an API (hereinafter referred to as “fetch”) that acquires a list of job information stored on the server. The other is an API for downloading job tickets and image information (hereinafter referred to as download). The last one is an API (hereinafter referred to as “control”) that controls the job status. A job has at least the following three states. A print waiting state (hereinafter referred to as QUEUED), a downloaded state (hereinafter referred to as IN_PROGRESS), and a printed state (hereinafter referred to as DONE).

特開2002−108576号公報JP 2002-108576 A

図3は、ネットワーク上に蓄積された印刷ジョブをダウンロードし、印刷を行う際のフローを示している。画像形成装置は印刷処理を行う際、まずS101でfetchを実行し、サーバ上に蓄積されているジョブ情報のリストを取得し、S102に進む。S102では、取得したジョブリストから印刷待ち状態のジョブがあるかどうかを調べ、ある場合はS103に進む。ない場合は終了する。S103では、印刷待ち状態のジョブのチケット、画像情報をダウンロードし、S104に進む。S104では、ダウンロードした情報を元に画像の印刷を行い、S105に進む。   FIG. 3 shows a flow when a print job stored on the network is downloaded and printed. When performing the printing process, the image forming apparatus first executes fetch in S101, acquires a list of job information stored on the server, and proceeds to S102. In S102, it is checked whether or not there is a job waiting to be printed from the acquired job list, and if there is, the process proceeds to S103. If not, exit. In S103, a ticket and image information of a job waiting for printing are downloaded, and the process proceeds to S104. In S104, an image is printed based on the downloaded information, and the process proceeds to S105.

S105では、サーバ上のジョブの状態を印刷済みの状態に設定するためcontrolを実行する。このcontrol実行で、ジョブ状態を印刷済みに設定することで、次のS102の判定で印刷待ちのジョブがなくなり、印刷処理が終了する。このとき、S105のcontrol実行が失敗した場合、次回のS102の判定で、先ほど印刷したジョブの状態が印刷待ちのままであるため、同じジョブを印刷してしまうという課題がある。   In step S105, control is executed to set the job status on the server to a printed status. By executing the control, the job status is set to “printed”, so that there is no job waiting to be printed in the next determination of S102, and the printing process ends. At this time, if the control execution in S105 fails, there is a problem that the same job is printed because the state of the job printed earlier remains awaiting printing in the next determination in S102.

本発明は上記問題を鑑みてなされたものであり、control APIに失敗した際、同じジョブを複数回印刷することを避けることを目的とする。   The present invention has been made in view of the above problems, and an object thereof is to avoid printing the same job a plurality of times when the control API fails.

実施形態の一つの側面として、印刷ジョブが印刷済みであるかを少なくとも示す状態情報を管理するサーバと、前記サーバから状態情報を取得するとともに状態情報が印刷済みでないことを示す印刷ジョブを実行し、印刷後に該印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを前記サーバに送信する画像形成装置と、を有する画像形成システムにおいて、前記サーバは、外部装置から送信されてくる印刷ジョブを受け付けた後、前記印刷ジョブに関する所定の通知を前記画像形成装置に対して送信する通知手段を有し、前記画像形成装置は、印刷済みで且つ前記サーバで管理される状態が印刷済みになっていると確認されていない印刷ジョブの識別情報を記憶する記憶手段と、前記識別情報が記憶されている状態において前記印刷ジョブに関する通知を受け付けたことに従って、前記印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを、前記印刷ジョブを実行することなく前記サーバに対して送信する状態通知手段と、を有することを特徴とする画像形成システムが開示される。As one aspect of the embodiment, a server that manages at least status information indicating whether a print job has been printed, and a print job that acquires status information from the server and indicates that status information has not been printed are executed. And an image forming apparatus that transmits a control API for controlling the job status to the server, which is a command for setting the status of the print job after printing. After receiving a print job transmitted from the apparatus, the image forming apparatus has notification means for transmitting a predetermined notification regarding the print job to the image forming apparatus, and the image forming apparatus is printed and managed by the server Storage means for storing identification information of a print job that has not been confirmed as being printed, and the identification In response to receiving a notification regarding the print job in a state where information is stored, a command for setting the print job state to printed and a control API for controlling the job state is executed. An image forming system comprising: a status notification means for transmitting to the server without doing so.

本発明によれば、control APIに失敗した場合でも、同じジョブを複数回印刷することを避けることができるようになる。   According to the present invention, even when the control API fails, it is possible to avoid printing the same job multiple times.

本実施例における画像形成装置(MFP)の利用環境を示す概略図である。1 is a schematic diagram illustrating a use environment of an image forming apparatus (MFP) in the present embodiment. 図1記載のMFP200のハードウェア構成を示すブロック図である。FIG. 2 is a block diagram showing a hardware configuration of MFP 200 shown in FIG. 1. ネットワーク上のサーバからジョブをダウンロードし印刷する処理を示すフロー図である。It is a flowchart which shows the process which downloads and prints the job from the server on a network. 本実施例における、印刷処理を示すフロー図である。It is a flowchart which shows the printing process in a present Example. 本実施例における、失敗情報を示す。The failure information in a present Example is shown.

以下、本発明を実施するための最良の形態について図面を用いて説明する。   The best mode for carrying out the present invention will be described below with reference to the drawings.

図1は、本実施例における画像形成装置(MFP)の利用環境を示す概略図である。クラウドプリントサーバー100、MFP200、無線ネットワークルーター400などが、クラウドネットワーク500に接続されている。また、PDA端末300は、無線ネットワークルーター400を介して、クラウドネットワーク500に接続されている。   FIG. 1 is a schematic diagram showing a use environment of an image forming apparatus (MFP) in the present embodiment. The cloud print server 100, the MFP 200, the wireless network router 400, and the like are connected to the cloud network 500. The PDA terminal 300 is connected to the cloud network 500 via the wireless network router 400.

PDA端末300は、ユーザーによる印刷指示に応じて、予め定められたプロトコルによってクラウドプリントサーバー100と通信し、印刷の要求を伝える。   The PDA terminal 300 communicates with the cloud print server 100 using a predetermined protocol in response to a print instruction from the user, and transmits a print request.

クラウドプリントサーバー100は、PDA端末300から印刷の要求を受けて、MFP200に対して印刷ジョブが届いたことを通知する。   The cloud print server 100 receives a print request from the PDA terminal 300 and notifies the MFP 200 that a print job has arrived.

MFP200は、クラウドプリントサーバー100からの通知に従って、予め定められたプロトコルでクラウドプリントサーバー100から印刷ジョブを受信し、印刷を実行する。なお、該プロトコルの概要については、後述する。   In accordance with the notification from the cloud print server 100, the MFP 200 receives a print job from the cloud print server 100 using a predetermined protocol, and executes printing. The outline of the protocol will be described later.

図2は、図1記載のMFP200のハードウェア構成を示すブロック図である。図2において、MFP200は、CPU201、ROM202、RAM203、ネットワークインタフェースカード(NIC)204、外部入力コントローラ(PANELC)205、各種ボタン或いはタッチパネル(PANEL)206を備えている。また、MFP200は、ディスプレイコントローラ(DISPC)207、ディスプレイ(DISPLAY)208、ディスクコントローラ(DKC)209、ハードディスク(HD)210を備える。MFP200は、さらに、プリンタ部(PRINTER)211、スキャナ部(SCANNER)212を備えている。   FIG. 2 is a block diagram showing a hardware configuration of MFP 200 shown in FIG. 2, the MFP 200 includes a CPU 201, a ROM 202, a RAM 203, a network interface card (NIC) 204, an external input controller (PANELC) 205, various buttons or a touch panel (PANEL) 206. The MFP 200 includes a display controller (DISPC) 207, a display (DISPLAY) 208, a disk controller (DKC) 209, and a hard disk (HD) 210. The MFP 200 further includes a printer unit (PRINTER) 211 and a scanner unit (SCANNER) 212.

CPU201は、システムバス(System BUS)213に接続される各デバイスを総括的に制御すると共に、ROM202或いは大規模記憶装置であるHD210に記憶されたファームウェアモジュールを実行する。なお、ファームウェアモジュールは、少なくとも2つ以上のモジュールから構成され、ファームウェアモジュールの更新は、それぞれのモジュールごとに行うことが可能である。   The CPU 201 generally controls each device connected to a system bus (System BUS) 213 and executes a firmware module stored in the ROM 202 or the HD 210 which is a large-scale storage device. Note that the firmware module includes at least two modules, and the firmware module can be updated for each module.

また、CPU201は、制御プログラムとしてのファームウェアモジュールに基づき後述の各フローチャートに示す処理を実行する。なお、HD210は、場合によっては画像の一時記憶場所としても使用されることがある。RAM203は、CPU201の主メモリ、ワークエリアとして機能する。   Further, the CPU 201 executes processing shown in each flowchart described later based on a firmware module as a control program. In some cases, the HD 210 may be used as a temporary storage location for images. The RAM 203 functions as a main memory and work area for the CPU 201.

PANELC205は、MFPに装備されたPANEL206からの指示入力を制御する。DISPC207は、DISPLAY208に対する描画を制御する。   The panel ELC 205 controls an instruction input from the panel 206 installed in the MFP. The DISPC 207 controls drawing on the DISPLAY 208.

NIC204は、LAN214を介して他のMFP、ファイルサーバ(不図示)と、双方向にデータのやり取りを行う。PRINTER211は、電子写真方式で記録紙に画像形成を行う。SCANNER212は、記録紙に印刷されている画像の読み取りを行う。SCANNER212には、オプションとしてオートドキュメントフィーダ(不図示)が装着されており、複数枚の原稿を自動的に読み取ることができる。   The NIC 204 bidirectionally exchanges data with other MFPs and file servers (not shown) via the LAN 214. The PRINTER 211 forms an image on a recording sheet by an electrophotographic method. The SCANNER 212 reads an image printed on a recording sheet. The SCANNER 212 is equipped with an auto document feeder (not shown) as an option, and can automatically read a plurality of documents.

図4は、本実施例のジョブのダウンロードと印刷処理の流れを示したフローチャートである。ジョブのダウンロードと印刷処理は、他のプログラムと共に図2記載のHD210に記憶されていて、電源が供給されるとRAM203に展開される。サーバからのジョブ投入通知の受信、あるいはユーザによるジョブ有無の問い合わせ要求を受けると、MFPは図4のフローを開始する。まず、S401において、WebAPIを失敗したジョブの失敗情報があるかどうか失敗情報キューを確認し、失敗したジョブがない場合はS402に進む。失敗したジョブがある場合はS411に進む。失敗情報キューは図5に示す情報を持つ。具体的には、ジョブを特定するためのジョブIDと、失敗の要因を示す情報を保持している。初期起動時は、このキューは空となる。   FIG. 4 is a flowchart showing the flow of job download and print processing according to this embodiment. The job download and print processing are stored in the HD 210 shown in FIG. 2 together with other programs, and are developed in the RAM 203 when power is supplied. When receiving a job submission notification from the server or receiving a job request inquiry from the user, the MFP starts the flow of FIG. First, in S401, the failure information queue is checked to see if there is failure information of a job that has failed WebAPI. If there is no failed job, the process proceeds to S402. If there is a failed job, the process proceeds to S411. The failure information queue has the information shown in FIG. Specifically, it holds a job ID for identifying a job and information indicating the cause of failure. At initial startup, this queue is empty.

S402ではfetchを行う。fetchでサーバに蓄積されたジョブ情報のリストを取得し、S403に進む。S403では、取得したリストから印刷待ち状態のジョブがあるかどうかを確認する。印刷待ち状態のジョブがある場合、一番新しい印刷待ちのジョブを、処理中のジョブとしてセットしS404に進む。ない場合処理を終了する。S404では、処理中のジョブ情報をダウンロードするためdownloadを実行し、S405に進む。   In S402, the fetch is performed. A list of job information stored in the server is acquired by fetch, and the process proceeds to S403. In step S403, it is checked whether there is a job waiting to be printed from the acquired list. If there is a job waiting to be printed, the newest job waiting to be printed is set as a job being processed, and the process proceeds to S404. If not, the process ends. In S404, download is executed to download the job information being processed, and the process proceeds to S405.

S405では、downloadの実行結果を確認し、成功している場合はS406に進む。失敗している場合はS413に進む。S406では、サーバ上のジョブの状態を、ダウンロードが終了したことを示すIN_PROGRESSに設定するためにcontrolを実行し、S407に進む。   In S405, the download execution result is confirmed, and if successful, the process proceeds to S406. If it has failed, the process proceeds to S413. In step S406, control is executed to set the job status on the server to IN_PROGRESS indicating that the download has been completed, and the process advances to step S407.

S407では、controlの実行結果を確認し、成功している場合はS408に進む。失敗している場合はS416に進む。S408では、ダウンロードしたジョブの印刷を行い、S409に進む。S409では、サーバ上のジョブの状態を、印刷が終了したことを示すDONEに設定するためにcontrolを実行し、S410に進む。S410では、controlが成功したかどうかを確認し、成功した場合S418に進む。失敗した場合S417に進む。S411では、失敗情報を失敗情報キューからpopして情報を取得し、処理中のジョブ情報としてセットする。また、失敗情報を保持している領域をクリアし、S412に進む。   In S407, the control execution result is confirmed, and if successful, the process proceeds to S408. If it has failed, the process proceeds to S416. In S408, the downloaded job is printed, and the process proceeds to S409. In step S409, control is executed to set the status of the job on the server to DONE indicating that printing has ended, and the process advances to step S410. In S410, it is confirmed whether or not the control is successful, and if successful, the process proceeds to S418. If unsuccessful, the process proceeds to S417. In S411, the failure information is popped from the failure information queue to acquire the information, and is set as job information being processed. Further, the area holding the failure information is cleared, and the process proceeds to S412.

S412では、取得した失敗情報から失敗要因を調べ、IN_PROGRESS設定のcontrolで失敗したか、donwloadで失敗した場合S404に進み、DONE設定のcontrolで失敗した場合はS420に進む。S413では、fetchを実行しサーバからジョブリストを取得しS414に進む。S414では、取得したジョブリストに現在処理中のジョブが印刷待ち状態であるかを確認し、印刷待ち状態である場合終了し、印刷待ち状態でない場合S403に進む。   In S412, the cause of the failure is checked from the acquired failure information, and if it fails in the IN_PROGRESS setting control or fails in the download, the process proceeds to S404, and if it fails in the DONE setting control, the process proceeds to S420. In step S413, the fetch is executed to acquire a job list from the server, and the process advances to step S414. In S414, it is confirmed whether the job currently being processed is in a print waiting state in the acquired job list. If the job is in a print waiting state, the process is terminated.

S415では、downloadに失敗したことを示す失敗情報を生成して失敗情報キューに追加し、処理を終了する。S416では、IN_PROGRESSに設定するためのcontrolが失敗したことを示す失敗情報を生成して失敗情報キューに追加し、処理を終了する。S417では、DONEに設定するためのcontrolが失敗したことを示す情報を生成して失敗情報キューに追加し、処理を終了する。   In S415, failure information indicating that the download has failed is generated and added to the failure information queue, and the process ends. In S416, failure information indicating that control for setting to IN_PROGRESS has failed is added to the failure information queue, and the process is terminated. In S417, information indicating that the control for setting to DONE has failed is added to the failure information queue, and the process ends.

S418では、失敗情報キューに残りがあるかどうかを確認し、ない場合はS402に進む。ある場合はS419に進む。S419では、失敗情報キューの先頭情報のpopし、保持されているジョブIDを処理ジョブとしてセットし、popした情報をクリアする。そして、S409に進む。   In S418, it is confirmed whether there is any remaining information in the failure information queue. If there is, the process proceeds to S419. In step S419, the head information of the failure information queue is popped, the held job ID is set as a processing job, and the popped information is cleared. Then, the process proceeds to S409.

S420では、fetchを行いサーバからジョブリストをダウンロードし、S421に進む。S421では、取得したジョブリストに処理中のジョブよりも新しい印刷待ちジョブがあるかどうかを判断する。新しい印刷待ちジョブがある場合、そのジョブを印刷するためにS404に進み。ない場合は、再度controlを実行するためにS409に進む。   In S420, fetch is performed to download the job list from the server, and the process proceeds to S421. In step S421, it is determined whether there is a print waiting job that is newer than the job being processed in the acquired job list. If there is a new job waiting for printing, the process proceeds to S404 to print the job. If not, the process advances to step S409 to execute control again.

以上のように構成することによって、本実施例のMFP200は、controlが失敗した場合でも、同じジョブを何度も印刷することを防ぐことができる。   With the configuration described above, the MFP 200 according to the present exemplary embodiment can prevent the same job from being printed many times even when the control fails.

100 LAN
200 MFP
206 PANEL
208 DISPLAY
100 LAN
200 MFP
206 PANEL
208 DISPLAY

Claims (14)

印刷ジョブが印刷済みであるかを少なくとも示す状態情報を管理するサーバと、前記サーバから状態情報を取得するとともに状態情報が印刷済みでないことを示す印刷ジョブを実行し、印刷後に該印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを前記サーバに送信する画像形成装置と、を有する画像形成システムにおいて、
前記サーバは、
外部装置から送信されてくる印刷ジョブを受け付けた後、前記印刷ジョブに関する所定の通知を前記画像形成装置に対して送信する通知手段を有し、
前記画像形成装置は、
印刷済みで且つ前記サーバで管理される状態が印刷済みになっていると確認されていない印刷ジョブの識別情報を記憶する記憶手段と、
前記識別情報が記憶されている状態において前記印刷ジョブに関する通知を受け付けたことに従って、前記印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを、前記印刷ジョブを実行することなく前記サーバに対して送信する状態通知手段と、を有することを特徴とする画像形成システム。
A server that manages status information indicating at least whether the print job has been printed, a print job that acquires status information from the server and indicates that the status information is not printed, and the status of the print job after printing An image forming apparatus that transmits a control API that controls a job state to the server.
The server
After receiving a print job transmitted from an external device, a notification means for transmitting a predetermined notification related to the print job to the image forming device,
The image forming apparatus includes:
Storage means for storing identification information of a print job that has been printed and that has not been confirmed that the state managed by the server has been printed;
A control API for controlling the job status, which is a command for setting the status of the print job in response to receiving a notification regarding the print job in a state where the identification information is stored, An image forming system comprising: a state notification unit that transmits the information to the server without executing
印刷ジョブが印刷済みであるかを少なくとも示す状態情報を管理するサーバと、前記サーバから状態情報を取得して、状態情報が印刷済みでないことを示している印刷ジョブを実行し、印刷後に該印刷ジョブの状態を印刷済みにするための通知を前記サーバにおこなう画像形成装置と、を有する画像形成システムにおいて、
前記画像形成装置は、
ユーザからの指示を受け付け、前記サーバから状態情報を取得する取得指示を受け付け可能な受付手段と、
印刷済みで且つ前記サーバで管理される状態が印刷済みとなっていると確認されていない印刷ジョブの識別情報を記憶する記憶手段と、
前記識別情報が記憶されている状態において前記取得指示を受け付けたことに従って、前記印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを、前記印刷ジョブを実行することなく前記サーバに送信する状態通知手段と、を有することを特徴とする画像形成システム。
A server that manages status information indicating at least whether the print job has been printed, and obtains status information from the server, executes a print job indicating that the status information has not been printed, and prints the print job after printing. In an image forming system having an image forming apparatus for notifying the server of a job status that has been printed,
The image forming apparatus includes:
Accepting means capable of accepting an instruction from a user and accepting an acquisition instruction for obtaining status information from the server;
Storage means for storing identification information of a print job that has been printed and whose status managed by the server is not confirmed as being printed;
In response to receiving the acquisition instruction in a state where the identification information is stored, a control API that controls the job status is executed to execute the print job, which is a command for setting the print job status to printed. An image forming system comprising: a state notification unit that transmits the information to the server without performing the operation.
前記印刷済み状態とはDONEで示される状態であることを特徴とする請求項1または2に記載の画像形成システム。   The image forming system according to claim 1, wherein the printed state is a state indicated by DONE. 前記印刷済みでない状態は、QUEUEDとIN_PROGRESSを含むことを特徴とする請求項1乃至3のいずれか1項に記載の画像形成システム。   The image forming system according to claim 1, wherein the unprinted state includes QUEUED and IN_PROGRESS. 前記記憶手段は、実行が決定され且つ印刷に用いる印刷データを受信済みで且つ印刷済みでない印刷ジョブの識別情報を記憶することを特徴とする請求項1乃至4のいずれか1項に記載の画像形成システム。   5. The image according to claim 1, wherein the storage unit stores identification information of a print job that is determined to be executed and has received print data used for printing and has not been printed. 6. Forming system. 前記画像形成装置は、所定の条件に基づいて前記識別情報を消去する消去手段を有すること特徴とする請求項1乃至5のいずれか1項に記載の画像形成システム。   The image forming system according to claim 1, wherein the image forming apparatus includes an erasing unit that erases the identification information based on a predetermined condition. 前記画像形成装置は、印刷ジョブの実行に用いる印刷データを前記サーバから受信する受信手段を備えること特徴とする請求項1乃至6のいずれか1項に記載の画像形成システム。   The image forming system according to claim 1, wherein the image forming apparatus includes a receiving unit that receives print data used to execute a print job from the server. 印刷ジョブが印刷済みであるかを少なくとも示す状態情報を管理するサーバと通信可能な画像形成装置であって、前記サーバから状態情報を取得して状態情報が印刷済みでないことを示す印刷ジョブを実行し、印刷後に該印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIの通知を前記サーバに送信する画像形成装置において、
印刷済みで且つ前記サーバで管理される状態が印刷済みとなっていない印刷ジョブの識別情報を記憶する記憶手段と、
前記識別情報が記憶されている状態において新たな印刷ジョブが登録された後、前記印刷ジョブに関する所定の通知を前記サーバから受け付け、当該所定の通知を受け付けたことに従って、前記印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを、前記印刷ジョブを実行することなく前記サーバに送信する状態通知手段と、を有することを特徴とする画像形成装置。
An image forming apparatus that can communicate with a server that manages status information indicating at least whether the print job has been printed, obtains status information from the server, and executes the print job indicating that the status information has not been printed And an image forming apparatus that transmits a notification of a control API for controlling the job status to the server, which is a command for setting the status of the print job after printing.
Storage means for storing identification information of a print job that has been printed and whose status managed by the server is not printed;
After a new print job is registered in a state where the identification information is stored, a predetermined notification regarding the print job is received from the server, and the state of the print job is printed according to the reception of the predetermined notification. An image forming apparatus comprising: a status notification unit that transmits a control API for controlling a job status to the server without executing the print job.
前記印刷済みの状態とはDONEで示される状態であることを特徴とする請求項8に記載の画像形成装置。   The image forming apparatus according to claim 8, wherein the printed state is a state indicated by DONE. 前記印刷済みでない状態は、QUEUEDとIN_PROGRESSを含むことを特徴とする請求項8または9に記載の画像形成装置。   The image forming apparatus according to claim 8, wherein the unprinted state includes QUEUED and IN_PROGRESS. 前記記憶手段は、実行が決定され且つ印刷に用いる印刷データを受信済みで且つ印刷済みでない印刷ジョブの識別情報を記憶することを特徴とする請求項8乃至10のいずれか1項に記載の画像形成装置。   The image according to any one of claims 8 to 10, wherein the storage unit stores identification information of a print job that has been determined to be executed and has received print data to be used for printing and has not been printed. Forming equipment. 所定の条件に基づいて前記識別情報を消去する消去手段を有すること特徴とする請求項8乃至11のいずれか1項に記載の画像形成装置。   The image forming apparatus according to claim 8, further comprising an erasing unit that erases the identification information based on a predetermined condition. 印刷ジョブの実行に用いる印刷データを前記サーバから受信する受信手段を備えること特徴とする請求項8乃至12のいずれか1項に記載の画像形成装置。   The image forming apparatus according to claim 8, further comprising a receiving unit configured to receive print data used to execute a print job from the server. 印刷ジョブが印刷済みであるかを示す状態情報を管理するサーバと通信可能な画像形成装置であって、前記サーバから状態情報を取得して状態情報が印刷済みでないことを示す印刷ジョブを実行し、印刷後に該印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを前記サーバに送信する画像形成装置の制御方法において、
印刷済みで且つ前記サーバで管理される状態が印刷済みとなっていない印刷ジョブの識別情報を記憶する工程と、
前記識別情報が記憶されている状態において新たな印刷ジョブが登録された後、前記印刷ジョブに関する所定の通知を前記サーバから受け付け、当該所定の通知を受け付けたことに従って、前記印刷ジョブの状態を印刷済みにするためのコマンドであってジョブの状態を制御するコントロールAPIを、前記印刷ジョブを実行することなく前記サーバに送信する工程と、を有することを特徴とする制御方法。
An image forming apparatus capable of communicating with a server that manages status information indicating whether a print job has been printed, acquires the status information from the server, and executes the print job indicating that the status information has not been printed In the control method of the image forming apparatus for transmitting a control API for controlling the job status, which is a command for setting the status of the print job after printing, to the server,
Storing identification information of a print job that has been printed and whose status managed by the server is not printed;
After a new print job is registered in a state where the identification information is stored, a predetermined notification regarding the print job is received from the server, and the state of the print job is printed according to the reception of the predetermined notification. And a step of transmitting a control API for controlling the status of the job to the server without executing the print job.
JP2018084192A 2018-04-25 2018-04-25 Image forming apparatus Active JP6563070B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2018084192A JP6563070B2 (en) 2018-04-25 2018-04-25 Image forming apparatus

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2018084192A JP6563070B2 (en) 2018-04-25 2018-04-25 Image forming apparatus

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
JP2017107069A Division JP6333447B2 (en) 2017-05-30 2017-05-30 Image forming apparatus

Publications (2)

Publication Number Publication Date
JP2018127004A JP2018127004A (en) 2018-08-16
JP6563070B2 true JP6563070B2 (en) 2019-08-21

Family

ID=63173545

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2018084192A Active JP6563070B2 (en) 2018-04-25 2018-04-25 Image forming apparatus

Country Status (1)

Country Link
JP (1) JP6563070B2 (en)

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP4420053B2 (en) * 2007-04-09 2010-02-24 セイコーエプソン株式会社 Information management apparatus, information management method and program thereof
US8310703B2 (en) * 2009-06-01 2012-11-13 Ricoh Company, Ltd Printing and scanning with cloud storage
JP5618773B2 (en) * 2010-11-11 2014-11-05 キヤノン株式会社 Image forming system, image forming apparatus, and method in image forming apparatus
JP5522095B2 (en) * 2011-03-11 2014-06-18 ブラザー工業株式会社 Printer
JP5885410B2 (en) * 2011-06-29 2016-03-15 キヤノン株式会社 Pull print system, print server, control method therefor, and program
JP6157260B2 (en) * 2013-07-30 2017-07-05 キヤノン株式会社 Image forming apparatus
JP6333447B2 (en) * 2017-05-30 2018-05-30 キヤノン株式会社 Image forming apparatus

Also Published As

Publication number Publication date
JP2018127004A (en) 2018-08-16

Similar Documents

Publication Publication Date Title
JP5423079B2 (en) Device management system, device, device management method and device management program
US9111209B2 (en) Image forming apparatus and power supply control system
JP7355147B2 (en) application program
US10664212B2 (en) Image forming apparatus, control method for image forming apparatus, and storage medium for controlling storage of a print job
JP4862933B2 (en) Image forming apparatus, image forming method, and program
JP2013092886A (en) Printer, control method, and program
JP6547717B2 (en) Electronic device and application control program
JP2022109916A (en) Program and printing system
JP5545271B2 (en) Image processing system, image processing apparatus, display apparatus, image processing system control method, and image processing system control program
CN110389727B (en) Image forming system and image forming method
JP6333447B2 (en) Image forming apparatus
JP6264575B2 (en) Job processing device management server program
JP6563070B2 (en) Image forming apparatus
JP6157260B2 (en) Image forming apparatus
JP2023052074A (en) Printer and control method
US10070013B2 (en) Image processing system and user information sharing method
JP2021043547A (en) Information processing device and control method for information processing device, and program
JP2009143084A (en) Image forming apparatus and image forming program
JP2008022456A (en) Image processing device and image processing control method
JP2019161264A (en) Image processing apparatus, control method of the same, and remote support system for the same
JP7047531B2 (en) Programs and information processing equipment
JP2013111799A (en) Printer and method for controlling the same
JP2012162041A (en) Image forming apparatus, method of controlling the same, and program
JP2008305328A (en) Image forming apparatus and data processor, and data processing method and program for executing data processing method
JP6939312B2 (en) Image-forming device, image-forming system, and control program for image-forming device

Legal Events

Date Code Title Description
A521 Written amendment

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20180524

A621 Written request for application examination

Free format text: JAPANESE INTERMEDIATE CODE: A621

Effective date: 20180524

A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20190123

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A132

Effective date: 20190129

A521 Written amendment

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20190329

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20190416

A521 Written amendment

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20190614

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: 20190625

A61 First payment of annual fees (during grant procedure)

Free format text: JAPANESE INTERMEDIATE CODE: A61

Effective date: 20190723

R151 Written notification of patent or utility model registration

Ref document number: 6563070

Country of ref document: JP

Free format text: JAPANESE INTERMEDIATE CODE: R151