Neuron ESB User Network

The Service Bus for the Connected Business

All Blog Posts (18)

Simple Queue Gotchas

We often get people saying they are losing messages with using the MSMQ topic...

When we investigate, they aren't. But, some things are happening that can confuse.

The number one offender for message "loss" is using two instances of the same Party Id . This is easy to do with Adapters and Connectors and Queued Topics.

The net effect of that is the message will always be delivered to one Party..It's a non mulitcasting queue under there so that…

Continue

Added by CM on March 26, 2010 at 6:17pm — No Comments

Load Balancers and Bindings

Many times load balancing can change what the optimal solution is for a given deployment.

Unless careful consideration is given to what is trying to be accomplished then some erroneous conclusions can be arrived at...

For example, people take it as gospel that netTcp binding is superior for performance... That might not be the case depending on how you're using it. Pooling and affinity are great...unless you want to scale in a round robin…

Continue

Added by CM on March 17, 2010 at 4:55pm — No Comments

A Couple of Pipeline Tips and Tricks

I thought I'd share a couple of tips



First Tip : REST drop off point



You can set up a Pipeline that allows the client to POST a message and get a 200 response very easily with Neuron.



1)Create a Pipeline and adding whatever logic you wish to process the POST. Many times this may simply be a Publish step.



2)Next add a Code step that sets context.Data to a new ESBMessage and then uses the FromString method with "" as an argument. You don't have to use… Continue

Added by CM on December 15, 2009 at 10:18am — No Comments

Versioning DLL's

The component Neuron uses for it's Pipeline code step stores the fully qualified assembly name. This causes issues sometimes for people who have set up assembly versioning in their projects.



When we ask people why they are versioning an internal dll that they never intend to run side by side the most common answer we get is so they can be sure the right one is deployed to production.



So, how can you achieve a process where you provide yourselves this kind of information… Continue

Added by CM on December 15, 2009 at 8:57am — No Comments

More on the Semantic and and the Service Connector

Sometimes it's efficacious to attach a pipeline unconditionally to the Party's On Client Receive in a Service Connector that uses the SetProperty step to always set the Semantic to "Request" even if the Messaging Pattern in the connector is already set to Request-Reply.



Why would you do that? Well, if the message came from a Client Connector the Semantic is likely already set correctly so this doesn't really do anything.. But if the message came from an Adapter or Pipeline that has… Continue

Added by CM on November 25, 2009 at 3:27pm — No Comments

Now you're just talking Semantics

Semantic is one of the more estoric things in the Neuron world. If you never use the Test Client or the API you may not even know it exists...



Semantic has a couple of effects in Neuron. It controls message path and it influences blocking behavior of the Party Publishing. Most Neuron users are impacted by Semantic in the Service Endpoints.



When you use Request-Reply Messaging Pattern with a Client Connector what occurs under the covers is that the Neuron API publishes the… Continue

Added by CM on November 20, 2009 at 9:24am — No Comments

Dynamic Off Ramp

The mad scientist Jesse Ezell has baked a little goodie into 2.5 you may find useful but you won't find it in the UI...



What he's done is make it so you can change the URL of the target service in a Pipeline. This means you can not only easily create an On Ramp pattern in Neuron you can create an Off Ramp as well!



The actual code you use looks like this:



context.Data.SetProperty("Addressing","To",[Insert your service url here]);



Pretty simple… Continue

Added by CM on November 12, 2009 at 11:22am — No Comments

Single point of failure..

....Grrr..... I have been hearing this one since I did EJB and CORBA... and then BizTalk...and I still hear it with Neuron..



The fact is for whatever reason the notion of an intermediary raises some folks hackles....Usually it's ops folks but occasionally you get the point to point developer or super framework guy who only trusts their code..



I'm not sure why it's such a hard concept to accept an intermediary for some folks...Ask an ops guy if instead of using routers,… Continue

Added by CM on October 29, 2009 at 9:52am — No Comments

How can you log? Let me count the ways...

Sometimes when talking to people about Neuron for the first time or after their first few days using the product I'll get asked "Do you have logging?"...



Sheesh.. do we ever... First, there is the Trace Level setting you access in Neuron Explorer by using the Configure Server.. Set that to the level desired and restart the service. If you make it verbose you will get lots and lots of info including message bodies. This log level will create a new directory under logs each time the… Continue

Added by CM on October 19, 2009 at 8:00am — No Comments

Once Again Loose Typing Saves the Day

I'm currently in the middle of something with insane deadlines, many vendors and constant changes to those vendors services. Yet, the Neudesic Services team I'm working with is keeping up with those changes as they come in even though they have to accomodate all of those changes as soon as they occur.



Why? because every change made is just naturally handled by Neuron's typeless endpoints, pub sub capabilities and a code step that alters the Topic based on SOAP Action.



If… Continue

Added by CM on October 7, 2009 at 5:50pm — No Comments

Do you really need that bool?

A lot of times I'll see this pattern in web services calls bool DoSomething(SomeObject foo). Usually, when I dig in there's not any actual code that returns false...If an exception is thrown then it never gets to "return true".



Other times they will switch the return value to void but still refuse to mark the contract as one way.



What's at the root of these behaviors? Distrust. Basically, there is a complete distrust of asynchorous operations and… Continue

