Contact Search via CRM doesn't work

Status
Not open for further replies.

joepbx24

Free User
Joined
May 1, 2024
Messages
14
Reaction score
0
I am using version 3CX PBX version 18.

I've configured my custom CRM using 3CX CRM Integration Wizard tool and managed to setup call lookup by number to work when I'm getting called.

However I want to configure contact search from my webclient possible aswell. At this point, it doesn't work.

1.PNG
(My webclient can't find the contact by phone number)

Is it possible? And if it is, how can I do it?

Based on the documentation (https://www.3cx.com/docs/crm-integration/#h.9wtbfx3zku6o), it should be possible. But I don't have such a configuration available in my 3CX CRM Integration Wizard.
 
Last edited:
I am using version 3CX PBX version 18.

I've configured my custom CRM using 3CX CRM Integration Wizard tool and managed to setup call lookup by number to work when I'm getting called.

However I want to configure contact search from my webclient possible aswell. At this point, it doesn't work.

View attachment 41265
(My webclient can't find the contact by phone number)

Is it possible? And if it is, how can I do it?

Based on the documentation (https://www.3cx.com/docs/crm-integration/#h.9wtbfx3zku6o), it should be possible. But I don't have such a configuration available in my 3CX CRM Integration Wizard.
Which product of 3CX are you using? If you are on an SMB then CRM integration is not possible https://www.3cx.com/ordering/pricing/features/
 
You need to configure the SearchContacts scenario. If that's done and doesn't work, then you'll need to check the logs to see what doesn't work.
 
You need to configure the SearchContacts scenario. If that's done and doesn't work, then you'll need to check the logs to see what doesn't work.

XML:
<Scenario Id="SearchContacts" Type="REST">

      <Request Url="*******/api/voip/contacts/search?value=[SearchText]" MessagePasses="0" RequestEncoding="UrlEncoded" RequestType="Get" ResponseType="Json" />

      <Rules>

        <Rule Type="Any">contact.Id</Rule>

      </Rules>

      <Variables>

        <Variable Name="ContactID" Path="contact.Id">

          <Filter />

        </Variable>

        <Variable Name="FirstName" Path="contact.FirstName">

          <Filter />

        </Variable>

        <Variable Name="LastName" Path="contact.LastName">

          <Filter />

        </Variable>

        <Variable Name="Email" Path="contact.Email">

          <Filter />

        </Variable>

        <Variable Name="PhoneBusiness" Path="contact.BusinessPhone">

          <Filter />

        </Variable>

        <Variable Name="PhoneBusiness2" Path="contact.BusinessPhone2">

          <Filter />

        </Variable>

        <Variable Name="PhoneMobile" Path="contact.MobilePhone">

          <Filter />

        </Variable>

      </Variables>

      <Outputs AllowEmpty="false">

        <Output Type="ContactID" Passes="0" Value="[ContactID]" />

        <Output Type="FirstName" Passes="0" Value="[FirstName]" />

        <Output Type="LastName" Passes="0" Value="[LastName]" />

        <Output Type="Email" Passes="0" Value="[Email]" />

        <Output Type="PhoneBusiness" Passes="0" Value="[PhoneBusiness]" />

        <Output Type="PhoneBusiness2" Passes="0" Value="[PhoneBusiness2]" />

        <Output Type="PhoneMobile" Passes="0" Value="[PhoneMobile]" />

        <Output Type="ContactUrl" Passes="0" Value="*******/api/voip/contacts/[ContactID]" />

        <Output Type="EntityId" Passes="0" Value="[ContactID]" />

        <Output Type="EntityType" Passes="0" Value="Contact" />

      </Outputs>

    </Scenario>

The above code is the scenario I'm using. I've used stars (*****) to hide the real URL. I've enabled Verbose logging and I see some CRM logs, but they are related only to incoming calls and call reporting. Is my scenario correct? The API response format is the same as it is for Contact Lookup. Is it correct?

P.S.: I checked Instance/3cxSystemService.log logs only. Should I check another file?
 
Try checking the Management Console log file. It seems to log the Webclient actions in there.
 
Try checking the Management Console log file. It seems to log the Webclient actions in there.

Code:
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 15
2024/05/02 19:03:20.294|13445|0051|Verb|#56982 (traceid=0HN173GU32BA0:00000004) START: POST https://******:5001/MyPhone/MPWebService.asmx
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution failed.
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] Request origin https://******:5001 does not have permission to access the resource.
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executing endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Route matched with {action = "MPWebService", controller = "MyPhone"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] MPWebService(System.Threading.CancellationToken) on controller ManagementConsoleJS.MyPhone.MyPhoneController (3CXManagementConsole).
2024/05/02 19:03:20.294|13445|0051|Verb|MYPHONE: HandleRequest from 101@4b076890-ccb4-1d16-9a9e-ec80638eb843(traceid=0HN173GU32BA0:00000004)
2024/05/02 19:03:20.294|13445|0051|Verb|MYPHONE: Incoming request: messageID=528. (traceid=0HN173GU32BA0:00000004). Current requests: 1.
2024/05/02 19:03:20.294|13445|0051|Verb|MYPHONE: _DAC([528 RequestSearchCrmContacts]) - 00:00:00.0001241 - from 101[4b076890-ccb4-1d16-9a9e-ec80638eb843]@******. Requests:1 -> 0 (traceid=0HN173GU32BA0:00000004)
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Executed action ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole) in 0.356ms
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executed endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/02 19:03:20.294|13445|0051|Verb|#56982 (traceid=0HN173GU32BA0:00000004) STOP: POST https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0005656
2024/05/02 19:03:20.294|13445|0051|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 15 - 200 6 application/octet-stream 0.6139ms

Here are the logs. I see there a RequestSearchCrmContacts. However, I don't see anything valuable.
 
@TheodorosG_3CX CORS issue? Or is that normal?

@joepbx24 How are you accessing the Webclient? Are you using a proxy or anything like that?
 
@TheodorosG_3CX CORS issue? Or is that normal?

@joepbx24 How are you accessing the Webclient? Are you using a proxy or anything like that?
I'm not using a proxy. Also, I found some other logs entries containing the search text as I typed it in my Webclient. Also, I get the matching contacts that are stored locally in my PBX system. So, the connection between Webclient and PBX Server is fine.
 
Interesting
 
Yes interesting, different browsers have the same issue?
 
  • Like
Reactions: Evolute IT
Yes interesting, different browsers have the same issue?
I tried a different browser. Same thing.

Code:
2024/05/03 08:13:52.149|13445|0085|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 45
2024/05/03 08:13:52.149|13445|0085|Verb|#57294 (traceid=0HN173GU32BBQ:00000012) START: POST https://******:5001/MyPhone/MPWebService.asmx
2024/05/03 08:13:52.149|13445|0085|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution failed.
2024/05/03 08:13:52.149|13445|0085|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] Request origin https://******:5001 does not have permission to access the resource.
2024/05/03 08:13:52.149|13445|0085|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executing endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 08:13:52.149|13445|0085|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Route matched with {action = "MPWebService", controller = "MyPhone"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] MPWebService(System.Threading.CancellationToken) on controller ManagementConsoleJS.MyPhone.MyPhoneController (3CXManagementConsole).
2024/05/03 08:13:52.149|13445|0085|Verb|MYPHONE: HandleRequest from 101@fd603498-6f13-d35c-e0a9-6fbfca621079(traceid=0HN173GU32BBQ:00000012)
2024/05/03 08:13:52.149|13445|0085|Verb|MYPHONE: Incoming request: messageID=104. (traceid=0HN173GU32BBQ:00000012). Current requests: 1.
2024/05/03 08:13:52.149|13445|0085|Verb|MYPHONE: RequestLookupContact: Input=MySearchText, ExtIncluded=False, MustHaveEmail=, SearchBy=63, SearchBridge=, SearchCompany=True, SearchPersonal=True, SortBy=LastName, Offset=0, Count=10
2024/05/03 08:13:52.179|13445|0085|Verb|MYPHONE: Total contacts matched requested criteria: 0 entries
2024/05/03 08:13:52.179|13445|0085|Verb|MYPHONE: _DAC([104 RequestLookupContact]) - 00:00:00.0301641 - from 101[fd603498-6f13-d35c-e0a9-6fbfca621079]@93.174.185.237. Requests:1 -> 0 (traceid=0HN173GU32BBQ:00000012)
2024/05/03 08:13:52.180|13445|0085|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Executed action ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole) in 30.7412ms
2024/05/03 08:13:52.180|13445|0085|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executed endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 08:13:52.180|13445|0085|Verb|#57294 (traceid=0HN173GU32BBQ:00000012) STOP: POST https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0310605
2024/05/03 08:13:52.180|13445|0085|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 45 - 200 8 application/octet-stream 31.1507ms
2024/05/03 08:13:52.939|13445|0085|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 33
2024/05/03 08:13:52.939|13445|0085|Verb|#57295 (traceid=0HN173GU32BBQ:00000013) START: POST https://******:5001/MyPhone/MPWebService.asmx
2024/05/03 08:13:52.939|13445|0085|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution failed.
2024/05/03 08:13:52.939|13445|0085|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] Request origin https://******:5001 does not have permission to access the resource.
2024/05/03 08:13:52.939|13445|0085|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executing endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 08:13:52.939|13445|0085|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Route matched with {action = "MPWebService", controller = "MyPhone"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] MPWebService(System.Threading.CancellationToken) on controller ManagementConsoleJS.MyPhone.MyPhoneController (3CXManagementConsole).
2024/05/03 08:13:52.940|13445|0085|Verb|MYPHONE: HandleRequest from 101@fd603498-6f13-d35c-e0a9-6fbfca621079(traceid=0HN173GU32BBQ:00000013)
2024/05/03 08:13:52.940|13445|0085|Verb|MYPHONE: Incoming request: messageID=528. (traceid=0HN173GU32BBQ:00000013). Current requests: 1.
2024/05/03 08:13:52.940|13445|0085|Verb|MYPHONE: _DAC([528 RequestSearchCrmContacts]) - 00:00:00.0000894 - from 101[fd603498-6f13-d35c-e0a9-6fbfca621079]@93.174.185.237. Requests:1 -> 0 (traceid=0HN173GU32BBQ:00000013)
2024/05/03 08:13:52.940|13445|0085|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Executed action ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole) in 0.4338ms
2024/05/03 08:13:52.940|13445|0085|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executed endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 08:13:52.940|13445|0085|Verb|#57295 (traceid=0HN173GU32BBQ:00000013) STOP: POST https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0007760
2024/05/03 08:13:52.940|13445|0085|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 33 - 200 6 application/octet-stream 0.8967ms

