You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
(4) |
Aug
(11) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
| 2008 |
Jan
(3) |
Feb
(3) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(6) |
Aug
(9) |
Sep
(1) |
Oct
(15) |
Nov
(3) |
Dec
(5) |
| 2009 |
Jan
(4) |
Feb
(5) |
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Christof R. <rod...@in...> - 2012-03-16 11:13:09
|
Dear all, We have moved the Fosstrak project to Google Code, which should make it easier for everyone to collaborate. As a result of this change, we are also merging the existing Fosstrak mailing lists into a single new mailing list at https://groups.google.com/group/fosstrak. Note that the old mailing lists are now closed. We will send an invitation to join the new list to all existing subscribers and are looking forward to see you there! Best regards, Christof |
|
From: tanja <jan...@ya...> - 2012-01-26 04:46:33
|
http://wps.gr/director/albums/album-17/cache/qyfbtt.php |
|
From: Ju K. F. <ko...@fu...> - 2009-04-29 01:04:09
|
Hi experts, >From the documentation, I can see that fosstrak suite has reader implementation with TCP and HTTP reader connection over network. That is suitable for communicating with RFID reader hardware that has Ethernet or Wifi connection and supports Reader Protocol. However, we are looking at implementing Intermec IV7 Reader that does not have Ethernet or Wifi connection. The above reader only has serial (rs-232) connection. While ReaderDeviceFactory.getReaderDevice() can only generate ReaderDevice with HTTP or TCP, it does not work with serial connection. Is it still possible to use fosstrak to communicate with above IV7 Reader over serial connection? How do I do that? A sample of codes would be very much appreciated. Thank you. Regards, Beginner |
|
From: alex o. <ale...@ya...> - 2009-04-22 16:07:21
|
Hi, just want to say i was able to connect my impinj reader, i made it workingin asynchronous mode and in the simple polling mode using Mach1 protocol. I have made some changes to the code and implemented a new class.I have found also something to be checked with the fc-server too.Where can i post my code? In this way who have problem with impinj readerscan use my classes. And maybe fc-server and HAL modules can be adapted with this changes too for the new releases.Thanks a lot.Alessio OrlandoSalento's University
|
|
From: Pscheidl, F. <flo...@ig...> - 2009-04-09 15:05:39
|
I'm using the Symbol reader XR480 and I've informed me about LLRP reading the specification from EPCGlobal. So I know how the LLRP messages must look like. But I'm not sure what content the messages must have. Is anybody familiar with the Symbol reader and can help me with my problem? Best regards Florian Pscheidl |
|
From: Tobias H. <to...@pr...> - 2009-02-25 14:05:31
|
Dear mailing list, I am writing a client for the fosstrak server (fc-server-0.4.0) with Java classes generated from the epc global wsdl files. I can retrieve data like Standard and Vendor Version from the ALEServicePort and the ALELRServicePort but can neither define an ECspec, nor an LRspec. When I call the define() method for a Logical Reader, I get an ImplementationExceptionResponse. I guess that my LRspec might not be correct. Is there a guide, how to assemble the specs rather than unmarshall them from xml? I would appreciate any kind of help. It would probably also be useful to know how I can better info out of the fc-server like logs. Thanks a lot, Tobias |
|
From: <col...@fr...> - 2009-02-13 15:29:37
|
Hi,
I inserted the call to IdentifyThred and the polling does work. But I have no information on tags that are read (I can see they are read in the log files)
Something in IdentifyThread seems to me strange:
in IdentifyThread.run, nothing is done with the collecte observations...
How observations are meant to be added to the report?
public void run() {
Thread thisThread = Thread.currentThread();
log.debug("Scanning started...");
while (this.identification == thisThread) {
synchronized (this) {
while (suspendThread) {
log.debug("Scanning suspended...");
try {
wait();
} catch (Exception e) {
//TODO handle Exception
this.stopIdentify();
}
}
}
// Do work
log.debug("Continuous identify...");
Observation[] obs = null;
try {
obs = this.adapter.identify(sourceIds);
} catch (org.fosstrak.hal.HardwareException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
if (this.frequency > 0){
log.debug("Thread is going to sleep...");
Thread.sleep(this.frequency);
}
} catch (InterruptedException e){
//TODO handle Exception
}
}
}
----- Mail Original -----
De: "samuel wieland" <saw...@st...>
À: col...@fr...
Envoyé: Jeudi 12 Février 2009 16:58:50 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne
Objet: Re: [accada-ale-user] to implement my own RFID reader
ok, i forgot the polling stuff in the latest email :-)
for the polling through identify you need to install a polling thread.
the easiest way to do this is when you start the reader. put something
like this into your code:
public class MyAdaptor extends BaseReader {
private IdentifyThread identifyThread = null;
...
public void start() {
identifyThread = new IdentifyThread(this);
identifyThread.setPollingFrequency(pollingFrequency);
identifyThread.start();
}
public void stop() {
identifyThread.stopIdentify();
identifyThread = null;
}
}
col...@fr... wrote:
> Hi,
>
> 1. I do not have this icone, so I probably fix it later (I may not have installed all packages)
>
>
> 2. I added calls to functions to update flags but it does not change anything. Should the identify function be called by the fc-server??? if yes do you have any idea why it does not? if no, how does the fc-server poll the reader?
>
> Thanks!
>
> Colombe
>
>
>
> ----- Mail Original -----
> De: "samuel wieland" <saw...@st...>
> À: col...@fr...
> Envoyé: Jeudi 12 Février 2009 15:40:46 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne
> Objet: Re: [accada-ale-user] to implement my own RFID reader
>
>
> hoi colombe,
>
> 1. what os are you running?
> - In windows the easiest way is to use the tomcat monitor tool (icon in
> the taskbar next to the clock). There you should find a tab where you
> can select something like ("allow access to desktop").
> - In *nix you have to run tomcat as the same user that is logged in at
> the xserver.
>
> 2. flags:
> there are several setters/getters available in basereader (eg
> isConnected()). the idea is that you set the flags when you change the
> status of your reader (example when you connected the reader then the
> setConnected() flag should be set).
>
> hope this helps :-)
>
> lg
> samuel
>
>
> col...@fr... wrote:
>> Hi!
>>
>> Thanks for your answer!
>>
>> 1. how do you allow access to the desktop to tomcat? using file confuguration??
>>
>> 2. Now I manage to start the reader, I get also reports but no tags are read. I decided to trace the functions of the adaptor that are called: the contructor, initialize, connectReader and start.
>> The "identify" function is never used. Is it normal?
>> In the tutorial (http://www.fosstrak.org/fc/docs/developer-adaptor.html) it is written that I should manage flags. I don't understand how.
>>
>> Could you help me? :-)
>>
>> Colombe
>>
>>
>> ----- Mail Original -----
>> De: "Wieland Samuel" <saw...@st...>
>> À: acc...@li...
>> Envoyé: Jeudi 12 Février 2009 10:53:18 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne
>> Objet: Re: [accada-ale-user] to implement my own RFID reader
>>
>>
>> hoi Colombe ,
>>
>> 1. hal reader:
>> did you allow tomcat access to the desktop (otherwise the hal graphic reader will not be displayed)?
>>
>> 2. your alien reader:
>> i looked into the source code you sent to me. i think you have a null-pointer exception in "connectReader()" as the variable "reader" is null in "connectReader" when invoked from LogicalReaderManager.
>>
>> the reader will be started from fc as following:
>> 1. dynamic class loading of the reader adaptor (in your case ...AlienAdaptor)
>> 2. invoke the initializer-method
>> 3. if BaseReader (as in your case) invoke "connectReader()"
>>
>>
>> lg
>> samuel
>>
>> -----Ursprüngliche Nachricht-----
>> Von: col...@fr... [mailto:col...@fr...]
>> Gesendet: Di 2/10/2009 4:58
>> An: acc...@li...
>> Betreff: [accada-ale-user] to implement my own RFID reader
>>
>> Hi,
>>
>> More information: when I look at the trace in logs, I read that the graphicreader has been started successfuly but I can't see any graphic interface. Is it normal?
>>
>> ------------------------------------------------------------------------------
>> Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
>> software. With Adobe AIR, Ajax developers can use existing skills and code to
>> build responsive, highly engaging applications that combine the power of local
>> resources and data with the reach of the web. Download the Adobe AIR SDK and
>> Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
>> _______________________________________________
>> accada-ale-user mailing list
>> acc...@li...
>> https://lists.sourceforge.net/lists/listinfo/accada-ale-user
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
>> software. With Adobe AIR, Ajax developers can use existing skills and code to
>> build responsive, highly engaging applications that combine the power of local
>> resources and data with the reach of the web. Download the Adobe AIR SDK and
>> Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
>> _______________________________________________
>> accada-ale-user mailing list
>> acc...@li...
>> https://lists.sourceforge.net/lists/listinfo/accada-ale-user
|
|
From: alex o. <ale...@ya...> - 2009-02-12 14:30:11
|
Hi, im tryng to connect fc server to my reader IMPINJ Speedway-IPJ-R1000.
My reader supports the Mach1 protocol so i thought i can use directly the hal impinj implementation.
When i start tomcat an exceptioin is caught:
Exception in thread "Thread-1" java.lang.NullPointerException
at org.fosstrak.hal.impl.impinj.ImpinjTCPIPController$AsynchronousIdentify.run(ImpinjTCPIPController.java:1600)
at java.lang.Thread.run(Thread.java:619)
I deployed the fc server and Hal-impl-impinj in myeclipse, trying to find the error in debug mode:
at line 1602 in the ImpinjTCPIPController.java : memoryBankDescriptors[0] = new MemoryBankDescriptor(tagModel.getReservedSize(), tagModel.getReservedReadable(), tagModel.getReservedWriteable());
this istruction catches an exception at Thread.class line 1831:
private void dispatchUncaughtException(Throwable e) {
getUncaughtExceptionHandler().uncaughtException(this, e);
}
I think that the exception is related to the ECPTransponderModel.xml file as the tagModel is null. So the tagModel.getReservedSize() expression rises a nullpointerException.
tagModel is declared at line 241 in ImpinjTCPIPController.java :
EPCTransponderModel tagModel = currentInventory.get(ids_arr[j]).epcTransponderModel;
so it's useful to see the
public static EPCTransponderModel getEpcTrasponderModel(byte[] tid,String configFile)
in the EPCTranspoderModel.java
Have i to add something in the EPCTransponderModel.xml file? adding a precise type of epc tag i use?
Please help me, i have to solve this issue as soon as possible. I'm blocked since two week.
Thanks a lot.
Passa a Yahoo! Mail.
La webmail che ti offre GRATIS spazio illimitato,
antispam e messenger integrato.
http://it.mail.yahoo.com/ |
|
From: alex o. <ale...@ya...> - 2009-02-02 11:14:26
|
Hi, well in the reader specifications i read that the new IMPINJ Speedway-IPJ-R1000 support LLRP protocol but also the Mach1 interface used by the hal implementation.
I realized that the real port on which reader in listening is different the which i connect before: 49380.
Now trying to connecting to this port it seems the server can find to the reader but i found an exception in the log regarding ImpinjTCPIPController.java.
Here is the log:
-feb-2009 12.00.00 org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-6-sun-1.6.0.10/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.10/jre/lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.10/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
2-feb-2009 12.00.00 org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
2-feb-2009 12.00.00 org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 615 ms
2-feb-2009 12.00.00 org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
2-feb-2009 12.00.00 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
2-feb-2009 12.00.06 org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive fc-webclient-0.4.1-SNAPSHOT.war
2-feb-2009 12.00.06 org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive fc-server-0.4.1-SNAPSHOT.war
0 [main] INFO org.apache.cxf.transport.servlet.AbstractCXFServlet - Load the bus without application context
63 [main] INFO org.apache.cxf.bus.spring.BusApplicationContext - Refreshing org.apache.cxf.bus.spring.BusApplicationContext@1bc59aa: display name [org.apache.cxf.bus.spring.BusApplicationContext@1bc59aa]; startup date [Mon Feb 02 12:00:07 CET 2009]; root of context hierarchy
682 [main] INFO org.apache.cxf.bus.spring.BusApplicationContext - No cxf.xml configuration file detected, relying on defaults.
683 [main] INFO org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/cxf/cxf.xml]
872 [main] INFO org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-soap.xml]
880 [main] INFO org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-xml.xml]
890 [main] INFO org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-jaxws.xml]
892 [main] INFO org.apache.cxf.bus.spring.ControlledValidationXmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-http.xml]
896 [main] INFO org.apache.cxf.bus.spring.BusApplicationContext - Bean factory for application context [org.apache.cxf.bus.spring.BusApplicationContext@1bc59aa]: org.springframework.beans.factory.support.DefaultListableBeanFactory@12e5c94
1048 [main] INFO org.apache.cxf.bus.spring.BusApplicationContext - Bean 'org.apache.cxf.bus.spring.Jsr250BeanPostProcessor' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
1051 [main] INFO org.apache.cxf.bus.spring.BusApplicationContext - Bean 'org.apache.cxf.bus.spring.BusExtensionPostProcessor' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
1059 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@12e5c94: defining beans
[cxf,org.apache.cxf.bus.spring.BusWiringBeanFactoryPostProcessor,org.apache.cxf.bus.spring.Jsr250BeanPostProcessor,org.apache.cxf.bus.spring.BusExtensionPostProcessor,org.apache.cxf.resource.ResourceManager,org.apache.cxf.configuration.Configurer,org.apache.cxf.binding.BindingFactoryManager,org.apache.cxf.transport.DestinationFactoryManager,org.apache.cxf.transport.ConduitInitiatorManager,org.apache.cxf.wsdl.WSDLManager,org.apache.cxf.phase.PhaseManager,org.apache.cxf.workqueue.WorkQueueManager,org.apache.cxf.buslifecycle.BusLifeCycleManager,org.apache.cxf.endpoint.ServerRegistry,org.apache.cxf.endpoint.ServerLifeCycleManager,org.apache.cxf.endpoint.ClientLifeCycleManager,org.apache.cxf.transports.http.QueryHandlerRegistry,org.apache.cxf.endpoint.EndpointResolverRegistry,org.apache.cxf.headers.HeaderManager,org.apache.cxf.catalog.OASISCatalogManager,org.apache.cxf.endpoint.ServiceContractResolverRegistry,org.apache.cxf.binding.soap.SoapBindingFactory,o
rg.apache.cxf.binding.soap.SoapTransportFactory,org.apache.cxf.binding.soap.customEditorConfigurer,org.apache.cxf.binding.xml.XMLBindingFactory,org.apache.cxf.jaxws.context.WebServiceContextResourceResolver,org.apache.cxf.jaxws.context.WebServiceContextImpl,javax.xml.ws.WebServiceContext,org.apache.cxf.transport.http.policy.HTTPClientAssertionBuilder,org.apache.cxf.transport.http.policy.HTTPServerAssertionBuilder,org.apache.cxf.transport.http.policy.NoOpPolicyInterceptorProvider,org.apache.cxf.transport.http.ClientOnlyHTTPTransportFactory]; root of factory hierarchy
1784 [main] INFO org.apache.cxf.transport.servlet.AbstractCXFServlet - Replaced the http destionFactory with servlet transport factory
1789 [main] INFO org.apache.cxf.transport.servlet.AbstractCXFServlet - Build endpoints from config-location: /WEB-INF/cxf-servlet.xml
1792 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from /WEB-INF/cxf-servlet.xml
2-feb-2009 12.00.09 org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl initialize
INFO: starting ALE.
3093 [main] INFO org.fosstrak.hal.impl.impinj.ImpinjTCPIPController - trying address: 10.10.1.5 port: 49380 ...
4274 [main] INFO org.fosstrak.hal.impl.impinj.ImpinjTCPIPController - reader initialized.
4276 [main] INFO org.fosstrak.ale.server.ALE - ALE initialized
4289 [main] INFO org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@8bfdea: display name [org.springframework.context.support.GenericApplicationContext@8bfdea]; startup date [Mon Feb 02 12:00:11 CET 2009]; root of context hierarchy
4289 [main] INFO org.springframework.context.support.GenericApplicationContext - Bean factory for application context [org.springframework.context.support.GenericApplicationContext@8bfdea]: org.springframework.beans.factory.support.DefaultListableBeanFactory@f4fb44
4290 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@f4fb44: defining beans [ALEService,ALELRService]; root of factory hierarchy
Exception in thread "Thread-2" java.lang.NullPointerException
at org.fosstrak.hal.impl.impinj.ImpinjTCPIPController$AsynchronousIdentify.run(ImpinjTCPIPController.java:1600)
at java.lang.Thread.run(Thread.java:619)
5893 [main] INFO org.apache.cxf.endpoint.ServerImpl - Setting the server's publish address to be /ALEService
6309 [main] INFO org.apache.cxf.endpoint.ServerImpl - Setting the server's publish address to be /ALELRService
2-feb-2009 12.00.13 org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
2-feb-2009 12.00.13 org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Can you help me please? it's an urgent issue to solve.
Thanks a lot.
Alessio
|
|
From: Lampe M. <ml...@in...> - 2009-02-02 09:48:09
|
Hi Alex are you aware if the Impinj reader you have uses LLRP as reader interface or the proprietary Impinj reader interface? The support in the HAL is currently only for older Impinj Speedway firmware and does not support LLRP yet. We are currently working on a LLRP solution for the Filtering and Collection module and it should be public soon. Best Matthias ________________________________ Von: alex orl [mailto:ale...@ya...] Gesendet: Do 29.01.2009 18:07 An: acc...@li... Betreff: [accada-reader-user] connection to IMPINJ Speedway-IPJ-R1000 hi, i'm trying to configure fosstrak to connect the Ale to my IMPINJ Speepway IPJ-R1000. But when i turn on tomcat, server crashes giving me this error: Loading XML bean definitions from /WEB-INF/cxf-servlet.xml 29-gen-2009 17.06.32 org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl initialize INFO: starting ALE. 1190 [main] ERROR org.fosstrak.ale.server.readers.LogicalReader - could not dynamically reflect the reader type java.lang.InstantiationException: org.fosstrak.hal.impl.impinj.ImpinjTCPIPController at java.lang.Class.newInstance0(Class.java:340) at java.lang.Class.newInstance(Class.java:308) at org.fosstrak.ale.server.readers.LogicalReader.createReader(LogicalReader.java:185) at org.fosstrak.ale.server.readers.LogicalReaderManager.define(LogicalReaderManager.java:371) at org.fosstrak.ale.server.readers.LogicalReaderManager.define(LogicalReaderManager.java:358) at org.fosstrak.ale.server.readers.LogicalReaderManager.initializeFromFile(LogicalReaderManager.java:442) at org.fosstrak.ale.server.ALE.initialize(ALE.java:106) at org.fosstrak.ale.server.ALE.initialize(ALE.java:139) at org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl.initialize(ALEServicePortTypeImpl.java:41) at org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl.<init>(ALEServicePortTypeImpl.java:34) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at java.lang.Class.newInstance(Class.java:308) at org.apache.cxf.jaxws.spring.EndpointDefinitionParser.loadImplementor the configuration i use is: In : \Tomcat 6.0\webapps\fc-server-0.4.1-SNAPSHOT\WEB-INF\classes\ there is the static logical reader definition LogicalReaders.xml: <?xml version="1.0" encoding="UTF-8" ?> - <http://it.mc243.mail.yahoo.com/mc/l> <LogicalReaders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="/LogicalReaders.xsd"> - <http://it.mc243.mail.yahoo.com/mc/l> <LogicalReader name="LogicalReader1"> - <http://it.mc243.mail.yahoo.com/mc/l> <LRSpec isComposite="false" readerType="org.fosstrak.hal.impl.impinj.ImpinjTCPIPController"> <LRProperty name="Description" value="Impinj Speedway reader" /> <LRProperty name="AdaptorClass" value="HAL" /> <LRProperty name="PhysicalReaderName" value="MyReader1" /> <LRProperty name="ReadTimeInterval" value="1000" /> <LRProperty name="PropertiesFile" value="/props/ImpinjTCPIPController.xml" /> </LRSpec> </LogicalReader> </LogicalReaders> While in: \Tomcat 6.0\webapps\fc-server-0.4.1-SNAPSHOT\WEB-INF\classes\props\ i put: EPCTransponderModels_default.xml IDTypes_default.xml ImpinjTCPIPController.xml log4j.xml In the ImpinjTCPIPController.xml i have just modified the ip address of the reader in 10.10.1.5 and the port to 8082. Where is the problem? Can you suggest me the right way to connect me to the reader? Moreover when i run the reader-rp-client and try to connect to the reader at 10.10.1.5 port 8082m the client tells me CONNECTION REFUSED. Why? It's strange as when i try with another client i can connect to it. Thanks a lot. |
|
From: alex o. <ale...@ya...> - 2009-01-29 17:07:13
|
hi, i'm trying to configure fosstrak to connect the Ale to my IMPINJ Speepway IPJ-R1000. But when i turn on tomcat, server crashes giving me this error: Loading XML bean definitions from /WEB-INF/cxf-servlet.xml 29-gen-2009 17.06.32 org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl initialize INFO: starting ALE. 1190 [main] ERROR org.fosstrak.ale.server.readers.LogicalReader - could not dynamically reflect the reader type java.lang.InstantiationException: org.fosstrak.hal.impl.impinj.ImpinjTCPIPController at java.lang.Class.newInstance0(Class.java:340) at java.lang.Class.newInstance(Class.java:308) at org.fosstrak.ale.server.readers.LogicalReader.createReader(LogicalReader.java:185) at org.fosstrak.ale.server.readers.LogicalReaderManager.define(LogicalReaderManager.java:371) at org.fosstrak.ale.server.readers.LogicalReaderManager.define(LogicalReaderManager.java:358) at org.fosstrak.ale.server.readers.LogicalReaderManager.initializeFromFile(LogicalReaderManager.java:442) at org.fosstrak.ale.server.ALE.initialize(ALE.java:106) at org.fosstrak.ale.server.ALE.initialize(ALE.java:139) at org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl.initialize(ALEServicePortTypeImpl.java:41) at org.fosstrak.ale.wsdl.ale.epcglobal.ALEServicePortTypeImpl.<init>(ALEServicePortTypeImpl.java:34) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at java.lang.Class.newInstance(Class.java:308) at org.apache.cxf.jaxws.spring.EndpointDefinitionParser.loadImplementor the configuration i use is: In : \Tomcat 6.0\webapps\fc-server-0.4.1-SNAPSHOT\WEB-INF\classes\ there is the static logical reader definition LogicalReaders.xml: <?xml version="1.0" encoding="UTF-8" ?> - <LogicalReaders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="/LogicalReaders.xsd"> - <LogicalReader name="LogicalReader1"> - <LRSpec isComposite="false" readerType="org.fosstrak.hal.impl.impinj.ImpinjTCPIPController"> <LRProperty name="Description" value="Impinj Speedway reader" /> <LRProperty name="AdaptorClass" value="HAL" /> <LRProperty name="PhysicalReaderName" value="MyReader1" /> <LRProperty name="ReadTimeInterval" value="1000" /> <LRProperty name="PropertiesFile" value="/props/ImpinjTCPIPController.xml" /> </LRSpec> </LogicalReader> </LogicalReaders> While in: \Tomcat 6.0\webapps\fc-server-0.4.1-SNAPSHOT\WEB-INF\classes\props\ i put: EPCTransponderModels_default.xml IDTypes_default.xml ImpinjTCPIPController.xml log4j.xml In the ImpinjTCPIPController.xml i have just modified the ip address of the reader in 10.10.1.5 and the port to 8082. Where is the problem? Can you suggest me the right way to connect me to the reader? Moreover when i run the reader-rp-client and try to connect to the reader at 10.10.1.5 port 8082m the client tells me CONNECTION REFUSED. Why? It's strange as when i try with another client i can connect to it. Thanks a lot. |
|
From: <man...@un...> - 2009-01-20 20:08:18
|
Hello, I'd like to know which firmware version I need to use the Fosstrak HAL Impinj implementation. I've got an Impinj Speedway reader using firmware version 2.6.0.240. I tried to configure ReaderDevice.xml and ImpinjTCPIPController.xml and I can connect the reader, but there is a problem with the management agent: 2090 [main] DEBUG org.fosstrak.reader.rprm.core.mgmt.alarm.AlarmChannel - Management agent not yet initialized: Cannot register at the management agent. Now I'm not sure about the mgmtAgentType property in ReaderDevice.xml: <mgmtAgentType>SNMP</mgmtAgentType> Can I use this for a my firmware version, because the manual says "snmp - not yet handled"? Or do I need a newer firmware version (Octane 3)? Thanks for your help! Jeanette |
|
From: alex o. <ale...@ya...> - 2009-01-07 09:58:41
|
Hi, i send you the batchfile directly on your mail as the mailing list doesn't accept file so big.
|
|
From: alex o. <ale...@ya...> - 2009-01-07 08:14:58
|
trying to run batchfile.txt made 3000 tags passing simultaneously under a shelf i get aways a java exception
i it concerns che reader level and in the hal simulator.
The excetion is:
exception in thread "Thread-4" java.util.ConcurrentModificationException
at java.util.HashMap$HashIterator.nextEntry(Unknown Source)
at java.util.HashMap$KeyIterator.next(Unknown Source)
at org.fosstrak.hal.impl.sim.SimulatorController.identify(SimulatorController.java:373)
at org.fosstrak.server.readers.hal.HALAdaptor.identify(HALAdaptor.java:293)
at org.fosstrak.ale.server.readers.IdentifyThread.run(IdentifyThread.java:109)
at java.lang.Thread.run(Unknow Source)
after this the fc server does not capture any event.
Can you give me some help? i need to solve this as soon as possible..
thanks a lot
Alessio
|
|
From: Philipp S. <phi...@s2...> - 2008-12-18 13:00:29
|
Hi, If it is possible, try the same code under linux. I don't know why but I can't get any notifications on Windows even if I use the example code. The network analyzing tool Ethereal showed no activity when dragging a tag on Shelf1 and I've tried communication over localhost and between two PCs. Then I've tested the same code on an Ubuntu Live System and everything worked fine. That's not a solution but perhabs it can help you. regards Philipp Bruno Machado wrote: > Hello, my name is Bruno Ferreira Machado and I'm a student at Universidade > Federal de Goiás in Brazil. We have an RFID study group and we have just > begun using Fosstrak to get to know its features. > > I'm having a little problem: when I use the reader-rp-proxy and the > ReaderProxyExample as shown in the example at > http://www.fosstrak.org/reader/docs/user-proxy.html, I can't get any > notifications or messages at the proxy side. I see in the terminal from > which I start the reader-rprm-core that the tags are being identified in > Shelf1 (I'm using the simulator provided by the rprm-core), but no > messages > are shown in the promt for the ReaderProxyExample. I've added the > NotificationChannelListener code to that Example, but still got nothing. > > I hope what I described was enough. If not, I may try to be more specific. > > Thanks. > > -- > http://the-finest-hour.blogspot.com/ |
|
From: Bruno M. <bru...@in...> - 2008-12-17 14:58:58
|
Hello, my name is Bruno Ferreira Machado and I'm a student at Universidade Federal de Goiás in Brazil. We have an RFID study group and we have just begun using Fosstrak to get to know its features. I'm having a little problem: when I use the reader-rp-proxy and the ReaderProxyExample as shown in the example at http://www.fosstrak.org/reader/docs/user-proxy.html, I can't get any notifications or messages at the proxy side. I see in the terminal from which I start the reader-rprm-core that the tags are being identified in Shelf1 (I'm using the simulator provided by the rprm-core), but no messages are shown in the promt for the ReaderProxyExample. I've added the NotificationChannelListener code to that Example, but still got nothing. I hope what I described was enough. If not, I may try to be more specific. Thanks. -- http://the-finest-hour.blogspot.com/ |
|
From: tanja <jan...@ya...> - 2008-12-05 08:48:17
|
Hi Matthias,
I've solved the problem. It was not due to jdk.
I installed by mistake an old version of epcis-repository on the other computer. Now it works fine.
Regards
Tanja
________________________________
Von: Lampe Matthias <ml...@in...>
An: tanja <jan...@ya...>; acc...@li...
Gesendet: Donnerstag, den 4. Dezember 2008, 09:49:52 Uhr
Betreff: AW: [accada-reader-user] Capture application doesn't get any reportsfrom the reader simulator
Hi Tanja
could you try using also a jdk and let us know if you still have the same problem.
Best
Matthias
________________________________
Von: tanja [mailto:jan...@ya...]
Gesendet: Di 02.12.2008 23:53
An: acc...@li...
Betreff: [accada-reader-user] Capture application doesn't get any reportsfrom the reader simulator
Hi,
I delevoped a small application that captures events coming from a reader simulator. I run a reader simulator that I configure through the f&c-client. It works fine on my computer. Now I wanted to test it on other PCs and it doesn't work. My application doesn't get any reports from the simulator. I assumed it's due to the classpath and pass settings. But they are the same. They only difference that I see: other pcs do not have jdk, but jre version is the same (jre1.6 update 11).
Do anybody has any idea?
This are settings on the pc where it doesn't work:
Classpath: .;D:\reader-rprm-core-0.5.0\lib;C:\Programme\Apache Software Foundation\Tomcat 5.5\common\lib;D:\reader-rp-client-0.5.0\reader-rp-client-0.5.0.jar;D:\reader-rprm-core-0.5.0\reader-rprm-core-0.5.0.jar
Thank you
tanja
|
|
From: Lampe M. <ml...@in...> - 2008-12-04 08:51:51
|
Hi Tanja could you try using also a jdk and let us know if you still have the same problem. Best Matthias ________________________________ Von: tanja [mailto:jan...@ya...] Gesendet: Di 02.12.2008 23:53 An: acc...@li... Betreff: [accada-reader-user] Capture application doesn't get any reportsfrom the reader simulator Hi, I delevoped a small application that captures events coming from a reader simulator. I run a reader simulator that I configure through the f&c-client. It works fine on my computer. Now I wanted to test it on other PCs and it doesn't work. My application doesn't get any reports from the simulator. I assumed it's due to the classpath and pass settings. But they are the same. They only difference that I see: other pcs do not have jdk, but jre version is the same (jre1.6 update 11). Do anybody has any idea? This are settings on the pc where it doesn't work: Classpath: .;D:\reader-rprm-core-0.5.0\lib;C:\Programme\Apache Software Foundation\Tomcat 5.5\common\lib;D:\reader-rp-client-0.5.0\reader-rp-client-0.5.0.jar;D:\reader-rprm-core-0.5.0\reader-rprm-core-0.5.0.jar Thank you tanja |
|
From: tanja <jan...@ya...> - 2008-12-02 22:54:03
|
Hi,
I delevoped a small application that captures events coming from a reader simulator. I run a reader simulator that I configure through the f&c-client. It works fine on my computer. Now I wanted to test it on other PCs and it doesn't work. My application doesn't get any reports from the simulator. I assumed it's due to the classpath and pass settings. But they are the same. They only difference that I see: other pcs do not have jdk, but jre version is the same (jre1.6 update 11).
Do anybody has any idea?
This are settings on the pc where it doesn't work:
Classpath: .;D:\reader-rprm-core-0.5.0\lib;C:\Programme\Apache Software Foundation\Tomcat 5.5\common\lib;D:\reader-rp-client-0.5.0\reader-rp-client-0.5.0.jar;D:\reader-rprm-core-0.5.0\reader-rprm-core-0.5.0.jar
Thank you
tanja
|
|
From: Lampe M. <ml...@in...> - 2008-11-27 15:57:43
|
Dear Philipp
since EPCglobal will not further support the Reader Protocol, we decided not to maintain our implementation any more. The current implementation has some known bugs and your problem might be related to an existing bug. Sorry if we can't help you more at the moment.
Best
Matthias
________________________________
Von: Philipp Schmiedel [mailto:phi...@s2...]
Gesendet: Do 27.11.2008 10:27
An: acc...@li...
Betreff: [accada-reader-user] Help writing on a tag
Hi,
I can't find any tutorial about writing on RFID tags so I hope that you
can help me to understand. Configurating Fosstrak Simulator and using
Fosstrak Proxy as described on the Fosstrak website worked fine. After
reading the reader protocol specifications of EPCglobal I've tried to
find out how to write data on a tag passing by a source of the reader.
My point of knowledge at the moment is (please correct me if I'm wrong):
* I need to create a TagField and a TagFieldValue
* then link the value and tag field with
tagFieldValue.setTagField(tagField);
* create a tagSelectorList because it is needed for the Source.write command
* create a tagFieldValueList because it is needed for the Soruce.write
command
* write to tags at the current Source
Is there something else I need to do?
Here is my code for creating a TagField and a TagSelector:
private static void createTagFields() throws RPProxyException {
TagField tagfield;
try {
tagfield = TagFieldFactory.createTagField(TAG_FIELD_NAME,
readerDevice);
} catch (RPProxyException e) {
System.out.println("skipping create TagField - " +
e.getMessage());
}
tagfield = readerDevice.getTagField(TAG_FIELD_NAME);
TagFieldValue tagFieldValue = TagFieldValueFactory
.createTagFieldValue();
tagFieldValue.setValue("1001");
tagFieldValue.setTagField(tagfield);
tagFieldValueList = new TagFieldValue[1];
tagFieldValueList[0] = tagFieldValue;
// TagSelector
try {
TagSelector tagSelector = TagSelectorFactory.createTagSelector(
TAG_SELECTOR_NAME, tagfield, "1111111111111111",
"1111111111111111", true, readerDevice);
} catch (RPProxyException e) {
System.out.println("skipping create TagFieldSelector - "
+ e.getMessage());
}
tagSelectorList = readerDevice.getAllTagSelectors();
}
If I try now to write on tags:
currentSource.write(tagFieldValueList, new String[1], tagSelectorList);
I get back an ERROR_UNKNOWN exception.
Can you please describe me the correct way for writing data on a tag?
Thank You very much.
Regards
Philipp
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
accada-reader-user mailing list
acc...@li...
https://lists.sourceforge.net/lists/listinfo/accada-reader-user
|
|
From: Philipp S. <phi...@s2...> - 2008-11-27 09:50:42
|
Hi,
I can't find any tutorial about writing on RFID tags so I hope that you
can help me to understand. Configurating Fosstrak Simulator and using
Fosstrak Proxy as described on the Fosstrak website worked fine. After
reading the reader protocol specifications of EPCglobal I've tried to
find out how to write data on a tag passing by a source of the reader.
My point of knowledge at the moment is (please correct me if I'm wrong):
* I need to create a TagField and a TagFieldValue
* then link the value and tag field with
tagFieldValue.setTagField(tagField);
* create a tagSelectorList because it is needed for the Source.write command
* create a tagFieldValueList because it is needed for the Soruce.write
command
* write to tags at the current Source
Is there something else I need to do?
Here is my code for creating a TagField and a TagSelector:
private static void createTagFields() throws RPProxyException {
TagField tagfield;
try {
tagfield = TagFieldFactory.createTagField(TAG_FIELD_NAME,
readerDevice);
} catch (RPProxyException e) {
System.out.println("skipping create TagField - " +
e.getMessage());
}
tagfield = readerDevice.getTagField(TAG_FIELD_NAME);
TagFieldValue tagFieldValue = TagFieldValueFactory
.createTagFieldValue();
tagFieldValue.setValue("1001");
tagFieldValue.setTagField(tagfield);
tagFieldValueList = new TagFieldValue[1];
tagFieldValueList[0] = tagFieldValue;
// TagSelector
try {
TagSelector tagSelector = TagSelectorFactory.createTagSelector(
TAG_SELECTOR_NAME, tagfield, "1111111111111111",
"1111111111111111", true, readerDevice);
} catch (RPProxyException e) {
System.out.println("skipping create TagFieldSelector - "
+ e.getMessage());
}
tagSelectorList = readerDevice.getAllTagSelectors();
}
If I try now to write on tags:
currentSource.write(tagFieldValueList, new String[1], tagSelectorList);
I get back an ERROR_UNKNOWN exception.
Can you please describe me the correct way for writing data on a tag?
Thank You very much.
Regards
Philipp
|
|
From: alex o. <ale...@ya...> - 2008-11-01 18:22:21
|
Hi, i've a big problem using filtering and collection service and Reader level.
I want to send some tag from the batch simulator and filtering them using the groupspec settings in the EventCycleSpecification on the FCServer.
A batchfile row looks like this:
1000;EN;Shelf1;90020EC420F00002;null
While the groupspec pattern is made on:
<groupSpec>
<pattern>urn:epc:tag:sgtin-64:*.*.*.*</pattern>
</groupSpec>
When i run the application, the tomcat gives me the following error in the log file:
58484 [Thread-54] ERROR org.fosstrak.ale.server.EventCycle - EventCycle SpecCurrent_0: Could not create ECReports (Invalid Pattern '90020EC420F00013'. Pattern must have the form 'urn:epcurn | tag | pat | id | idpat | raw):tag-typeata-fields'.)
So the fc server try to compare 90020EC420F00002 with the sgtin-64 notation. What could be the solution to this problem?
Have i to use TDT to translate the 90020EC420F00002 in to the urn:epc:tag:sgtin-64 pattern?
How can i do this? Is there something implemented i have missed?
Have i to modify the fcSeverver source code translating the tag in the righ pattern form? What class have i to modify?
Please answer me soon.
thanks al lot.
Regards... Alessio
Unisciti alla community di Io fotografo e video, il nuovo corso di fotografia di Gazzetta dello sport:
http://www.flickr.com/groups/iofotografoevideo |
|
From: Lampe M. <ml...@in...> - 2008-10-21 12:37:21
|
Hi ??? what do you mean when you say installing reader-rp-proxy and hal-common? Since they are dependencies they can not be used stand-alone and should be included in your own application. They are already included in reader-rprm-core and reader-client as dependencies. Best Matthias ________________________________ Von: xxxx xxxx [mailto:an_...@ya...] Gesendet: Mo 20.10.2008 11:41 An: acc...@li... Betreff: [accada-reader-user] Proxy and HAL error hi, i have no trouble installing and executing the jar for the reader-rp-core and reader-client project, it worked great, thanks a lot guys for the simulation, it realy help but when i installed the reader-rp-proxy and hal-common , i get the same java error message : Failed to load main-class manifest attribute from <path to rp-proxy/hal> how can i overcome this error ? thanks. --- On Wed, 10/8/08, acc...@li... <acc...@li...> wrote: From: acc...@li... <acc...@li...> Subject: accada-reader-user Digest, Vol 7, Issue 3 To: acc...@li... Date: Wednesday, October 8, 2008, 6:22 AM Send accada-reader-user mailing list submissions to acc...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/accada-reader-user or, via email, send a message with subject or body 'help' to acc...@li... You can reach the person managing the list at acc...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of accada-reader-user digest..." Today's Topics: 1. Re: reader performance - factory usage of fosstrak (alex orl) 2. HAL adaptor configuration (alex orl) 3. hal simulator doen't start with HAL adaptor on Fc server (alex orl) 4. I: hal simulator doen't start with HAL adaptor on Fc server (alex orl) 5. R: AW: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server (alex orl) ---------------------------------------------------------------------- Message: 1 Date: Mon, 6 Oct 2008 22:48:04 +0000 (GMT) From: alex orl <ale...@ya...> Subject: Re: [accada-reader-user] reader performance - factory usage of fosstrak To: Lampe Matthias <ml...@in...>, acc...@li..., acc...@li... Message-ID: <975...@we...> Content-Type: text/plain; charset="utf-8" Sorry, but what can i do to specify an HAL adaptor in my fc server and mainly to run the graphic simulator in the hal mode in order to comunicate the event? thanks a lot. Alessio --- Sab 4/10/08, Lampe Matthias <ml...@in...> ha scritto: Da: Lampe Matthias <ml...@in...> Oggetto: RE: AW: [accada-reader-user] reader performance - factory usage of fosstrak A: ale...@ya..., acc...@li..., acc...@li... Data: Sabato 4 ottobre 2008, 20:01 Hi Alex Just to clarify the usage of the HAL: The Fosstrak HAL ist not any EPCglobal standard. It is our common interface to include 'legacy' readers (i.e. readers that do not use RP or LLRP) into the Fosstrak modules. The HAL is used both by the Reader and by the Filtering and Collection (fc) module. The fc module also uses the Reader Protocol to communicate with physical readers. That means, you can either use the fc module to communicate to a reader (or the simulator) with the HAL (i.e. HALAdaptor in fc) or a Reader Protocol reader (i.e. RPAdaptor in fc). Using the HAL simulator you can of course run a Fosstrak Reader with HAL simulator and then use the RPAdaptor to communiate with it from the FC module. We will look into the problems you have with the HALAdaptor of the FC module. What OS, JDK and Servlet Engine are you using? Best Matthias From: alex orl [mailto:ale...@ya...] Sent: Freitag, 3. Oktober 2008 15:16 To: Lampe Matthias; acc...@li...; acc...@li... Subject: R: AW: [accada-reader-user] reader performance - factory usage of fosstrak Dear Matthias, thanks for your answering. What do you mean with: "fc-server directly connected with HAL" I want to explain you what are my test: Not having a real reader for now, i'm using the graphic simulator. In the fc web client i specified the file HALReader.xml as my Logical reader specification. Its content look like this: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <ns3:LRSpec xmlns:ns2="urn:epcglobal:ale:wsdl:1" xmlns:ns3="urn:epcglobal:ale:xsd:1"> <isComposite>false</isComposite> <readers /> - <properties> - <property> <name>ReaderType</name> <value>org.fosstrak.ale.server.readers.hal.HALAdaptor</value> </property> - <property> <name>Description</name> <value>My first HAL device reader</value> </property> - <property> <name>PhysicalReaderName</name> <value>MyReader1</value> </property> - <property> <name>ReadTimeInterval</name> <value>1000</value> </property> - <property> <name>PropertiesFile</name> <value>/props/SimulatorController.xml</value> </property> </properties> </ns3:LRSpec> The SimulatorController.xml has already the reference to the GraphicSimulator.xml . Then i specify the ECSpecCurrent.xml as EventCycle specification. When i run the the graphicSimulator and i push a tag over one shelf, nothing is notificated. No event are captured. But this does not happen when i use the RPReader.xml as logical reader specification, as all works fine and all the event seem to be captured. What does it depend of? I make some confusion about the use of the HAL.. In the RPReader.xml logical reader definition there is: <property> <name>ReaderType</name> <value>org.fosstrak.ale.server.readers.rp.RPAdaptor</value> </property> But all the system works using the graphic simulator. GraphicSimulator use <simType>org.fosstrak.hal.impl.sim.GraphicSimulator</simType>, so it already uses HAL class. Where is the difference using HALReader.xml and RPReader.xml logical reader definition? I need a very simply explanation please. Thanks a lot. Regards Alessio --- Gio 2/10/08, Lampe Matthias <ml...@in...> ha scritto: Da: Lampe Matthias <ml...@in...> Oggetto: AW: [accada-reader-user] reader performance - factory usage of fosstrak A: ale...@ya..., acc...@li..., acc...@li... Data: Gioved? 2 ottobre 2008, 22:01 Dear Alessio thanks for the further information. As there are known problems with reader-rprm-core and fc-server due to bugs in the reader-proxy that is used to connect to reader-rprm-core I would suggest you use fc-server directly with the HAL which is possible and described on the website of fc. If you are 'loosing' tags depends also highly on your specification of the event cycle (ECSpec) you are using in the fc-server. Otherwise fc-server performes very well and you are not loosing any reads. Best Matthias ________________________________ Von: alex orl [mailto:ale...@ya...] Gesendet: Do 02.10.2008 16:50 An: acc...@li... Betreff: [accada-reader-user] reader performance - factory usage of fosstrak Sorry, i forgot to specify the version of the differents moldules i'm using. I've downloaded the last version of each one: reader-rprm-core-0.5.0 fc-server-0.4.0 epcis-repository-0.4.1 tdt-0.4.0 thanks to all. Regards Alessio ________________________________ Scopri il Blog di Yahoo! Mail <http://us.rd.yahoo.com/mail/it/taglines/yahoo/ymail/SIG=11djrg460/**http%3A%2F%2Fwww.ymailblogit.com%2Fblog%2F> : trucchi, novit?, consigli... e anche la tua opinione! ________________________________ Scopri il Blog di Yahoo! Mail <http://us.rd.yahoo.com/mail/it/taglines/yahoo/ymail/SIG=11djrg460/**http%3A%2F%2Fwww.ymailblogit.com%2Fblog%2F> : trucchi, novit?, consigli... e anche la tua opinione! Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 2 Date: Mon, 6 Oct 2008 21:45:42 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] HAL adaptor configuration To: acc...@li..., acc...@li... Message-ID: <372...@we...> Content-Type: text/plain; charset="utf-8" Hi, can anyone write a little guide which describer step by step what i have to do for using hal adaptor in the fc server and the graphic simulator? I'm using fc server 0.4.0 and fc webclient 0.4.0. Thanks a lot Alessio Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 3 Date: Tue, 7 Oct 2008 20:36:21 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] hal simulator doen't start with HAL adaptor on Fc server To: Lampe Matthias <ml...@in...>, acc...@li..., acc...@li... Message-ID: <641...@we...> Content-Type: text/plain; charset="utf-8" Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 4 Date: Tue, 7 Oct 2008 22:55:09 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] I: hal simulator doen't start with HAL adaptor on Fc server To: acc...@li..., acc...@li... Message-ID: <340...@we...> Content-Type: text/plain; charset="utf-8" Sorry i've forgotten to specify that after i run the tomcat server the graphic simulator doesn't start and in the log file i read: 1012 [Thread-1] DEBUG org.fosstrak.ale.server..readers.LogicalReaderManager? - Initialize LogicalReaderManager 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Parse configuration file :/LogicalReaders.xml 1234 [Thread-1] ERROR org.fosstrak.ale.server.readers.LogicalReaderManager? - reader LogicalReader1 not contained in LogicalReaderManager ? Can anyone suggest me what depends that error of? thanks --- Mar 7/10/08, alex orl <ale...@ya...> ha scritto: Da: alex orl <ale...@ya...> Oggetto: hal simulator doen't start with HAL adaptor on Fc server A: "Lampe Matthias" <ml...@in...>, acc...@li..., acc...@li... Data: Marted? 7 ottobre 2008, 22:36 Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio Scopri il Blog di Yahoo! Mail: trucchi, novit?, consigli... e scrivi la tua opinione! Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 5 Date: Wed, 8 Oct 2008 10:15:06 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] R: AW: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server To: Wieland Samuel <saw...@st...>, acc...@li..., acc...@li... Message-ID: <898...@we...> Content-Type: text/plain; charset="utf-8" Can you tell me in particular what jar i have to recompile? or what class? or if you can, can you publish the new fc server precompiled online? thanks a lot. Alessio --- Mer 8/10/08, Wieland Samuel <saw...@st...> ha scritto: Da: Wieland Samuel <saw...@st...> Oggetto: AW: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server A: ale...@ya..., acc...@li..., acc...@li... Data: Mercoled? 8 ottobre 2008, 08:27 hoi alex, did you use the latest fc-server version from the svn-repository or did you use the precompiled version from the website? (there is a known issue with the HALAdaptor in 0.4.0 that is fixed in the version from the trunk). lg samuel -----Urspr?ngliche Nachricht----- Von: alex orl [mailto:ale...@ya...] Gesendet: Mi 10/8/2008 12:55 An: acc...@li...; acc...@li... Betreff: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server Sorry i've forgotten to specify that after i run the tomcat server the graphic simulator doesn't start and in the log file i read: 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Initialize LogicalReaderManager 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Parse configuration file :/LogicalReaders.xml 1234 [Thread-1] ERROR org.fosstrak.ale.server.readers.LogicalReaderManager? - reader LogicalReader1 not contained in LogicalReaderManager ? Can anyone suggest me what depends that error of? thanks --- Mar 7/10/08, alex orl <ale...@ya...> ha scritto: Da: alex orl <ale...@ya...> Oggetto: hal simulator doen't start with HAL adaptor on Fc server A: "Lampe Matthias" <ml...@in...>, acc...@li..., acc...@li... Data: Marted? 7 ottobre 2008, 22:36 Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio Scopri il Blog di Yahoo! Mail: trucchi, novit?, consigli... e scrivi la tua opinione! Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog Scopri il blog di Yahoo! Mail: Trucchi, novit? e scrivi la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ accada-reader-user mailing list acc...@li... https://lists.sourceforge.net/lists/listinfo/accada-reader-user End of accada-reader-user Digest, Vol 7, Issue 3 ************************************************ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: xxxx x. <an_...@ya...> - 2008-10-20 09:52:57
|
hi, i have no trouble installing and executing the jar for the reader-rp-core and reader-client project, it worked great, thanks a lot guys for the simulation, it realy help but when i installed the reader-rp-proxy and hal-common , i get the same java error message : Failed to load main-class manifest attribute from <path to rp-proxy/hal> how can i overcome this error ? thanks. --- On Wed, 10/8/08, acc...@li... <acc...@li...> wrote: From: acc...@li... <acc...@li...> Subject: accada-reader-user Digest, Vol 7, Issue 3 To: acc...@li... Date: Wednesday, October 8, 2008, 6:22 AM Send accada-reader-user mailing list submissions to acc...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/accada-reader-user or, via email, send a message with subject or body 'help' to acc...@li... You can reach the person managing the list at acc...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of accada-reader-user digest..." Today's Topics: 1. Re: reader performance - factory usage of fosstrak (alex orl) 2. HAL adaptor configuration (alex orl) 3. hal simulator doen't start with HAL adaptor on Fc server (alex orl) 4. I: hal simulator doen't start with HAL adaptor on Fc server (alex orl) 5. R: AW: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server (alex orl) ---------------------------------------------------------------------- Message: 1 Date: Mon, 6 Oct 2008 22:48:04 +0000 (GMT) From: alex orl <ale...@ya...> Subject: Re: [accada-reader-user] reader performance - factory usage of fosstrak To: Lampe Matthias <ml...@in...>, acc...@li..., acc...@li... Message-ID: <975...@we...> Content-Type: text/plain; charset="utf-8" Sorry, but what can i do to specify an HAL adaptor in my fc server and mainly to run the graphic simulator in the hal mode in order to comunicate the event? thanks a lot. Alessio --- Sab 4/10/08, Lampe Matthias <ml...@in...> ha scritto: Da: Lampe Matthias <ml...@in...> Oggetto: RE: AW: [accada-reader-user] reader performance - factory usage of fosstrak A: ale...@ya..., acc...@li..., acc...@li... Data: Sabato 4 ottobre 2008, 20:01 Hi Alex Just to clarify the usage of the HAL: The Fosstrak HAL ist not any EPCglobal standard. It is our common interface to include 'legacy' readers (i.e. readers that do not use RP or LLRP) into the Fosstrak modules. The HAL is used both by the Reader and by the Filtering and Collection (fc) module. The fc module also uses the Reader Protocol to communicate with physical readers. That means, you can either use the fc module to communicate to a reader (or the simulator) with the HAL (i.e. HALAdaptor in fc) or a Reader Protocol reader (i.e. RPAdaptor in fc). Using the HAL simulator you can of course run a Fosstrak Reader with HAL simulator and then use the RPAdaptor to communiate with it from the FC module. We will look into the problems you have with the HALAdaptor of the FC module. What OS, JDK and Servlet Engine are you using? Best Matthias From: alex orl [mailto:ale...@ya...] Sent: Freitag, 3. Oktober 2008 15:16 To: Lampe Matthias; acc...@li...; acc...@li... Subject: R: AW: [accada-reader-user] reader performance - factory usage of fosstrak Dear Matthias, thanks for your answering. What do you mean with: "fc-server directly connected with HAL" I want to explain you what are my test: Not having a real reader for now, i'm using the graphic simulator. In the fc web client i specified the file HALReader.xml as my Logical reader specification. Its content look like this: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <ns3:LRSpec xmlns:ns2="urn:epcglobal:ale:wsdl:1" xmlns:ns3="urn:epcglobal:ale:xsd:1"> <isComposite>false</isComposite> <readers /> - <properties> - <property> <name>ReaderType</name> <value>org.fosstrak.ale.server.readers.hal.HALAdaptor</value> </property> - <property> <name>Description</name> <value>My first HAL device reader</value> </property> - <property> <name>PhysicalReaderName</name> <value>MyReader1</value> </property> - <property> <name>ReadTimeInterval</name> <value>1000</value> </property> - <property> <name>PropertiesFile</name> <value>/props/SimulatorController.xml</value> </property> </properties> </ns3:LRSpec> The SimulatorController.xml has already the reference to the GraphicSimulator.xml . Then i specify the ECSpecCurrent.xml as EventCycle specification. When i run the the graphicSimulator and i push a tag over one shelf, nothing is notificated. No event are captured. But this does not happen when i use the RPReader.xml as logical reader specification, as all works fine and all the event seem to be captured. What does it depend of? I make some confusion about the use of the HAL. In the RPReader.xml logical reader definition there is: <property> <name>ReaderType</name> <value>org.fosstrak.ale.server.readers.rp.RPAdaptor</value> </property> But all the system works using the graphic simulator. GraphicSimulator use <simType>org.fosstrak.hal.impl.sim.GraphicSimulator</simType>, so it already uses HAL class. Where is the difference using HALReader.xml and RPReader.xml logical reader definition? I need a very simply explanation please. Thanks a lot. Regards Alessio --- Gio 2/10/08, Lampe Matthias <ml...@in...> ha scritto: Da: Lampe Matthias <ml...@in...> Oggetto: AW: [accada-reader-user] reader performance - factory usage of fosstrak A: ale...@ya..., acc...@li..., acc...@li... Data: Gioved? 2 ottobre 2008, 22:01 Dear Alessio thanks for the further information. As there are known problems with reader-rprm-core and fc-server due to bugs in the reader-proxy that is used to connect to reader-rprm-core I would suggest you use fc-server directly with the HAL which is possible and described on the website of fc. If you are 'loosing' tags depends also highly on your specification of the event cycle (ECSpec) you are using in the fc-server. Otherwise fc-server performes very well and you are not loosing any reads. Best Matthias ________________________________ Von: alex orl [mailto:ale...@ya...] Gesendet: Do 02.10.2008 16:50 An: acc...@li... Betreff: [accada-reader-user] reader performance - factory usage of fosstrak Sorry, i forgot to specify the version of the differents moldules i'm using. I've downloaded the last version of each one: reader-rprm-core-0.5.0 fc-server-0.4.0 epcis-repository-0.4.1 tdt-0.4.0 thanks to all. Regards Alessio ________________________________ Scopri il Blog di Yahoo! Mail <http://us.rd.yahoo.com/mail/it/taglines/yahoo/ymail/SIG=11djrg460/**http%3A%2F%2Fwww.ymailblogit.com%2Fblog%2F> : trucchi, novit?, consigli... e anche la tua opinione! ________________________________ Scopri il Blog di Yahoo! Mail <http://us.rd.yahoo.com/mail/it/taglines/yahoo/ymail/SIG=11djrg460/**http%3A%2F%2Fwww.ymailblogit.com%2Fblog%2F> : trucchi, novit?, consigli... e anche la tua opinione! Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 2 Date: Mon, 6 Oct 2008 21:45:42 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] HAL adaptor configuration To: acc...@li..., acc...@li... Message-ID: <372...@we...> Content-Type: text/plain; charset="utf-8" Hi, can anyone write a little guide which describer step by step what i have to do for using hal adaptor in the fc server and the graphic simulator? I'm using fc server 0.4.0 and fc webclient 0.4.0. Thanks a lot Alessio Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 3 Date: Tue, 7 Oct 2008 20:36:21 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] hal simulator doen't start with HAL adaptor on Fc server To: Lampe Matthias <ml...@in...>, acc...@li..., acc...@li... Message-ID: <641...@we...> Content-Type: text/plain; charset="utf-8" Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 4 Date: Tue, 7 Oct 2008 22:55:09 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] I: hal simulator doen't start with HAL adaptor on Fc server To: acc...@li..., acc...@li... Message-ID: <340...@we...> Content-Type: text/plain; charset="utf-8" Sorry i've forgotten to specify that after i run the tomcat server the graphic simulator doesn't start and in the log file i read: 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Initialize LogicalReaderManager 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Parse configuration file :/LogicalReaders.xml 1234 [Thread-1] ERROR org.fosstrak.ale.server.readers.LogicalReaderManager? - reader LogicalReader1 not contained in LogicalReaderManager ? Can anyone suggest me what depends that error of? thanks --- Mar 7/10/08, alex orl <ale...@ya...> ha scritto: Da: alex orl <ale...@ya...> Oggetto: hal simulator doen't start with HAL adaptor on Fc server A: "Lampe Matthias" <ml...@in...>, acc...@li..., acc...@li... Data: Marted? 7 ottobre 2008, 22:36 Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio Scopri il Blog di Yahoo! Mail: trucchi, novit?, consigli... e scrivi la tua opinione! Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 5 Date: Wed, 8 Oct 2008 10:15:06 +0000 (GMT) From: alex orl <ale...@ya...> Subject: [accada-reader-user] R: AW: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server To: Wieland Samuel <saw...@st...>, acc...@li..., acc...@li... Message-ID: <898...@we...> Content-Type: text/plain; charset="utf-8" Can you tell me in particular what jar i have to recompile? or what class? or if you can, can you publish the new fc server precompiled online? thanks a lot. Alessio --- Mer 8/10/08, Wieland Samuel <saw...@st...> ha scritto: Da: Wieland Samuel <saw...@st...> Oggetto: AW: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server A: ale...@ya..., acc...@li..., acc...@li... Data: Mercoled? 8 ottobre 2008, 08:27 hoi alex, did you use the latest fc-server version from the svn-repository or did you use the precompiled version from the website? (there is a known issue with the HALAdaptor in 0.4.0 that is fixed in the version from the trunk). lg samuel -----Urspr?ngliche Nachricht----- Von: alex orl [mailto:ale...@ya...] Gesendet: Mi 10/8/2008 12:55 An: acc...@li...; acc...@li... Betreff: [accada-ale-user] I: hal simulator doen't start with HAL adaptor onFc server Sorry i've forgotten to specify that after i run the tomcat server the graphic simulator doesn't start and in the log file i read: 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Initialize LogicalReaderManager 1012 [Thread-1] DEBUG org.fosstrak.ale.server.readers.LogicalReaderManager? - Parse configuration file :/LogicalReaders.xml 1234 [Thread-1] ERROR org.fosstrak.ale.server.readers.LogicalReaderManager? - reader LogicalReader1 not contained in LogicalReaderManager ? Can anyone suggest me what depends that error of? thanks --- Mar 7/10/08, alex orl <ale...@ya...> ha scritto: Da: alex orl <ale...@ya...> Oggetto: hal simulator doen't start with HAL adaptor on Fc server A: "Lampe Matthias" <ml...@in...>, acc...@li..., acc...@li... Data: Marted? 7 ottobre 2008, 22:36 Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio Scopri il Blog di Yahoo! Mail: trucchi, novit?, consigli... e scrivi la tua opinione! Scopri il blog di Yahoo! Mail: Trucchi, novit? e la tua opinione. http://www.ymailblogit.com/blog Scopri il blog di Yahoo! Mail: Trucchi, novit? e scrivi la tua opinione. http://www.ymailblogit.com/blog -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ accada-reader-user mailing list acc...@li... https://lists.sourceforge.net/lists/listinfo/accada-reader-user End of accada-reader-user Digest, Vol 7, Issue 3 ************************************************ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Lampe M. <ml...@in...> - 2008-10-14 15:13:44
|
Hi Alex it is important that you start Tomcat with the option that Tomcat has the permission to open windows. This can be done using the Tomcat Service Manager when Tomcat is installed as a Windows service. Best Matthias ________________________________ Von: alex orl [mailto:ale...@ya...] Gesendet: Di 07.10.2008 22:36 An: Lampe Matthias; acc...@li...; acc...@li... Betreff: hal simulator doen't start with HAL adaptor on Fc server Hi i try to be clearer. I have deployed the fc server war file into the tomcat. I have defined an HAL adaptor taking it from the simple example on the fosstrak site. I think that, now, running the tomcat server and so running the fc server service, no hal grafic simulator starts. My O. S. is Windows Xp or Windows Vista home premium. My jdk are the 1.5 and i have the JRE 1.6. Where should be the problem? Plese help me. I've to solve this trouble as soon as possibile. Thanks a lot. Alessio ________________________________ Scopri il Blog di Yahoo! Mail <http://us.rd.yahoo.com/mail/it/taglines/yahoo/ymail/SIG=11djrg460/**http%3A%2F%2Fwww.ymailblogit.com%2Fblog%2F> : trucchi, novità, consigli... e scrivi la tua opinione! |