Ambi

Results 9 comments of Ambi

> Hi @amareshmad > > Is the test project and the production project the same version of .NET? Test Project and same code is used for product code as well....

sample app tried in both .net framework and .net core, both sample apps are working. same code tested consoles and integrated to product. product code uses .net framework 4.8, same...

@Blankensteiner thanks for the reply. will create producer as well and verify same from product code. if framework version is the issue even it could have blocked .NET 4.8 framework...

windows app and running in windows server 2016. tried with producer by test-console app, it is going to connected state. I mean from test-console app producer is creating connection and...

Windows app. Running in windows server 2016. Test apps also running in same windows server 2016. Producer .net framework test console Class ProductMainClass{ public async System.Threading.Tasks.Task CreateProducer(string queueName) { var...

Mainly observed, whenever after creating producer/consumer if I start send/receive through await producer/consumer object state is going to **Faulted**. When I comment send/receive through their respective object the producer/consumer object...

tried with setting VerifyCertificateAuthority ,VerifyCertificateName it didn't help. tried with setting registry as well didn't help. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727] "SystemDefaultTlsVersions" = dword:00000001 "SchUseStrongCrypto" = dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] "SystemDefaultTlsVersions" = dword:00000001 "SchUseStrongCrypto" = dword:00000001...

Connection established from product code Consumer code: await using var client = PulsarClient.Builder() .Authentication(new AuthenticationBasic(username, password)) .ServiceUrl(sURl) .ExceptionHandler(pException.OnException) .VerifyCertificateAuthority(false) .TrustedCertificateAuthority(new System.Security.Cryptography.X509Certificates.X509Certificate2()) .Build(); log.Info($"creating Consumer......."); await using var consumer = client.NewConsumer(Schema.ByteArray)...