0
Answered

Support for AMQP.

Robin 9 years ago updated by anonymous 8 years ago 9
Hi, 
When will support for AMQP be added?
Answer
anonymous 8 years ago

Hi Playsted,


Firstly I agree with you and we have native support for what you are talking about in point 2 on our backlog and now that version 1 is out we are re-looking at priorities and this is something that will most definitely be up for discussion.

As for point 1, Warewolf does currently support HTTP post, that is available for you to use right now, if it is what you require.


Thanks for your input and thinking it is really appreciated and welcomed. Please keep it coming.

+1
Answered

EIP components

Anonymous 9 years ago updated by Gandalf 9 years ago 4
Hi There
You mention that this is a service bus. We are interested in using one but your buss does not mention any EIP components? Do you support them?
Regards
Rider
0
Completed

User experience: Correct use of DLL acronym and text wrapping in notification.

Grommit 10 years ago updated by Gandalf 9 years ago 2
Hi
I came across this notification (see image) where the acronym DLL is Dll.
Also, the text doesn't wrap well and cuts in the middle of the acronym.

I think it would read better if the acronym was correct and the text wrapping was better.


Image 44
studio
Answer
Gandalf 9 years ago
Thanks. We are rebuilding these at the moment and will include your suggestion immediately.
0
Completed

User experience: Cursor in input box in Save dialogue box

Wallis B 10 years ago updated by Gandalf 9 years ago 3
Hi
I kept wanting to click in the input box before I typed because I didn't see a cursor in there. It was not obvious to me that it was instantly selected. Even after clicking in there no cursor appeared.
Thanks

Image 36Hi

studio
+3
Answered

How are you different to yahoo Pipes?

Anonymous 10 years ago updated by Gandalf 10 years ago 3
Your product seems to be a complicated version of yahoo's pipes https://pipes.yahoo.com/pipes/
Pipes is free, purely visual, self hosted and has a built in cache.What advantages does Warewolf give when mashing up web data feeds say for Mobile development?
tool
0
Answered

Security mechanism for API using Warewolf

Anonymous 10 years ago updated by Gandalf 10 years ago 2
Wanted to know what security mechanisms for APIs are provided by Warewolf. Also, do these security mechanism get extended to the already existing APIs?
0
Answered

How API management suite at Warewolf works for the existing APIs?

Anonymous 10 years ago updated by Gandalf 10 years ago 1
Want to evaluate Warewolf as our future API Management Suite. Before that, I just wanted to know how the Warewolf product manages the already written APIs? Do they work as a proxy and relay the calls to the already written APIs? Or is it something else?
Answer
Gandalf 10 years ago
Yes, if the API is written already, you would connect to it from Warewolf and then execute through there.'

This allows you to make mashups very quickly and keep a single bus responsible for the interfaces to your API's.
0
Answered

Will Warewolf work on Windows 8.1?

Anonymous 10 years ago updated by Grommit 10 years ago 2
The download states that your product is built for windows 7 and windows server 2008.

I currently have windows 8.1 and am going to be using azure.

Will this still work?
0
Not a bug

Feedback tool doesn't have "send" button

Anonymous 10 years ago updated by Gandalf 10 years ago 1
I tried to use the feedback tool to send some feedback about the Explorer. I recorded and filled in comments but the only buttons available were "Cancel" and "Go to Community".
I am not sure if my feedback was sent to you as there was a long lag after clicking "Go to Community". Then the dialogue box closed and I was brought here. See attaches screengrab,Image 35
0
Completed

data transform and validation

Paul Cannell 10 years ago updated by Gandalf 9 years ago 2
I have a file from a payment processor with my debit responses.
There are 13k (6mn text file) lines in this file.
From time to time I get files that have bogus lines (blank lines you already cater for)
but lines that are badly formatted
Example (muchly simplieifed
File structure is as follows
first 13 chars ID NO
second 10 Surname
third 4 some response code

so example GOOD file would look as follows

9999999999999MYSURNAME 0010
8888888888888BlaName         0010
7777777777777  Name            0010

using the transform I can get this into a recordset really easily. I can the foreach over it or whatever. Happy days.
However then you get this
9999999999999MYSURNAME 0010
Crap Data
8888888888888BlaName 0010
7777777777777 Name 0010
 
Now the transform tool does its best but when it gets to the 2nd row it sticks "Crap Data" into the rs().IDNo and then rs().Surname is "888888888B" 
I want to tell the transform to make its best effort up until it finds (in my case) a line feed. Perhaps some companies would use a char to denote end of line. 
If I can do this I can then take my 13k entries and I can filter out the BAD ones and do something with say the 3 lines that are invalid.

PS Id really like to email the bad ones to somebody :)

Is there any way to attempt to solve my current use case? Fixed delimited files are common when dealing with financial institutions and tho bulk insert in sql may be faster id rather take a bit longer and have the ability to handle error cases (try finding a prob in a 13k lines file when using bulk insert :)

- P