Error in XMPP Sampler

145 views
Skip to first unread message

John No

unread,
May 22, 2023, 3:26:16 PM5/22/23
to jmeter-plugins
Hello!
Sorry, if I post this conversation incorrectly — it's my 1st try.
I've been trying to solve this issue during the last two days. I just wanna run test from JMeter 5.5 + XMPP Protocol Support 1.5.1. I did all correctly in accordance with The Ultimate Guide. I have also unsuccessfully tried a lot of solutions (e.g., described on Stack Overflow).

I've got the next info about this issue in jmeter.log:

2023-05-22 21:55:28,910 INFO o.a.j.e.StandardJMeterEngine: Running the test!
2023-05-22 21:55:28,912 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2023-05-22 21:55:28,912 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2023-05-22 21:55:29,261 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*)
2023-05-22 21:55:29,328 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : XMPP Protocol Support (bzm; thread group)
2023-05-22 21:55:29,328 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group XMPP Protocol Support (bzm; thread group).
2023-05-22 21:55:29,329 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error
2023-05-22 21:55:29,329 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 delayedStart=false
2023-05-22 21:55:29,350 INFO o.a.j.t.ThreadGroup: Started thread group number 1
2023-05-22 21:55:29,350 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started
2023-05-22 21:55:29,352 INFO o.a.j.t.JMeterThread: Thread started: XMPP Protocol Support (bzm; thread group) 1-1
2023-05-22 21:55:29,357 INFO o.a.j.s.SampleResult: Note: Sample TimeStamps are START times
2023-05-22 21:55:29,359 INFO o.a.j.s.SampleResult: sampleresult.default.encoding is set to ISO-8859-1
2023-05-22 21:55:29,360 INFO o.a.j.s.SampleResult: sampleresult.useNanoTime=true
2023-05-22 21:55:29,360 INFO o.a.j.s.SampleResult: sampleresult.nanoThreadSleep=5000
2023-05-22 21:55:30,493 ERROR c.b.j.x.JMeterXMPPSampler: Error in XMPP Sampler:
org.jivesoftware.smack.SmackException$NoResponseException: null
at org.jivesoftware.smack.PacketCollector.nextResultOrThrow(PacketCollector.java:191) ~[smack-core-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.PacketCollector.nextResultOrThrow(PacketCollector.java:175) ~[smack-core-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.XMPPConnection.bindResourceAndEstablishSession(XMPPConnection.java:535) ~[smack-core-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.login(XMPPTCPConnection.java:260) ~[smack-tcp-4.0.7.jar:4.0.7]
at com.blazemeter.jmeter.xmpp.actions.Login.perform(Login.java:51) ~[jmeter-plugins-xmpp-1.5.1.jar:?]
at com.blazemeter.jmeter.xmpp.JMeterXMPPSampler.sample(JMeterXMPPSampler.java:57) ~[jmeter-plugins-xmpp-1.5.1.jar:?]
at org.apache.jmeter.threads.JMeterThread.doSampling(JMeterThread.java:651) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:570) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:501) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:268) ~[ApacheJMeter_core.jar:5.5]
at java.lang.Thread.run(Thread.java:1623) ~[?:?]
2023-05-22 21:55:30,546 INFO o.a.j.t.JMeterThread: Thread is done: XMPP Protocol Support (bzm; thread group) 1-1
2023-05-22 21:55:30,547 INFO o.a.j.t.JMeterThread: Thread finished: XMPP Protocol Support (bzm; thread group) 1-1
2023-05-22 21:55:30,548 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test
2023-05-22 21:55:30,552 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*)

What could be wrong?
Thanks in advance for all suggestions and I'll be grateful for any ideas for solving it.

John No

unread,
May 23, 2023, 1:57:37 AM5/23/23
to jmeter-plugins
Sorry for not adding additional info — the problem is, my tests don't work properly in JMeter. In fact, they cannot be run at all.

John No

unread,
May 23, 2023, 5:48:37 AM5/23/23
to jmeter-plugins
Could anybody tell me, how to build plugins from this URL? Do I need to build it separately (e.g., all in "xmpp" folder build as "xmpp.jar")? Or I need just build all files from URL, but in that case what name of this file should be?
Thanks in advance.

Dmitri T

unread,
May 23, 2023, 6:09:16 AM5/23/23
to jmeter-plugins
You will need Apache Maven build tool in order to compile the project from source

The command to build only XMPP plugin would be something like:

mvn package -pl xmpp

