Replies: 18 comments 36 replies
-
Hi there everyone 👍 |
Beta Was this translation helpful? Give feedback.
-
BTW if you don't know RMQ, localhost:15672/ or localhost:55672/ will give you the management console (usr:guest pwd:guest) where you can see what is happening, which really helps |
Beta Was this translation helpful? Give feedback.
-
RMQ will drop a message, if it has no consumer. So you have to spin up the consumer - before you send messages, or they will be lost. Doing a POST of a greeting to a user should send a message |
Beta Was this translation helpful? Give feedback.
-
Finally, yes, the tests.http file will work with Rider or RESTClient in Code to let you run tests against the WebAPI that should then drive messaging |
Beta Was this translation helpful? Give feedback.
-
Let me know how it all goes!! |
Beta Was this translation helpful? Give feedback.
-
Thanks a lot. Will try it out 👍 |
Beta Was this translation helpful? Give feedback.
-
Hi, sounds like you have made some progress. Yes, checking the AMQP connection string is always a good idea, as you need to make sure it points to the instance you are using for testing (in this case localhost). |
Beta Was this translation helpful? Give feedback.
-
You would expect to see the following:
One thing to watch for with sqlite - its read-only for subsequent runs and fails, as only the creating process has rights to write by default, unless you explicitly grant those rights. It's a PITA for multiple-runs. If that is the case, just ensure you are using your MySql instance for the inbox too. If you turn diagnostics up enough, you should get error messages about failed writes and why. |
Beta Was this translation helpful? Give feedback.
-
Let me know if that helps at all. |
Beta Was this translation helpful? Give feedback.
-
But fantastic to see that you have gotten so far. |
Beta Was this translation helpful? Give feedback.
-
@iancooper yea, you are very helpful, I appreciate it a lot.
However, everything else seems to work. Lets see whether I can figure out how to run tests now. 😉 |
Beta Was this translation helpful? Give feedback.
-
After that, it's either,
|
Beta Was this translation helpful? Give feedback.
-
@iancooper I uncommented the attribute and inbox works now 😎
|
Beta Was this translation helpful? Give feedback.
-
@preardon Okay, thanks for your comment, it motivates a lot. I will start with Marten example today, so probably will have some questions sooner or later. |
Beta Was this translation helpful? Give feedback.
-
@iancooper , @preardon Hi guys, do we have some documentation about how to properly configure the Brighter in Startup?
|
Beta Was this translation helpful? Give feedback.
-
Do you guys aware about any sqlite similar document database, which I can use for the Development environment for the Marten example. Or for now its ok to use postgresql for both. |
Beta Was this translation helpful? Give feedback.
-
@iancooper Hey, Is the example for Marten still a thing? I just can not find the issue anymore. |
Beta Was this translation helpful? Give feedback.
-
@omelianlevkovych Your PR still exists: #2076 but you may need to merge with master to pick up recent changes. Welcome back! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @omelianlevkovyc,
Let's me know if you can see this, and the we can help you get started. I've attached a screen shot of our 'help wanted' section.
As an alternative, we need to work on our docs, and I am currently reviewing our samples. I am working on some WebAPI examples. I have one done for EF Core and I am working on a Dapper version of it. To cover of the most popular .NET data access libs we could do with another example for WebAPI and Marten.
The advantage of that would be that you could learn how to use Brighter, if you don't already know, and you can use the existing WebAPI and EFCore project to provide some ideas about how to write it.
Thoughts?
Ian
Beta Was this translation helpful? Give feedback.
All reactions