How to send e-mail using Gupta Centura/ Team Developer?

We have an application developed in Centura/Team Developer 6. We will migrate to a newer version, but for now we are still developing features for version 6. A new feature was requested to send an email after the user performs a certain action. Is it possible to send email via SMTP on TD? We use … Read more

MAUI: Push notification for iOS platform

I am using Plugin.Firebase and Plugin.Firebase.Crashlytics packages for implementing push notification in my MAUI application. I referred this blog and it was working fine on the Android platform. Now I am implementing it for the iOS platform. I have done below set up on iOS platform: I have added Push Notification service into the app’s … Read more

Build IOS codemagic fail

I’m trying to deploy my app to the Apple Store using Codemagic since I don’t have a Macbook I’m having a problem as you can see in the screenshot thank you for helping me

Why is this recursive function showing stuck cursor. Is it caused by infinite loops. If so how? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 14 hours ago. Improve this question y=0 n= int(input(“gff”)) def geometricsum(n): global y while n>0: y=y+1/n**2 geometricsum(n-1) print(geometricsum(n)) I’ve tried to print geometric sum which take … Read more

Create a user with admin permissions in openldap [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a … Read more

MapperStruct maps null

I have the following entity and resource and mapper classes I have an endpoint which queries with vehicleId, and I am querying the record by vehivleId and returns a value but while mapping it maps null as like the following line My pom definition is also correct, what should I change ? mapstructMapper.chargeDetailEntityToResource(chargeDetailRecord) package com.dcs.mcs.mapper; … Read more