[jira] Created: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

[jira] Created: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Nicolas Malin (Jira)
How to setup the Epson JavaPOS 1.9.x ?!
---------------------------------------

                 Key: OFBIZ-1015
                 URL: https://issues.apache.org/jira/browse/OFBIZ-1015
             Project: OFBiz (The Open for Business Project)
          Issue Type: Improvement
          Components: pos
    Affects Versions: SVN trunk
         Environment: Windows XP SP2, SUN JDK1.5.0_9, Epson JavaPOS ADK 1.9.4
            Reporter: Cedar Peng
             Fix For: SVN trunk


How to setup the Epson JavaPOS v1.9.x for OFBiz/pos?

1.SVN and compile the OFBiz in the normal way.

2.Install the Epson JavaPOS ADK v1.9.x
Note: by now, the latest one is v1.9.4. Sorry, you couldn't direct download from
www.epson-pos.com. You should contact the local Epson sales company to get that.

3.Using the Epson SetupPOS utiliy to edit the jpos.xml file, and the CheckHealth
tool to check the setting is correct!

4.Then copy the related jpos item you need, such as POSprinter, CashDrawer into
the jpos.xml file OFBiz\applications\pos\config.

5.Remove the JavaPOS old v1.8 jar files which ones under OFBiz\applications\pos\lib;
and copy the Epson's JavaPOS v1.9 file into the same folder, and finially it likes
this:

OFBiz\applications\pos\lib\
        pos.jar, uposcommon.jar, epsonupos.jar
        jpos19.jar (It includes JCL and jpos19-control)
        linuxUsbDriver.jar (No need for Win)
        xercesImpl.jar, xml-apis.jar
        looks-1.2.2.jar, looks-2.0.2.jar (Sorry, I don't know what's these?)

6.Modified the pos-containers.xml, under \OFBiz\framework\base\config:
For <container name="jpos.device-container" class="org.ofbiz.pos.container.JposDeviceContainer">,

Made the device name same as you register in jpos.xml file, eg:
        <property name="Receipt" value="TM-U220D"/>

And if the POS system hasn't this device, please let it be blank, eg:
       
        <property name="Keyboard" value="" />
        <property name="Scanner" value="" />

Or, let it like these:
        <property name="PinPad" value="[NOT IMPLEMENTED]"/>
        <property name="Journal" value="[NOT IMPLEMENTED]"/>
        <property name="LineDisplay" value="[NOT IMPLEMENTED]"/>
        <property name="CheckScanner" value="[NOT IMPLEMENTED]"/>
        <property name="SignatureCapture" value="[NOT IMPLEMENTED]"/>

Note: Althouhg Vendor's JavaPOS ADK already support most POS device, but OFBiz hasn't yet implenmented all of them, eg: LineDisplay will through a JposException to tell you "Device not yet implemented" !


--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-1015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498565 ]

Jacques Le Roux commented on OFBIZ-1015:
----------------------------------------

Thanks a lot Cedar for this.

I will update OFBiz... when I will get a chance...