But even though CORS fails, it looks like the request is still processed, because I get a response containing contacts stored on PBX Server in Advanced > Contacts section. What I don't get is the response from the CRM.
 
Can you please also check the system service log file?
Is there any error returned from the CRM?
 
Can you please also check the system service log file?
Is there any error returned from the CRM?
There is no entry in system service log related to it. There are logs related to incoming calls lookups. But nothing related to this.
 
Is there any antivirus running on the machine?
 
Is there any antivirus running on the machine?
I've done it from another computer/network. There is no CORS error anymore. But it still doesn't work.

Here are the logs:

Code:
2024/05/03 12:09:23.687|13445|0050|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 OPTIONS http://******:5001/MyPhone/MPWebService.asmx - -
2024/05/03 12:09:23.687|13445|0050|Verb|#57537 (traceid=0HN173GU32BDB:00000004) START: OPTIONS https://******:5001/MyPhone/MPWebService.asmx
2024/05/03 12:09:23.687|13445|0050|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution successful.
2024/05/03 12:09:23.687|13445|0050|Verb|#57537 (traceid=0HN173GU32BDB:00000004) STOP: OPTIONS https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0001561
2024/05/03 12:09:23.687|13445|0050|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 OPTIONS http://******:5001/MyPhone/MPWebService.asmx - - - 204 - - 0.3722ms
2024/05/03 12:09:23.690|13445|0029|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 OPTIONS http://******:5001/MyPhone/MPWebService.asmx - -
2024/05/03 12:09:23.690|13445|0029|Verb|#57538 (traceid=0HN173GU32BDC:00000002) START: OPTIONS https://******:5001/MyPhone/MPWebService.asmx
2024/05/03 12:09:23.690|13445|0029|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution successful.
2024/05/03 12:09:23.690|13445|0029|Verb|#57538 (traceid=0HN173GU32BDC:00000002) STOP: OPTIONS https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0000917
2024/05/03 12:09:23.690|13445|0029|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 OPTIONS http://******:5001/MyPhone/MPWebService.asmx - - - 204 - - 0.2019ms
2024/05/03 12:09:23.708|13445|0057|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 41
2024/05/03 12:09:23.708|13445|0057|Verb|#57539 (traceid=0HN173GU32BDC:00000003) START: POST https://******:5001/MyPhone/MPWebService.asmx
2024/05/03 12:09:23.708|13445|0057|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution successful.
2024/05/03 12:09:23.708|13445|0057|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executing endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 12:09:23.708|13445|0057|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Route matched with {action = "MPWebService", controller = "MyPhone"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] MPWebService(System.Threading.CancellationToken) on controller ManagementConsoleJS.MyPhone.MyPhoneController (3CXManagementConsole).
2024/05/03 12:09:23.709|13445|0057|Verb|MYPHONE: HandleRequest from 215@4600aedb-f5bf-d43f-2fb5-3944146b4083(traceid=0HN173GU32BDC:00000003)
2024/05/03 12:09:23.709|13445|0057|Verb|MYPHONE: Incoming request: messageID=104. (traceid=0HN173GU32BDC:00000003). Current requests: 1.
2024/05/03 12:09:23.709|13445|0057|Verb|MYPHONE: RequestLookupContact: Input=verbose and make, ExtIncluded=False, MustHaveEmail=, SearchBy=63, SearchBridge=, SearchCompany=True, SearchPersonal=True, SortBy=LastName, Offset=0, Count=10
2024/05/03 12:09:23.712|13445|0050|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request starting HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 26
2024/05/03 12:09:23.712|13445|0050|Verb|#57540 (traceid=0HN173GU32BDB:00000005) START: POST https://******:5001/MyPhone/MPWebService.asmx
2024/05/03 12:09:23.712|13445|0050|Trac|[Microsoft.AspNetCore.Cors.Infrastructure.CorsService] CORS policy execution successful.
2024/05/03 12:09:23.712|13445|0050|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executing endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 12:09:23.712|13445|0050|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Route matched with {action = "MPWebService", controller = "MyPhone"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] MPWebService(System.Threading.CancellationToken) on controller ManagementConsoleJS.MyPhone.MyPhoneController (3CXManagementConsole).
2024/05/03 12:09:23.712|13445|0050|Verb|MYPHONE: HandleRequest from 215@4600aedb-f5bf-d43f-2fb5-3944146b4083(traceid=0HN173GU32BDB:00000005)
2024/05/03 12:09:23.712|13445|0050|Verb|MYPHONE: Incoming request: messageID=528. (traceid=0HN173GU32BDB:00000005). Current requests: 2.
2024/05/03 12:09:23.713|13445|0050|Verb|MYPHONE: _DAC([528 RequestSearchCrmContacts]) - 00:00:00.0002558 - from 215[4600aedb-f5bf-d43f-2fb5-3944146b4083]@******. Requests:2 -> 1 (traceid=0HN173GU32BDB:00000005)
2024/05/03 12:09:23.713|13445|0050|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Executed action ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole) in 0.5921ms
2024/05/03 12:09:23.714|13445|0050|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executed endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 12:09:23.714|13445|0050|Verb|#57540 (traceid=0HN173GU32BDB:00000005) STOP: POST https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0020189
2024/05/03 12:09:23.714|13445|0050|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 26 - 200 6 application/octet-stream 2.1078ms
2024/05/03 12:09:23.734|13445|0057|Verb|MYPHONE: Total contacts matched requested criteria: 0 entries
2024/05/03 12:09:23.734|13445|0057|Verb|MYPHONE: _DAC([104 RequestLookupContact]) - 00:00:00.0254252 - from 215[4600aedb-f5bf-d43f-2fb5-3944146b4083]@******. Requests:1 -> 0 (traceid=0HN173GU32BDC:00000003)
2024/05/03 12:09:23.735|13445|0057|Trac|[Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker] Executed action ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole) in 26.3534ms
2024/05/03 12:09:23.735|13445|0057|Trac|[Microsoft.AspNetCore.Routing.EndpointMiddleware] Executed endpoint 'ManagementConsoleJS.MyPhone.MyPhoneController.MPWebService (3CXManagementConsole)'
2024/05/03 12:09:23.735|13445|0057|Verb|#57539 (traceid=0HN173GU32BDC:00000003) STOP: POST https://******:5001/MyPhone/MPWebService.asmx processed 00:00:00.0266580
2024/05/03 12:09:23.735|13445|0057|Trac|[Microsoft.AspNetCore.Hosting.Diagnostics] Request finished HTTP/1.1 POST http://******:5001/MyPhone/MPWebService.asmx application/octet-stream 41 - 200 8 application/octet-stream 26.7827ms
 
