Search found 9 matches

by RPierre
Mon Oct 26, 2020 3:06 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Individual File Logger is not Working
Replies: 6
Views: 6671

Re: Individual File Logger is not Working

I cannot reproduce your issue. When I set FileLogger for the client it writes into the file as expected. Do you change _client.Name after setting FileLogger? Try to do it before. I found at "warnings" tab that information: "conflicts were found between different versions "System.IO.Compression" tha...
by RPierre
Fri Oct 23, 2020 5:26 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Individual File Logger is not Working
Replies: 6
Views: 6671

Re: Individual File Logger is not Working

I found at "warnings" tab that information: "conflicts were found between different versions "System.IO.Compression" that could not be resolved. These reference conflicts are listed in the build log when the log breakdown is set to detailed." and its nothing from my code maybe something about at ine...
by RPierre
Fri Oct 23, 2020 4:42 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Individual File Logger is not Working
Replies: 6
Views: 6671

Re: Individual File Logger is not Working

I tryed to use the solution "nlog" but the nlog logfactory maybe global and all log trace is replicated in all files for all clients and server instance at version 1.3.0.0 the log is generated correctly separeted in files for each client and server showing only the repective log in each file, at our...
by RPierre
Fri Oct 23, 2020 1:33 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Individual File Logger is not Working
Replies: 6
Views: 6671

Individual File Logger is not Working

I'm upgrading from version 1.3.0.0 to 2.8.1.2054 and many things is changed so at version 1.3.0.0 instancing individual file logger to server and each connected client it generate automatic log files with all event trace but at version 2.8.1.2054 does not generate the log files is possible any issue...
by RPierre
Tue Oct 20, 2020 9:27 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: NLog FileTarget Example
Replies: 3
Views: 4842

Re: NLog FileTarget Example

Please have a look at the sample project https://gitlab.com/inetlab/smpp-samples/-/tree/master/LoggingWithNLog I tryed to convert that sample with consolelog demo to work with filetarget but it does not work when i start the server that call the public class NLogLoggerFactory with loggerName "SmppS...
by RPierre
Tue Oct 20, 2020 8:13 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: NLog FileTarget Example
Replies: 3
Views: 4842

NLog FileTarget Example

How can i do to use a NLOG FileTarget instead of native FileLogger of library? The example in demo.zip shows only consolelog.
by RPierre
Mon Sep 02, 2019 3:32 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How can i do to make Sincronous Bulk Requests?
Replies: 2
Views: 5889

How can i do to make Sincronous Bulk Requests?

How can i do to make sincronous bulk request?

Dim oResp As IEnumerable(Of SubmitSmResp) = (Await _Client.Submit(oBatch)).ToArray() Does not work without Await

I'm facing a lot of problems with await bulk requests and want to test sincronous requisition.
by RPierre
Mon Aug 19, 2019 8:22 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Save Entire Received PDU?
Replies: 1
Views: 5291

Save Entire Received PDU?

How can i do to save entire pdu as sugested in

Code: Select all

https://docs.inetlab.com/smpp/v2/articles/gateway.html 
Receive SubmitSm from client.
Save client's Sequence number to the database. Possible good idea to save entire PDU.
by RPierre
Wed Jul 17, 2019 9:02 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Submit Batch with Sequence Number for Long Messages?
Replies: 0
Views: 16966

Submit Batch with Sequence Number for Long Messages?

I need to send long text in batch messages about 600 caracters but i don't know how add sequence number for each message part in header. When i try to send i receive the error: The request PDU with the sequence number XXX already exists in uncompleted requests list. Please use unique number for each...