> How to setup the Epson JavaPOS 1.9.x ?!
> ---------------------------------------
>
>                 Key: OFBIZ-1015
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1015
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: pos
>    Affects Versions: SVN trunk
>         Environment: Windows XP SP2, SUN JDK1.5.0_9, Epson JavaPOS ADK 1.9.4
>            Reporter: Cedar Peng
>             Fix For: SVN trunk
>
>
> How to setup the Epson JavaPOS v1.9.x for OFBiz/pos?
> 1.SVN and compile the OFBiz in the normal way.
> 2.Install the Epson JavaPOS ADK v1.9.x
> Note: by now, the latest one is v1.9.4. Sorry, you couldn't direct download from
> www.epson-pos.com. You should contact the local Epson sales company to get that.
> 3.Using the Epson SetupPOS utiliy to edit the jpos.xml file, and the CheckHealth
> tool to check the setting is correct!
> 4.Then copy the related jpos item you need, such as POSprinter, CashDrawer into
> the jpos.xml file OFBiz\applications\pos\config.
> 5.Remove the JavaPOS old v1.8 jar files which ones under OFBiz\applications\pos\lib;
> and copy the Epson's JavaPOS v1.9 file into the same folder, and finially it likes
> this:
> OFBiz\applications\pos\lib\
> pos.jar, uposcommon.jar, epsonupos.jar
> jpos19.jar (It includes JCL and jpos19-control)
> linuxUsbDriver.jar (No need for Win)
> xercesImpl.jar, xml-apis.jar
> looks-1.2.2.jar, looks-2.0.2.jar (Sorry, I don't know what's these?)
> 6.Modified the pos-containers.xml, under \OFBiz\framework\base\config:
> For <container name="jpos.device-container" class="org.ofbiz.pos.container.JposDeviceContainer">,
> Made the device name same as you register in jpos.xml file, eg:
>         <property name="Receipt" value="TM-U220D"/>
> And if the POS system hasn't this device, please let it be blank, eg:
>
> <property name="Keyboard" value="" />
>         <property name="Scanner" value="" />
> Or, let it like these:
>         <property name="PinPad" value="[NOT IMPLEMENTED]"/>
>         <property name="Journal" value="[NOT IMPLEMENTED]"/>
>         <property name="LineDisplay" value="[NOT IMPLEMENTED]"/>
>         <property name="CheckScanner" value="[NOT IMPLEMENTED]"/>
>         <property name="SignatureCapture" value="[NOT IMPLEMENTED]"/>
> Note: Althouhg Vendor's JavaPOS ADK already support most POS device, but OFBiz hasn't yet implenmented all of them, eg: LineDisplay will through a JposException to tell you "Device not yet implemented" !

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-1015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12499005 ]

Cedar Peng commented on OFBIZ-1015:
-----------------------------------

Hi, Jacques:

I want to confirm currently those device which written as "[NOT IMPLEMENTED]" means it has not been realized the actual codes. And if the user want that function, I should work on it.

For example, LineDisplay.

> How to setup the Epson JavaPOS 1.9.x ?!
> ---------------------------------------
>
>                 Key: OFBIZ-1015
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1015
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: pos
>    Affects Versions: SVN trunk
>         Environment: Windows XP SP2, SUN JDK1.5.0_9, Epson JavaPOS ADK 1.9.4
>            Reporter: Cedar Peng
>             Fix For: SVN trunk
>
>
> How to setup the Epson JavaPOS v1.9.x for OFBiz/pos?
> 1.SVN and compile the OFBiz in the normal way.
> 2.Install the Epson JavaPOS ADK v1.9.x
> Note: by now, the latest one is v1.9.4. Sorry, you couldn't direct download from
> www.epson-pos.com. You should contact the local Epson sales company to get that.
> 3.Using the Epson SetupPOS utiliy to edit the jpos.xml file, and the CheckHealth
> tool to check the setting is correct!
> 4.Then copy the related jpos item you need, such as POSprinter, CashDrawer into
> the jpos.xml file OFBiz\applications\pos\config.
> 5.Remove the JavaPOS old v1.8 jar files which ones under OFBiz\applications\pos\lib;
> and copy the Epson's JavaPOS v1.9 file into the same folder, and finially it likes
> this:
> OFBiz\applications\pos\lib\
> pos.jar, uposcommon.jar, epsonupos.jar
> jpos19.jar (It includes JCL and jpos19-control)
> linuxUsbDriver.jar (No need for Win)
> xercesImpl.jar, xml-apis.jar
> looks-1.2.2.jar, looks-2.0.2.jar (Sorry, I don't know what's these?)
> 6.Modified the pos-containers.xml, under \OFBiz\framework\base\config:
> For <container name="jpos.device-container" class="org.ofbiz.pos.container.JposDeviceContainer">,
> Made the device name same as you register in jpos.xml file, eg:
>         <property name="Receipt" value="TM-U220D"/>
> And if the POS system hasn't this device, please let it be blank, eg:
>
> <property name="Keyboard" value="" />
>         <property name="Scanner" value="" />
> Or, let it like these:
>         <property name="PinPad" value="[NOT IMPLEMENTED]"/>
>         <property name="Journal" value="[NOT IMPLEMENTED]"/>
>         <property name="LineDisplay" value="[NOT IMPLEMENTED]"/>
>         <property name="CheckScanner" value="[NOT IMPLEMENTED]"/>
>         <property name="SignatureCapture" value="[NOT IMPLEMENTED]"/>
> Note: Althouhg Vendor's JavaPOS ADK already support most POS device, but OFBiz hasn't yet implenmented all of them, eg: LineDisplay will through a JposException to tell you "Device not yet implemented" !

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-1015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12499023 ]