Added by CM on October 1, 2009 at 9:58am — No Comments

Three approaches to avoiding the spider web

One of the primary advantages of using an intermediary is defeating the n(n-1) integration problem.



Leveraging the intermediary involves one of three approaches.



The first way is classic SOA and involves a modeling stage before any development moves forward. In this approach architects model the canonical representation of entities that represent their business. So Customer, Sale etc. are created and the web services exposed are those entities. This is a great approach if… Continue

Added by CM on September 13, 2009 at 11:00am — No Comments

To Farm or not to Farm That is the Question

I get that question a lot...I think the reason I get that question so much is people are so used to using mid tier products a certain way...But before I get into that let's do the easy case. If you want to bootstrap API clients from a single ip and you want those API clients to be able pub sub reliably across multiple servers then farm.



But what about people that want to use Neuron as services intermediary only so that they don't take a depency on our DLL's? Now it gets more… Continue

Added by CM on September 5, 2009 at 6:43am — No Comments

Pushing it to the Edge

Many times when I go into a new customer I am going into a place that has attempted to build their own ESB or their own SOA infrastructure. So why are we being brought in? It’s simple. They’ve failed. What’s not so simple are the reasons they have failed.



To begin to understand the problem you first have to understand the people that are usually tasked with building such systems. They are usually very smart and are often very accomplished programmers. Many times they have extremely… Continue

Added by CM on August 25, 2009 at 4:19pm — No Comments

A Quick Note about XPath as predicates in Neuron

Neuron uses the presense of a nodeset in things like the Message Pattern as the predicate



This means something like this will evaluate to true



//*[local-name()='Foo' and namespace-uri()='http://Baz' and text()='Finorkle'] and will work..



but something like this won't



//*[local-name()='Foo' and namespace-uri()='http://Baz']/text()='Finorkle'



in theory we could either swtich to Evaluate or offer it as an option ...…



Continue

Added by CM on April 9, 2009 at 1:34pm — No Comments

Services Aggregation with Neuron ESB today and tomorrow

Many users are familiar with utilizing Neuron for Location Transparency and Services Mediation as well as standard EAI. And, a fair number of users are familiar with using Neuron's pipeline features such as WF or Notifications or Transformation.



Very few users however are aware that you can achieve patterns with Neuron that seem to require a classic orchestration engine. I was asked recently about one of those patterns Scatter-Gather and provided a solution that was targeted to that… Continue

Added by CM on February 26, 2009 at 2:27pm — No Comments

Exposing an Adapter as a Service

Sometimes it's desirable to utilize Neuron as an onramp for services that don't actually exist....What do I mean by that?



Well imagine you had a set of stored procedures that had served a traditional client server or pure server side architecture well and you wanted to expose them to new WCF clients. One option would be to create a WCF service that exposes the operations and have all the goodness of contracts and another platform and application to manage.



Another option… Continue

Added by CM on February 12, 2009 at 11:02am — 3 Comments

Demystifying Durable and Transactional enterprise deployments

Many times when on site I'm asked how do we achieve "guaranteed delivery" or "zero message loss"? with Neuron. The answer is somewhat involved but hopefully after reading this blog you'll understand the pieces that need to be in place.



First, is the environment 2003/XP? If it is, then the story is that if all messaging i.e. parties will run on the server then you run one Neuron server and use the MSMQ channel. Cluster the Neuron box for HA.



The only scaling that is… Continue

Added by CM on February 6, 2009 at 3:23pm — 3 Comments

Neuron ESB Product Support Forums and Communities

Latest Activity

Anupama Nair posted a discussion

Marketo Adapter Invalid Token

Hi,We are using the Marketo adapter to push account updates to Marketo. It works well for some time then starts failing with Invalid Token unless restarted. Is there a configuration that can be done so it can auto refresh the token when required?Thanks!See More
Nov 6, 2023
Sayantini Basak posted a discussion

Maximum payload size(REST API) for requests interfacing to NeuronESB

I am new to Neuron ESB and in our current scenario,We need to process batch transactions comprising of ~1000 records and send them to Neuron ESB for further processing. I would like to understand what is the maximum size of payload that can be transferred using REST interface to Neuron ESB.See More
Jul 22, 2022
Profile IconRobert E Dunie and Sayantini Basak joined Neuron ESB User Network
Apr 28, 2022
Profile IconDayanand, Frederic C, Steffen Greve-Oksfeldt and 1 more joined Neuron ESB User Network
Mar 16, 2022
Profile IconCam Vong and Mitja Luznar joined Neuron ESB User Network
Jan 27, 2022
Profile IconWill Hitzges, Chad Parsons, michael larsen and 4 more joined Neuron ESB User Network
Jun 11, 2021
Anupama Nair posted a discussion

ODBC stored proc polling with temporary tables

We have set up an ODBC adapter to poll a stored proc.We found that if the stored proc has a temporary table defined the rows returned are always 0.Any idea why this would be and what we can do to get around it?See More
Dec 14, 2020
Prasanth Kharade is now a member of Neuron ESB User Network
Dec 30, 2019

Badge

Loading…

© 2024   Created by Neuron Admin.   Powered by

Badges  |  Report an Issue  |  Terms of Service