Questions tagged [nservicebus5]

NServiceBus is a highly pluggable, reliable, open source Enterprise Service Bus built on .NET.

NServiceBus is a highly pluggable, reliable, open source Enterprise Service Bus built on .NET.

69 questions
3
votes
2 answers

How should we handle a long running process using nservicebus

I know this seems quite obvious for a lot of people but my client is using a pattern that I am not really convenient with. Case is, that a customer of theirs sends a deposit or withdrawal that through nservicebus is sent to a third party system.…
Per
  • 1,393
  • 16
  • 28
3
votes
1 answer

NServiceBus cannot find Endpoint or MessageEndpointMappings in unobtrusive mode

I am trying to hook up a primitive TestService endpoint to a primitive WCF service, where the WCF service instance sends a primitive TestCommand to the TestService endpoint, using latest NSB 5.2.9/Host6.0: [ServiceBehavior( InstanceContextMode =…
John
  • 3,591
  • 8
  • 44
  • 72
3
votes
1 answer

nservicebus critical error Exception code: 0x80131623

I'm getting the following error on starting up NServicebus.Host.exe The runtime has encountered a fatal error. The address of the error was at 0x9124e4c7, on thread 0x2094. The error code is 0x80131623. This error may be a bug in the CLR or in…
Hugo Forte
  • 5,718
  • 5
  • 35
  • 44
3
votes
2 answers

NServiceBus Test.Initialize() given key was not present

Update just read the Google group in more detail and apparently it's a app config issue. Will update post after trying. I was wondering if anyone knows of this issue when attempting to unit test NServiceBus. Realise I have two initialize methods…
Dr Schizo
  • 4,045
  • 7
  • 38
  • 77
2
votes
2 answers

Events configured through convention don't result in subscription

My application is trying to receive events from an endpoint. If I Subscribe<>() explicitly I see a subscription coming in on the publishing endpoint. If I try to get the same result by configuring a convention, it fails. What am I missing? My…
Boris Callens
  • 90,659
  • 85
  • 207
  • 305
2
votes
1 answer

NServiceBus: human readable message bodies

I have started learning about NServiceBus to determine whether we can use NServiceBus the way we want. When I configured NServiceBus to use the JsonSerializer for serialization, I expected to be able to read the contents of the messages directly in…
jk1990
  • 341
  • 3
  • 12
2
votes
1 answer

NServiceBus crashes when losing connectivity to RabbitMQ host

We're having a problem that NServiceBus crashes after about 4-5 minutes after connection lost to RabbitMQ Server. To reproduce, I started my app, saw that RabbitMQ sees the connections, disconnected my network cable, and waited. After about 5…
developer82
  • 13,237
  • 21
  • 88
  • 153
2
votes
2 answers

MSMQ HTTP disable error

I’m trying to install NServiceBus from installer, downloaded from particular.net Installer wants MSMQ components to be disabled. All components could be disabled, except the MSMQ Http support. Disabling of this component fails with error code…
BumbleBee
  • 97
  • 1
  • 8
2
votes
0 answers

How do I configure NServiceBus NHibernate Persistance to use a table name other than "Subscription"?

How do I configure NServiceBus NHibernate Persistance to use a table name other than "Subscription"? I am using NServicebus 5 and SQL Server 2008 for Subscription storage. I was able to set my schema with the following appSetting
2
votes
1 answer

Exception when trying to configure NServiceBus to use NHibernate persistence

I am trying to make a few endpoints use NHibernate persistence, after using in-memory persistence for development. I am using the latest Nuget packages. Right off the bat I get the following exceptions. It mentioned Topshelf upon which…
John
  • 3,591
  • 8
  • 44
  • 72
2
votes
1 answer

NServiceBus Saga has no IPersistTimeouts component registered

I have a self-hoted WCF Host (IIS) where I get this exception during the NServiceBus configuration: Exception thrown: 'Autofac.Core.Registration.ComponentNotRegisteredException' in NServiceBus.Core.dll Additional information: The requested service…
John
  • 3,591
  • 8
  • 44
  • 72
2
votes
2 answers

NServiceBus and WCF, how do they get along?

Simplified... We are using NServiceBus for updating our storage. In our sagas we first read data from our storage and updates the data and puts it back again to storage.The NServicebus instance is selfhosted in a windows service. Calls to storage…
Per
  • 1,393
  • 16
  • 28
2
votes
2 answers

Receiving MessageDeserialization Exception in NServiceBus

I'm just getting refamiliarized with NServiceBus and I'm receiving a MessageDeserialization exception and stack trace as shown below. For some environmental information... I'm using azure persistence with Queues. I can see the subscription table and…
Paul Heal
  • 61
  • 1
  • 8
2
votes
1 answer

Unable to install NServiceBus ServiceControl with SqlServerTransport

I am trying to install NServiceBus ServiceControl with SqlServerTransport. I have coded a proof of concept messaging application using NServiceBus version="5.0.0" NServiceBus.SqlServer version="2.1.1" And would now like to see how ServicePulse…
BtnMike
  • 323
  • 4
  • 6
1
vote
1 answer

How to access NServiceBus dependency injection container?

I'm using NServiceBus 5's default dependency injection features. I want to register a singleton that depends on IBus in the endpoint config. Ex: configuration.RegisterComponents(r => { r.RegisterSingleton(new MyDependency(resolveIBus())); …
Jared Beach
  • 2,635
  • 34
  • 38
1
2 3 4 5