Skip to main content
Home
for DLMS smart meters

Main navigation

  • Home
  • Products
  • About us
  • Open Source
  • Community
  • Forum
  • Downloads
  • Gurux Club
User account menu
  • Log in

Breadcrumb

  1. Home
  2. Forums
  3. Push is not Working

Push is not Working

Forum Rules

Before commenting read Forum rules

Don't comment the topic if you have a new question.

You can create a new topic selecting correct category from Gurux Forum and then create a new topic selecting "New Topic" from the top left.

By sethi.nitin9@g…, 12 January, 2023
Forums
Gurux DLMS for Java

Hi,

I have used the sample code for push notifications from github of gurux, But I'm not able to get the output.

GXDLMSPushSetup p = new GXDLMSPushSetup();
.
p.getPushObjectList().add(new GXSimpleEntry<GXDLMSObject, GXDLMSCaptureObject>(p,
new GXDLMSCaptureObject(2, 0)));

GXDLMSClock clock = new GXDLMSClock();
p.getPushObjectList().add(new GXSimpleEntry<GXDLMSObject, GXDLMSCaptureObject>(clock, new GXDLMSCaptureObject(2, 0)));

p.getPushObjectList().add(new GXSimpleEntry<GXDLMSObject, GXDLMSCaptureObject>(
new GXDLMSData("0.0.94.91.18.255"), new GXDLMSCaptureObject(2, 0)));/

Using above code I'm getting clock data when putting magnet on meter but not the other data, as in below code throwing null pointer:
clone.getPushValues(client, (List<?>) notify.getValue());

receiving null in notify.getValue()

Below given code has one object which is of clock only not the other registered in pushObjectList:
for (Entry<GXDLMSObject, GXDLMSCaptureObject> it : clone.getPushObjectList())

Can you please share code or tell me the path to read magnet tamper using push notifications.

Profile picture for user Kurumi

Kurumi

2 months 1 week ago

Hi, You need to add value to…

Hi,

You need to add value to the data object. Something like this:

GXDLMSPushSetup p = new GXDLMSPushSetup();
p.getPushObjectList().add(new GXSimpleEntry<GXDLMSObject, GXDLMSCaptureObject>(p,
new GXDLMSCaptureObject(2, 0)));

GXDLMSClock clock = new GXDLMSClock();
p.getPushObjectList().add(new GXSimpleEntry<GXDLMSObject, GXDLMSCaptureObject>(clock, new GXDLMSCaptureObject(2, 0)));

GXDLMSData d = new GXDLMSData("0.0.94.91.18.255")
d.setValue(16);
p.getPushObjectList().add(new GXSimpleEntry<GXDLMSObject, GXDLMSCaptureObject>(
d, new GXDLMSCaptureObject(2, 0)));

BR,
Mikko

  • Log in or register to post comments
  • Create new account
  • Reset your password

Hire Us!

Latest Releases

Fri, 03/24/2023 - 14:22
gurux.dlms.c 20230324.1
Thu, 03/23/2023 - 11:01
GXDLMSDirector 9.0.2303.2301
Thu, 03/23/2023 - 09:10
Gurux.DLMS.Python 1.0.142
Wed, 03/22/2023 - 13:51
Gurux.DLMS.Net 9.0.2303.2201
Wed, 03/22/2023 - 10:15
gurux.dlms.c 20230322.1

Open bugs

Gurux.DLMS.AMI4
1
Gurux.DLMS.Android
1
gurux.dlms.c
3
gurux.dlms.cpp
3
gurux.dlms.delphi
1
RSS feed
Privacy FAQ GXDN Issues Contact
Follow Gurux on Twitter Follow Gurux on Linkedin