it will create the .jar file under jmeter-bzm-plugins/xmpp/target/ folder.

However I don't think this is something you should be doing, you will get the same version as from JMeter Plugins Manager 

In order to troubleshoot your issue try increasing JMeter logging verbosity to DEBUG level for the XMPP components and the underlying Smack library, maybe you will be able to spot something there.

John No

unread,
May 23, 2023, 6:40:47 AM5/23/23
to jmeter-plugins
Dmitri T, thank you for your response and the hint.
I've changed logging verbosity to DEBUG level and I've found some moments,  but I'm not sure what that actually means. I'm gonna add debug log info here, maybe someone has already ran into this issue.

Most interesting moments from debug log:
2023-05-23 13:18:42,248 DEBUG o.a.j.g.a.AbstractAction: popupShouldSave
2023-05-23 13:18:42,262 DEBUG o.a.j.g.a.CheckDirty: Node is class: class org.apache.jmeter.gui.tree.JMeterTreeNode
2023-05-23 13:18:42,336 DEBUG o.a.j.g.GuiPackage: Updating current node bzm - XMPP Connection
2023-05-23 13:18:42,340 DEBUG o.a.j.g.a.Start: test plan before cloning is running version: false
2023-05-23 13:18:42,354 DEBUG o.a.j.g.a.Start: test plan after cloning and running test is running version: false
2023-05-23 13:18:42,355 INFO o.a.j.e.StandardJMeterEngine: Running the test!
2023-05-23 13:18:42,356 INFO o.a.j.s.SampleEvent: List of sample_variables: []
2023-05-23 13:18:42,356 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: org.apache.jmeter.control.gui.TestPlanGui
2023-05-23 13:18:42,357 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.BooleanProperty: false
2023-05-23 13:18:42,358 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.CollectionProperty: []
2023-05-23 13:18:42,358 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: []
2023-05-23 13:18:42,358 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: org.apache.jmeter.config.gui.ArgumentsPanel
2023-05-23 13:18:42,359 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: org.apache.jmeter.config.Arguments
2023-05-23 13:18:42,359 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: User Defined Variables
2023-05-23 13:18:42,360 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.BooleanProperty: true
2023-05-23 13:18:42,360 DEBUG o.a.j.e.u.ValueReplacer: Won't replace true
2023-05-23 13:18:42,360 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: com.blazemeter.jmeter.xmpp.JMeterXMPPConnection
2023-05-23 13:18:42,360 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: bzm - XMPP Connection
2023-05-23 13:18:42,360 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: bzm - XMPP Connection
2023-05-23 13:18:42,361 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: ofs.loc
2023-05-23 13:18:42,361 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: ofs.loc
2023-05-23 13:18:42,361 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: 5222
2023-05-23 13:18:42,361 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: 5222
2023-05-23 13:18:42,361 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: ofs.loc
2023-05-23 13:18:42,361 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: ofs.loc
2023-05-23 13:18:42,362 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: 1000
2023-05-23 13:18:42,362 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: 1000
2023-05-23 13:18:42,362 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: TCP
2023-05-23 13:18:42,362 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: TCP
2023-05-23 13:18:42,362 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty: USER
2023-05-23 13:18:42,363 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: USER
2023-05-23 13:18:42,386 DEBUG o.a.j.e.u.ValueReplacer: About to replace in property of type: class org.apache.jmeter.testelement.property.StringProperty:
2023-05-23 13:18:42,386 DEBUG o.a.j.e.u.ValueReplacer: Replacement result:
2023-05-23 13:18:42,387 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*)
2023-05-23 13:18:42,460 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : XMPP Protocol Support (bzm; thread group)
2023-05-23 13:18:42,461 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group XMPP Protocol Support (bzm; thread group).
2023-05-23 13:18:42,461 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error
2023-05-23 13:18:42,461 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 delayedStart=false
2023-05-23 13:18:42,461 DEBUG o.a.j.t.ThreadGroup: Computed delayForNextThreadInMillis:0 for thread:56
2023-05-23 13:18:42,477 INFO o.a.j.t.ThreadGroup: Started thread group number 1
2023-05-23 13:18:42,477 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started
2023-05-23 13:18:42,480 DEBUG o.a.j.t.TestCompiler: Subtracting node, stack size = 2
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: adding controller: org.apache.jmeter.threads.ThreadGroup@2240e207 to sampler config
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: Subtracting node, stack size = 2
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: adding controller: org.apache.jmeter.threads.ThreadGroup@2240e207 to sampler config
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: Subtracting node, stack size = 2
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: adding controller: org.apache.jmeter.threads.ThreadGroup@2240e207 to sampler config
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: Subtracting node, stack size = 2
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: Subtracting node, stack size = 2
2023-05-23 13:18:42,481 DEBUG o.a.j.t.TestCompiler: Subtracting node, stack size = 1
2023-05-23 13:18:42,482 INFO o.a.j.t.JMeterThread: Thread started: XMPP Protocol Support (bzm; thread group) 1-1
2023-05-23 13:18:42,482 DEBUG o.a.j.c.GenericController: Calling next on: class org.apache.jmeter.control.GenericController
2023-05-23 13:18:42,482 DEBUG c.b.j.x.JMeterXMPPConnection: Creating connection: ofs.loc:5222/ofs.loc
2023-05-23 13:18:42,525 DEBUG c.b.j.x.JMeterXMPPConnectionBase: checkServerTrusted UNKNOWN
2023-05-23 13:18:42,525 DEBUG c.b.j.x.JMeterXMPPConnectionBase: getAcceptedIssuers
2023-05-23 13:18:43,492 ERROR c.b.j.x.JMeterXMPPSampler: Error in XMPP Sampler:
org.jivesoftware.smack.SmackException$NoResponseException: null
at org.jivesoftware.smack.XMPPConnection.throwConnectionExceptionOrNoResponse(XMPPConnection.java:548) ~[smack-core-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.throwConnectionExceptionOrNoResponse(XMPPTCPConnection.java:867) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.PacketReader.startup(PacketReader.java:113) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.initConnection(XMPPTCPConnection.java:482) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectUsingConfiguration(XMPPTCPConnection.java:440) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectInternal(XMPPTCPConnection.java:811) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.XMPPConnection.connect(XMPPConnection.java:396) ~[smack-core-4.0.7.jar:4.0.7]
at com.blazemeter.jmeter.xmpp.actions.Connect.perform(Connect.java:18) ~[jmeter-plugins-xmpp-1.5.1.jar:?]

at com.blazemeter.jmeter.xmpp.JMeterXMPPSampler.sample(JMeterXMPPSampler.java:57) ~[jmeter-plugins-xmpp-1.5.1.jar:?]
at org.apache.jmeter.threads.JMeterThread.doSampling(JMeterThread.java:651) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:570) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:501) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:268) ~[ApacheJMeter_core.jar:5.5]
at java.lang.Thread.run(Thread.java:1623) ~[?:?]
2023-05-23 13:18:43,494 DEBUG o.a.j.c.GenericController: Calling next on: class org.apache.jmeter.control.GenericController
2023-05-23 13:18:43,495 ERROR c.b.j.x.JMeterXMPPSampler: Please call Connect before calling other actions
2023-05-23 13:18:43,495 ERROR c.b.j.x.JMeterXMPPSampler: Error in XMPP Sampler:
org.jivesoftware.smack.SmackException$NotConnectedException: null
at com.blazemeter.jmeter.xmpp.JMeterXMPPSampler.sample(JMeterXMPPSampler.java:49) ~[jmeter-plugins-xmpp-1.5.1.jar:?]