3cxSystemService.log for the same time interval:

Code:
2024/05/03 12:08:20.219|13446|0005|Verb|Enqueue Updated.REGISTRATION.36
2024/05/03 12:08:20.219|13446|0070|Verb|Dequeue Updated.REGISTRAR.36
2024/05/03 12:08:20.219|13446|0070|Verb|Dequeue Updated.REGISTRATION.36
2024/05/03 12:08:43.222|13446|0005|Verb|Enqueue Updated.REGISTRAR.7
2024/05/03 12:08:43.222|13446|0005|Verb|Enqueue Updated.REGISTRATION.7
2024/05/03 12:08:43.222|13446|0070|Verb|Dequeue Updated.REGISTRAR.7
2024/05/03 12:08:43.222|13446|0070|Verb|Dequeue Updated.REGISTRATION.7
2024/05/03 12:08:43.844|13446|0070|Verb|TryGetLocalIpListOsDependent
2024/05/03 12:08:43.846|13446|0070|Verb|TryGetLocalIpListOsDependent. Result = [{"Description":"ens192 (ens192)","HasDefaultGateway":true,"IsIpv6":false,"IpAddressStr":"10.100.0.159"}]
2024/05/03 12:08:46.593|13446|0005|Verb|Enqueue Updated.REGISTRAR.440
2024/05/03 12:08:46.593|13446|0005|Verb|Enqueue Updated.REGISTRATION.440
2024/05/03 12:08:46.593|13446|0070|Verb|Dequeue Updated.REGISTRAR.440
2024/05/03 12:08:46.593|13446|0070|Verb|Dequeue Updated.REGISTRATION.440
2024/05/03 12:09:11.295|13446|0070|Verb|WaitingEvent for updates:60000
2024/05/03 12:09:14.370|13446|0005|Verb|Enqueue Updated.REGISTRAR.437
2024/05/03 12:09:14.370|13446|0005|Verb|Enqueue Updated.REGISTRATION.437
2024/05/03 12:09:14.371|13446|0070|Verb|Dequeue Updated.REGISTRAR.437
2024/05/03 12:09:14.371|13446|0070|Verb|Dequeue Updated.REGISTRATION.437
2024/05/03 12:09:14.421|13446|0005|Verb|Enqueue Updated.REGISTRAR.36
2024/05/03 12:09:14.421|13446|0005|Verb|Enqueue Updated.REGISTRATION.36
2024/05/03 12:09:14.421|13446|0070|Verb|Dequeue Updated.REGISTRAR.36
2024/05/03 12:09:14.421|13446|0070|Verb|Dequeue Updated.REGISTRATION.36
2024/05/03 12:09:14.424|13446|0005|Verb|Enqueue Updated.REGISTRAR.429
2024/05/03 12:09:14.424|13446|0005|Verb|Enqueue Updated.REGISTRATION.429
2024/05/03 12:09:14.424|13446|0070|Verb|Dequeue Updated.REGISTRAR.429
2024/05/03 12:09:14.424|13446|0070|Verb|Dequeue Updated.REGISTRATION.429
2024/05/03 12:09:37.426|13446|0005|Verb|Enqueue Updated.REGISTRAR.7
2024/05/03 12:09:37.426|13446|0005|Verb|Enqueue Updated.REGISTRATION.7
2024/05/03 12:09:37.426|13446|0070|Verb|Dequeue Updated.REGISTRAR.7
2024/05/03 12:09:37.426|13446|0070|Verb|Dequeue Updated.REGISTRATION.7
2024/05/03 12:09:40.874|13446|0005|Verb|Enqueue Updated.REGISTRAR.440
2024/05/03 12:09:40.875|13446|0005|Verb|Enqueue Updated.REGISTRATION.440
2024/05/03 12:09:40.875|13446|0070|Verb|Dequeue Updated.REGISTRAR.440
2024/05/03 12:09:40.875|13446|0070|Verb|Dequeue Updated.REGISTRATION.440
2024/05/03 12:09:43.845|13446|0070|Verb|TryGetLocalIpListOsDependent
2024/05/03 12:09:43.847|13446|0070|Verb|TryGetLocalIpListOsDependent. Result = [{"Description":"ens192 (ens192)","HasDefaultGateway":true,"IsIpv6":false,"IpAddressStr":"10.100.0.159"}]
2024/05/03 12:09:51.444|13446|0005|Verb|Enqueue Updated.REGISTRAR.435
2024/05/03 12:09:51.444|13446|0005|Verb|Enqueue Updated.REGISTRATION.435
2024/05/03 12:09:51.444|13446|0070|Verb|Dequeue Updated.REGISTRAR.435
2024/05/03 12:09:51.444|13446|0070|Verb|Dequeue Updated.REGISTRATION.435
2024/05/03 12:10:01.025|13446|0005|Verb|Enqueue Updated.REGISTRAR.5
2024/05/03 12:10:01.026|13446|0005|Verb|Enqueue Updated.REGISTRATION.5
 
For contact search from the Web Client you need to check the Management Console log and not the system service log.
 
Also, search the log for lines having the prefix "CRM:"
 
Status
Not open for further replies.

Members Online Now

No members online now.

Forum statistics

Threads
111,831
Messages
589,277
Members
164,660
Latest member
RJenkinsROCK