0
Résolu

What APIs are currently available from WareWolf ESB?

Anonyme il y a 10 ans mis à jour par Warewolf il y a 10 ans 5

Hi,

What APIs are currently available from WareWolf ESB? Do you have an API/connector for SMTP, FTP, MS Dynamics AX?

Thanks,

Farhan

+1
Résolu

OAUTH security for endpoints

JUSTIN il y a 10 ans mis à jour par Gandalf il y a 10 ans 5
Hi,
Can i provide oauth security for apis internally?
Thanks
service deploy studio explorer debug
0
Résolu

Is there any way to search the Api ?

Anonyme il y a 10 ans mis à jour par Gandalf il y a 10 ans 7
Hi,
I want to know that is there any possible way i can search the API from its whole API set?
Thanks
service studio
0
À l'étude

WCF Host/Endpoint Support

Victor Rocha il y a 10 ans dans Server / Resources mis à jour par anonymous il y a 9 ans 7
Hi!

Are you planning to support (host) WCF services?

I mean, give to user the ability to load a DLL dynamically and host it (endpoint) within Warewolf ESB to be accessed by Warewolf and any other WCF client? Is it possible?

Example:

  • 1 - Load DLL - WCFHelloService.IHelloServiceBus - (Contract - mapping methods dynamically)

  • 2 - Host it:
using System.ServiceModel;
ServiceHost host = new ServiceHost(typeof(HelloServiceBus), uri);

  • 3 - Turns it available as a WCF's endpoint (Some binding types) to be consumed by any WCF client and Warewolf ESB:

<service name="WCFHelloService.HelloServiceBus">
<endpoint address="net.tcp://warewolfendpoint/HelloService" binding="netTcpBinding" contract="WCFHelloService.IHelloServiceBus"/>
</service>
I believe, if it is possible, that WCF hosting will give much more integration capabilities, enabling users to concentrate all its WCF services into Warewolf ESB.
Best regards!
service
Solution
anonymous il y a 9 ans

Hi Victor,


Warewolf ESB currently allows connecting to webservices as well as loading of .net dll so both these methods are options to access an existing WCF service.


Thanks

0
Résolu

VB DLLs and Objects

Justin Blaauw il y a 10 ans dans Studio / Sources mis à jour par Gandalf il y a 10 ans 2
I am fairly new to the Microsoft experience, but was wondering if the DLLs have to be C# or can they be VB to use in Warewolf? Can I create objects in the DLL and access them from Warewolf ?
source
+1
Corrigé

Warewolf Installation stuck

Anonyme il y a 10 ans dans Installer mis à jour par anonymous il y a 10 ans 16
Hi

Warewolf installation stuck at starting Warewolf server on Pre Install tick.with process bar 90% complete.
OS , Windows 7 32 Bit

Surya
server
0
Résolu

HTML Support in Email Body

Jacques Zwiegelaar il y a 10 ans mis à jour par Gandalf il y a 10 ans 4
Howto add HTML to the body of an email.
Solution
Gandalf il y a 10 ans

Done. Functionality released in version

0.5.1.294

http://warewolf.io/release-notes.php

+1
Résolu

Connecting Studio to Server

Anonyme il y a 10 ans dans Studio mis à jour par anonymous il y a 10 ans 9
Hi,

I have downloaded the source code and currently have the server and studio running in visual studio. The problem I am having is that the studio can't find the server and throws an error. Do you have any advise to over come this issue.

Regards
Wayde

studio server
0
Terminé

Client Connector

Anonyme il y a 10 ans dans Studio / Toolbox mis à jour par Gandalf il y a 10 ans 4
I read that you use SignalR for communication between the server and studio. Are there any plans on using SignalR to create a Client Connector+Source Tool so that we can push content to or message connected client apps?

>Garrett
tool studio
+2
Pas un bug

Recursive Evaluation

Anonyme il y a 10 ans dans Studio / Variables mis à jour par Gandalf il y a 9 ans 5
After reading about how the Datalist caters to recursive evaluation I thought this was interesting and wanted to try it out.
From the technical documentation page:
"i.e. [[hello[[world]]]] would be recursively evaluated as [[hellobob]] where [[world]] had the value of “bob” and then [[hellobob]] as “my name is bob” where [[hellobob]] had the value “my name is bob” stored in it.

I decided to test this out myself. I created a variable [[hellobob]] and assigned the string "my name is bob" Then I created a variable [[world]] and assigned "bob". Finally I created a variable [[result]] and assigned [[hello[[world]]]]. To my disappointment I received a parse error.

I went back and added the variable [[hello]] and assigned "hello"
And then changed my assignment of [[result]] to [[[[hello]][[world]]]]
This produced the expected result. In the debug window it read my assignment as Variable [[result]] = New Value [[hellobob]] with the string "my name is bob" as its value.

I don't know if this is technically a bug since it did behave in a recursive manner when I tried the second time, but perhaps the documentation is wrong. When I set [[result]] to [[hello [[world]]]] It returned [[hello bob]] an unassigned variable. But with no space there, [[hello[[world]]]] results in a parse error.