Search found 361 matches

by Matt
Thu Jun 28, 2018 10:58 pm
Forum: Edge Server Developers
Topic: Updating Spring Framework
Replies: 1
Views: 5294

Re: Updating Spring Framework

There is a slight problem with updating spring framework -- Spring stopped supporting OSGI and dropped support for the "org.springframework.osgi.*" plugins after 3.2.5. While adding OSGI metadata to the spring plugins is possible, the Springframework OSGI plugins were never updated with the rest of ...
by Matt
Thu Jun 28, 2018 10:21 pm
Forum: Edge Server Developers
Topic: Not able to get the RSSI Monitoring Service to work in Rifidi Version 3.7.0
Replies: 10
Views: 655478

Re: Not able to get the RSSI Monitoring Service to work in Rifidi Version 3.7.0

Just tried, and it worked for me. Here is what my _start() looks like in my test application (I hacked up the "HelloWorld" application to test this): /* * (non-Javadoc) * * @see org.rifidi.edge.api.AbstractRifidiApp#_start() */ @Override public void _start() { super._start(); HelloWorldSubscriber su...
by Matt
Tue Jun 05, 2018 1:08 am
Forum: Edge Server Developers
Topic: Not able to get the RSSI Monitoring Service to work in Rifidi Version 3.7.0
Replies: 10
Views: 655478

Re: Not able to get the RSSI Monitoring Service to work in Rifidi Version 3.7.0

Hi Matt, were you able to look into the RSSI Monitoring Service concerning the issues I ran into back in early April? Hi RS123, Sorry about not getting back to you sooner -- setting up an environment to test the RSSI service is time consuming, and I ended up pulled in to some other things before I ...
by Matt
Fri Apr 06, 2018 6:34 pm
Forum: Edge Server Developers
Topic: Not able to get the RSSI Monitoring Service to work in Rifidi Version 3.7.0
Replies: 10
Views: 655478

Re: Not able to get the RSSI Monitoring Service to work in Rifidi Version 3.7.0

Hi Guys,

Thanks for letting us know about this. I'll try to look into this issue this weekend and see if I can figure out what is going on.

Thanks!
-Matt
by Matt
Tue Jun 28, 2016 1:45 am
Forum: Edge Server Developers
Topic: Generic reader and readzone
Replies: 2
Views: 5655

Re: Generic reader and readzone

If your handheld is sending tags back to the server in the way specified in the User doc (be sure to add a "\n" to the end of every tag message, this will be corrected for the soon-to-be released 3.5.1 docs), one quick way to check if tags are coming in is recenttags Generic_1 or currenttags Generic...
by Matt
Mon Jun 27, 2016 3:34 am
Forum: Edge Server Developers
Topic: Unable to insert events to esper
Replies: 8
Views: 10004

Re: Unable to insert events to esper

1. Yes. Any event sent in will trigger anyone else looking for that particular event if it matches their statement. This is more theoretical than practical -- I doubt any reasonable code written would actually do something unexpected. If you are worried, just use custom events. It isn't that much co...
by Matt
Wed Jun 22, 2016 6:22 pm
Forum: Edge Server Developers
Topic: Unable to insert events to esper
Replies: 8
Views: 10004

Re: Unable to insert events to esper

1. I'd recommend using a custom event type if: a. The standard event types don't do what you want, or b. you only want your code or a specific portion of your code to react to that particular event. If you insert, say, a TagReadEvent that may cause code elsewhere in the system to react to that event...
by Matt
Wed Jun 22, 2016 2:53 am
Forum: Edge Server Developers
Topic: Unable to insert events to esper
Replies: 8
Views: 10004

Re: Unable to insert events to esper

Try exporting your packages in your manifest "runtime" tab. It may be that the edge plugin can't see them if those aren't there.

-Matt
by Matt
Sun Jun 19, 2016 8:26 pm
Forum: Edge Server Developers
Topic: RIFIDI SDK for handheld
Replies: 12
Views: 14015

Re: RIFIDI SDK for handheld

I've been playing around with this, and I wrote a quick and dirty ruby script that works fine for me. Here it is: require 'socket' require 'date' hostname = '192.168.1.4' port = 4567 s = TCPSocket.new(hostname, port) for n in 1..10 str = 'ID:1234567890|Antenna:1|Timestamp:' + DateTime.now.strftime('...
by Matt
Wed May 11, 2016 5:45 pm
Forum: Edge Server Developers
Topic: Use LLRPGPIOService have error log : Reader DAO is null
Replies: 1
Views: 5041

Re: Use LLRPGPIOService have error log : Reader DAO is null

You can't just instantiate the GPIOService like that, you need to inject it through spring.

Here's a tutorial on how to do that:

http://wiki.rifidi.net/index.php?title=GPIO_Tutorial