at org.apache.jmeter.threads.JMeterThread.doSampling(JMeterThread.java:651) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:570) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:501) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:268) ~[ApacheJMeter_core.jar:5.5]
at java.lang.Thread.run(Thread.java:1623) ~[?:?]
2023-05-23 13:18:43,496 DEBUG o.a.j.c.GenericController: Calling next on: class org.apache.jmeter.control.GenericController
2023-05-23 13:18:43,496 ERROR c.b.j.x.JMeterXMPPSampler: Please call Connect before calling other actions
2023-05-23 13:18:43,496 ERROR c.b.j.x.JMeterXMPPSampler: Error in XMPP Sampler:
org.jivesoftware.smack.SmackException$NotConnectedException: null
at com.blazemeter.jmeter.xmpp.JMeterXMPPSampler.sample(JMeterXMPPSampler.java:49) ~[jmeter-plugins-xmpp-1.5.1.jar:?]

at org.apache.jmeter.threads.JMeterThread.doSampling(JMeterThread.java:651) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:570) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:501) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:268) ~[ApacheJMeter_core.jar:5.5]
at java.lang.Thread.run(Thread.java:1623) ~[?:?]
2023-05-23 13:18:43,497 DEBUG o.a.j.c.GenericController: Calling next on: class org.apache.jmeter.control.GenericController
2023-05-23 13:18:43,497 INFO o.a.j.t.JMeterThread: Thread is done: XMPP Protocol Support (bzm; thread group) 1-1
2023-05-23 13:18:43,497 INFO o.a.j.t.JMeterThread: Thread finished: XMPP Protocol Support (bzm; thread group) 1-1
2023-05-23 13:18:43,497 DEBUG o.a.j.t.ThreadGroup: Ending thread XMPP Protocol Support (bzm; thread group) 1-1
2023-05-23 13:18:43,498 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test
2023-05-23 13:18:43,498 DEBUG c.b.j.x.JMeterXMPPConnection: Test ended:
2023-05-23 13:18:43,498 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*)


