Questions tagged [nservicebus3]

Questions related to the 3rd version of NServiceBus may have this tag.

64 questions
0
votes
1 answer

Projects with StructureMap and Unobtrusive don't register Subscriptions

Current Production NUGET build. Windows 8 x64 VS2012 I followed the sample on how to create a pub/sub. The default builder was swapped out for structuremap, and everything worked fine. I delete the queues and the database for raven and the console…
ton.yeung
  • 4,793
  • 6
  • 41
  • 72
0
votes
1 answer

Unable to connect to the remote server occurs after trying to build NSB v4

I started getting this error with new projects running v3 after trying to build v4 while trying to figure out why I couldn't get v3 to work in an MVC4 environment. John Simons pointed out what I was missing so I was able to get the MVC4 built with…
ton.yeung
  • 4,793
  • 6
  • 41
  • 72
0
votes
1 answer

Do I have to do the configuration for nservicebus on mvc4 that would be handled by the EndpointConfig.cs?

In the examples, most of the config is done by the dev by changing AsA_Server to AsA_Client. public class EndpointConfig : IConfigureThisEndpoint, AsA_Client { } However, I can't seem to do that with an ASP.NET MVC4 app. Do I have to manually…
ton.yeung
  • 4,793
  • 6
  • 41
  • 72
0
votes
1 answer

Configuring NServiceBus with ASP.NET MVC4 and StructureMap

I created an ASP.NET MVC 4 web application by installing structuremap and structuremap.mvc4 from nuget. I then added the nservicebus and nservicebus.structuremap packages, also from from nuget. I've created a couple mvc4 apps with structuremap…
ton.yeung
  • 4,793
  • 6
  • 41
  • 72
0
votes
0 answers

NServiceBus ConfigureProperty on concrete type from profile handler

I am trying to configure some properties of a concrete implementation of a service that has some properties set to different values depending on which profile is selected at startup, but NSB doesn't seem to allow configuration of properties on the…
elRobbo
  • 613
  • 7
  • 10
0
votes
0 answers

MasterNodeConfig Behavior during NServiceBus.Master Profile Execution

I hit the roadblock today. In our org, all the deployments are done by TFS Build. Where the each of the NSB Host components are packaged and deployed by the build portal. When we try to use the Scale-Out features of NSB, where we have to install the…
0
votes
1 answer

NServiceBus.Host.exe is crashing due to unhandled exception

We have seen this a few times. I'm sure there is some sort of NHibernate issue with MSDTC however why doesn't NserviceBus send the exception to the error queue instead of crashing the Host process? We have seen the exception in both 3.2.6 and…
Adam
  • 1,561
  • 2
  • 15
  • 25
0
votes
1 answer

Null transport when trying to start NServiceBus instance in WCF service

I'm using NServiceBus 3.3.3. I'm using Ninject as my container and I'm initialising the bus in an module by binding to the following method: Bind().ToMethod(context => { return CreateBus(); }).InSingletonScope(); private IBus…
mackie
  • 4,996
  • 1
  • 17
  • 17
0
votes
0 answers

NServiceBus "No Source Available"

I am working on a web api project that uses NServiceBus. Every time I start my NserviceBus host the debug process breaks and I get a "No Source Available" message and I can't figure out what's going on. I can send the message from my api project and…
crunchy
  • 705
  • 1
  • 13
  • 35
0
votes
1 answer

Use Bus.Send (not Publish) from web applications (NServiceBus v3.2.0.0)

We have an asp.net mvc3 application which publishes a number of events. Recently, someone pointed out that we should be sending messages rather than publishing events from the web application and referenced this excellent blog post which makes…
Pencho Ilchev
  • 3,201
  • 18
  • 21
0
votes
1 answer

Unable to get permission in setting up queues on deploy for NServiceBus 3.2.7

So using the GO pipeline to deploy an upgrade of the project including the latest version of NServiceBus (3.2.7), I seem have run into some kind of permission issue creating the queues, once manually created, it still seems that the service will not…
MattB
  • 585
  • 4
  • 17
0
votes
1 answer

NServiceBus RavenDB Saga persister ignores JsonIgnoreAttribute

I'm storing objects in my saga data that have properties that should be ignored during serialization and deserialization. I've tried marking these properties with both [NonSerialized] and [JsonIgnore] (and annotating the classes with [DataContract]…
ivern
  • 131
  • 6
0
votes
1 answer

NSeviceBus - Performance degradation when endpoints are disconnected

I'm looking into using NServiceBus for fault tolerant communications between a central server and many remote located PCs. I'm running the GateWay sample in the newest (3.2) release, and all works well - with a trial commercial license the…
Matt Roberts
  • 26,371
  • 31
  • 103
  • 180
0
votes
1 answer

NServiceBus 3.2 and child containers

I have NServiceBus (3.2.2) setup with Castle Windsor as its builder and I'm also using NHibernate. THe problem I have is that within my handlers if I have multiple repositories that need the NHibernate session, they end up with different…
Francois Joly
  • 307
  • 2
  • 11
0
votes
2 answers

NServiceBus V3 how to config endpoints within WPF app

I'm getting the following error when trying to configure an instance of the bus. No endpoint name could be generated, please specify your own convention using Configure.DefineEndpointName(...) Hmm so I need to tell the bus about endpoint message…
CRG
  • 677
  • 1
  • 7
  • 16