Jacques Le Roux commented on OFBIZ-1015:
----------------------------------------

Yes Cedar, you are right.

> How to setup the Epson JavaPOS 1.9.x ?!
> ---------------------------------------
>
>                 Key: OFBIZ-1015
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1015
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: pos
>    Affects Versions: SVN trunk
>         Environment: Windows XP SP2, SUN JDK1.5.0_9, Epson JavaPOS ADK 1.9.4
>            Reporter: Cedar Peng
>             Fix For: SVN trunk
>
>
> How to setup the Epson JavaPOS v1.9.x for OFBiz/pos?
> 1.SVN and compile the OFBiz in the normal way.
> 2.Install the Epson JavaPOS ADK v1.9.x
> Note: by now, the latest one is v1.9.4. Sorry, you couldn't direct download from
> www.epson-pos.com. You should contact the local Epson sales company to get that.
> 3.Using the Epson SetupPOS utiliy to edit the jpos.xml file, and the CheckHealth
> tool to check the setting is correct!
> 4.Then copy the related jpos item you need, such as POSprinter, CashDrawer into
> the jpos.xml file OFBiz\applications\pos\config.
> 5.Remove the JavaPOS old v1.8 jar files which ones under OFBiz\applications\pos\lib;
> and copy the Epson's JavaPOS v1.9 file into the same folder, and finially it likes
> this:
> OFBiz\applications\pos\lib\
> pos.jar, uposcommon.jar, epsonupos.jar
> jpos19.jar (It includes JCL and jpos19-control)
> linuxUsbDriver.jar (No need for Win)
> xercesImpl.jar, xml-apis.jar
> looks-1.2.2.jar, looks-2.0.2.jar (Sorry, I don't know what's these?)
> 6.Modified the pos-containers.xml, under \OFBiz\framework\base\config:
> For <container name="jpos.device-container" class="org.ofbiz.pos.container.JposDeviceContainer">,
> Made the device name same as you register in jpos.xml file, eg:
>         <property name="Receipt" value="TM-U220D"/>
> And if the POS system hasn't this device, please let it be blank, eg:
>
> <property name="Keyboard" value="" />
>         <property name="Scanner" value="" />
> Or, let it like these:
>         <property name="PinPad" value="[NOT IMPLEMENTED]"/>
>         <property name="Journal" value="[NOT IMPLEMENTED]"/>
>         <property name="LineDisplay" value="[NOT IMPLEMENTED]"/>
>         <property name="CheckScanner" value="[NOT IMPLEMENTED]"/>
>         <property name="SignatureCapture" value="[NOT IMPLEMENTED]"/>
> Note: Althouhg Vendor's JavaPOS ADK already support most POS device, but OFBiz hasn't yet implenmented all of them, eg: LineDisplay will through a JposException to tell you "Device not yet implemented" !

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Assigned: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-1015?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacques Le Roux reassigned OFBIZ-1015:
--------------------------------------

    Assignee: Jacques Le Roux