I can only suspect:
2023-05-23 13:18:42,525 DEBUG c.b.j.x.JMeterXMPPConnectionBase: checkServerTrusted UNKNOWN
2023-05-23 13:18:42,363 DEBUG o.a.j.e.u.ValueReplacer: Replacement result: USER

But about other results, it looks like something's wrong with module[s].

Dmitri T

unread,
May 23, 2023, 6:59:54 AM5/23/23
to jmeter-plugins
I think this guy is pretty much self-explanatory:

2023-05-23 13:18:43,495 ERROR c.b.j.x.JMeterXMPPSampler: Please call Connect before calling other actions

so most probably you forgot to create the connection to your XMPP server, check out Understanding the bzm-XMPP Connection Config Element chapter.

John No

unread,
May 23, 2023, 8:08:57 AM5/23/23
to jmeter-plugins
Yep, you're right about the line "2023-05-23 13:18:43,495 ERROR c.b.j.x.JMeterXMPPSampler: Please call Connect before calling other actions".

But unfortunately the reason should be somewhere else, because I added this connection before adding anything else:
Screenshot 2023-05-23 150519.jpg
To be honest, this is the first time I've asked questions on forums. I used to work as a web developer and I never had insurmountable problems. And now I don't even know how to find the cause of the error.

John No

unread,
May 23, 2023, 8:12:01 AM5/23/23
to jmeter-plugins
And BTW, I'm trying just connect, login and disconnect. The same result I get in CLI mode.
Screenshot 2023-05-23 151001.jpg

John No

unread,
May 24, 2023, 2:13:14 AM5/24/23
to jmeter-plugins
So, after I change Timeout to 0, my test starts working, but only with one error:

2023-05-24 09:08:07,311 ERROR c.b.j.x.JMeterXMPPSampler: Error in XMPP Sampler:
org.jivesoftware.smack.SmackException$NoResponseException: null
at org.jivesoftware.smack.XMPPConnection.throwConnectionExceptionOrNoResponse(XMPPConnection.java:548) ~[smack-core-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.throwConnectionExceptionOrNoResponse(XMPPTCPConnection.java:867) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.PacketReader.startup(PacketReader.java:113) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.initConnection(XMPPTCPConnection.java:482) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectUsingConfiguration(XMPPTCPConnection.java:440) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectInternal(XMPPTCPConnection.java:811) ~[smack-tcp-4.0.7.jar:4.0.7]
at org.jivesoftware.smack.XMPPConnection.connect(XMPPConnection.java:396) ~[smack-core-4.0.7.jar:4.0.7]
at com.blazemeter.jmeter.xmpp.actions.Connect.perform(Connect.java:18) ~[jmeter-plugins-xmpp-1.5.1.jar:?]
at com.blazemeter.jmeter.xmpp.JMeterXMPPSampler.sample(JMeterXMPPSampler.java:57) ~[jmeter-plugins-xmpp-1.5.1.jar:?]
at org.apache.jmeter.threads.JMeterThread.doSampling(JMeterThread.java:651) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.executeSamplePackage(JMeterThread.java:570) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.processSampler(JMeterThread.java:501) ~[ApacheJMeter_core.jar:5.5]
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:268) ~[ApacheJMeter_core.jar:5.5]
at java.lang.Thread.run(Thread.java:1623) ~[?:?]

Is it possible to do something with that Smack error?

Gowtham Kumar M

unread,
Mar 1, 2024, 7:37:18 AM3/1/24
to jmeter-plugins
I'm facing same issue how to resolve the issue?

Tulasi

unread,
Jan 7, 2025, 4:44:59 AM1/7/25
to jmeter-plugins
Hello,  I am facing the same issue. Can you please help me resolve this?"
Reply all
Reply to author
Forward
0 new messages