> How to setup the Epson JavaPOS 1.9.x ?!
> ---------------------------------------
>
>                 Key: OFBIZ-1015
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1015
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: pos
>    Affects Versions: SVN trunk
>         Environment: Windows XP SP2, SUN JDK1.5.0_9, Epson JavaPOS ADK 1.9.4
>            Reporter: Cedar Peng
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>
> How to setup the Epson JavaPOS v1.9.x for OFBiz/pos?
> 1.SVN and compile the OFBiz in the normal way.
> 2.Install the Epson JavaPOS ADK v1.9.x
> Note: by now, the latest one is v1.9.4. Sorry, you couldn't direct download from
> www.epson-pos.com. You should contact the local Epson sales company to get that.
> 3.Using the Epson SetupPOS utiliy to edit the jpos.xml file, and the CheckHealth
> tool to check the setting is correct!
> 4.Then copy the related jpos item you need, such as POSprinter, CashDrawer into
> the jpos.xml file OFBiz\applications\pos\config.
> 5.Remove the JavaPOS old v1.8 jar files which ones under OFBiz\applications\pos\lib;
> and copy the Epson's JavaPOS v1.9 file into the same folder, and finially it likes
> this:
> OFBiz\applications\pos\lib\
> pos.jar, uposcommon.jar, epsonupos.jar
> jpos19.jar (It includes JCL and jpos19-control)
> linuxUsbDriver.jar (No need for Win)
> xercesImpl.jar, xml-apis.jar
> looks-1.2.2.jar, looks-2.0.2.jar (Sorry, I don't know what's these?)
> 6.Modified the pos-containers.xml, under \OFBiz\framework\base\config:
> For <container name="jpos.device-container" class="org.ofbiz.pos.container.JposDeviceContainer">,
> Made the device name same as you register in jpos.xml file, eg:
>         <property name="Receipt" value="TM-U220D"/>
> And if the POS system hasn't this device, please let it be blank, eg:
>
> <property name="Keyboard" value="" />
>         <property name="Scanner" value="" />
> Or, let it like these:
>         <property name="PinPad" value="[NOT IMPLEMENTED]"/>
>         <property name="Journal" value="[NOT IMPLEMENTED]"/>
>         <property name="LineDisplay" value="[NOT IMPLEMENTED]"/>
>         <property name="CheckScanner" value="[NOT IMPLEMENTED]"/>
>         <property name="SignatureCapture" value="[NOT IMPLEMENTED]"/>
> Note: Althouhg Vendor's JavaPOS ADK already support most POS device, but OFBiz hasn't yet implenmented all of them, eg: LineDisplay will through a JposException to tell you "Device not yet implemented" !

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Closed: (OFBIZ-1015) How to setup the Epson JavaPOS 1.9.x ?!

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-1015?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacques Le Roux closed OFBIZ-1015.
----------------------------------

    Resolution: Later

> How to setup the Epson JavaPOS 1.9.x ?!
> ---------------------------------------
>
>                 Key: OFBIZ-1015
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1015
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: specialpurpose/pos
>    Affects Versions: SVN trunk
>         Environment: Windows XP SP2, SUN JDK1.5.0_9, Epson JavaPOS ADK 1.9.4
>            Reporter: Cedar Peng
>            Assignee: Jacques Le Roux
>             Fix For: SVN trunk
>
>
> How to setup the Epson JavaPOS v1.9.x for OFBiz/pos?
> 1.SVN and compile the OFBiz in the normal way.
> 2.Install the Epson JavaPOS ADK v1.9.x
> Note: by now, the latest one is v1.9.4. Sorry, you couldn't direct download from
> www.epson-pos.com. You should contact the local Epson sales company to get that.
> 3.Using the Epson SetupPOS utiliy to edit the jpos.xml file, and the CheckHealth
> tool to check the setting is correct!
> 4.Then copy the related jpos item you need, such as POSprinter, CashDrawer into
> the jpos.xml file OFBiz\applications\pos\config.
> 5.Remove the JavaPOS old v1.8 jar files which ones under OFBiz\applications\pos\lib;
> and copy the Epson's JavaPOS v1.9 file into the same folder, and finially it likes
> this:
> OFBiz\applications\pos\lib\
> pos.jar, uposcommon.jar, epsonupos.jar
> jpos19.jar (It includes JCL and jpos19-control)
> linuxUsbDriver.jar (No need for Win)
> xercesImpl.jar, xml-apis.jar
> looks-1.2.2.jar, looks-2.0.2.jar (Sorry, I don't know what's these?)
> 6.Modified the pos-containers.xml, under \OFBiz\framework\base\config:
> For <container name="jpos.device-container" class="org.ofbiz.pos.container.JposDeviceContainer">,
> Made the device name same as you register in jpos.xml file, eg:
>         <property name="Receipt" value="TM-U220D"/>
> And if the POS system hasn't this device, please let it be blank, eg:
>
> <property name="Keyboard" value="" />
>         <property name="Scanner" value="" />
> Or, let it like these:
>         <property name="PinPad" value="[NOT IMPLEMENTED]"/>
>         <property name="Journal" value="[NOT IMPLEMENTED]"/>
>         <property name="LineDisplay" value="[NOT IMPLEMENTED]"/>
>         <property name="CheckScanner" value="[NOT IMPLEMENTED]"/>
>         <property name="SignatureCapture" value="[NOT IMPLEMENTED]"/>
> Note: Althouhg Vendor's JavaPOS ADK already support most POS device, but OFBiz hasn't yet implenmented all of them, eg: LineDisplay will through a JposException to tell you "Device not yet implemented" !

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.