Mule Anypoint Studio - Test Connection Failed - Unknown Error while doing connectivity testing - Custom API - api

I am new to Mule and learning. I downloaded Anypoint Studio and successfully developed and deployed 3 stand alone system APIs to cloud hub. They work via Postman.
Now I want to create a 4th API which is a Process API which will call these 3 system APIs in order. My understanding of API-Led Connectivity is like APIs calling APIs for re-usability.
So I went to the palette and downloaded my 3 published APIs from the Exchange. I dragged and dropped the first one. It asked me to configure. When I provide the values it's failing. That API works fine when I test it via Postman. What mistake am I doing here?

it looks like the answer is very easy. I should have used upper case letters as HTTP instead of http

Related

Anypoint CLI VS ARM REST Services (which one is preferred for Automated Deployment?) Using Cloud Console on-premis Deployment

I wanted to Automate the Cloud Console on-premis Deployment process. I see two options to deploy the services using anypoint-cli or Rest API. Can some one please let me know what are the differences between them and which one should i choose(In terms of long term support) ?
Anypoint cli is a command line tool to interact with the REST API. It might not provide access to every endpoint of the API.
Using the API directly requires that you make the API requests in some programming or scripting language.
You should choose the one that makes more sense to you, and your use case. That can not be determined here.

Connecting to Bloomberg Server API

Background:
My company currently has the Bloomberg SAPI running on server X and it also has BB terminal on it. I am planning to develop an .NET application to be hosted on server X and have it accessing Bloomberg data. However I am a bit unclear on few things.
Questions:
Do I use BLPAPI.dll to access Bloomberg SAPI?
If so, do I follow the documentations on https://bloomberg.github.io/blpapi-docs/ ?
In terms of code wise, what is the difference of connecting to Bloomberg using SAPI or Desktop API or Open API (really confused here)
Thanks in advance!
Q1. Do I use BLPAPI.dll to access Bloomberg SAPI?
A1. Yes! The same Api is used to access both DesktopApi (DAPI) And ServerAPi (SAPI), although additional steps are required when using SAPI - that is Authentication, Authorization and Permissioning. I recommend to download the latest library from the Bloomberg Portal https://service.bloomberg.com.
Q2. If so, do I follow the documentations on https://bloomberg.github.io/blpapi-docs/ ?
A2. Yes, this is the official class documentation. The Api Developer Guides are available on the Bloomberg Portal.
Q3. In terms of code wise, what is the difference of connecting to Bloomberg using SAPI or Desktop API or Open API (really confused here)
A3. The Open API is another name for Bloomberg Api, or blpapi. SAPI is a server process, that your application connects to in order to access the data. Desktop Api is used by applications to connect to bbcomm.exe, a local process that runs on same PC that runs the terminal and listens on port 8194.

How to Client Side and Server Side integration of IBM TeaLeaf

I have to implement TeaLeaf analytics for our application so i am doing sample POc for android and iphone environment for hybrids application. Anyone please advice me how can i implement the TeaLeaf stuff in my POC.
Below that activity i did,
create sample app version project and add android/iphone environment
application-descriptor.xml i added IBM teaLeaf SDK
what else i have do? i was searching google and following ibm knowledge center also there is not much clarity for tutorial and how can i test in development environment.
below that link i referred :
http://www.ibm.com/support/knowledgecenter/SSHS8R_6.3.0/com.ibm.worklight.integ.doc/integ/t_tealeaf_client.html
If I understand your question correctly, it seems like you're attempting to create a connection between IBM MobileFirst Platform 6.3.0 and IBM Tealeaf. I work on integrations of IBM Tealeaf On-Cloud with client e-commerce platforms and it seems like you might be dealing with IBM Tealeaf On-Premise.
That being said, my understanding of the process for the On-Cloud implementation is that there are a few libraries you need to make sure are being included on pages you'd like Tealeaf to observe:
Tealeaf.js (distributed by IBM)
Sizzle.js
JQuery, if the page uses it ... also note that if the site uses JQuery, you need to provision from IBM the JQuery flavor of Tealeaf.js instead of the W3C flavor.
Hammer.js
Pako.js (again this assumes the On-Cloud version of Tealeaf, as this is a library for compressing data a being sent to IBM cloud-service collectors. In the On-Premise version my understanding is that this data is written to a file that is saved to the local hardware.)
How the libraries are included is something you'd decide when working with the client's server and development team - every organization has their preferences. Generally though they'd be inserted on pages that need to be monitored and the Tealeaf.js config would be edited to specify the endpoint of the collector for the regional data center on which space was provisioned for the client (in the US, either in Dallas or Washington DC.)
As for the On-Premise implementation of Tealeaf, you can jump in to the documentation here: http://www.ibm.com/support/knowledgecenter/SS2MBL/tealeaf_product_family_welcome.html

how to relate each execution step of my mule application to my web page

In my mule project I added a web part. I just wanted to ask if there is a way to track every step of the execution process of my mule application via my web page.
There is a screenshot of what i want to do.
Those steps are related to my mule application. For example if the first step is executed I want to mark it in my web page. Any idea please?! I'm using Mule CE 3.5.0
You can use the AJAX Transport to push events from Mule to the browser displaying the execution steps.
for enterprise edition you can use mmc(mule management console). For testing 1 month trial version available.

Windows Store Application unable to access localhost WCF service and throws EndpoingNotFoundException

I have a solution which basically contains three components:
• WCF Service that is hosted locally having a back-end SQL Server Express DB and this WCF service is hosted from a Windows Service
• A console application
• A Windows Store Application
This is what they are meant to do:
• WCF service his hosted locally and is used by the console app and the store app for communicating with the database
• The console app adds an image for processing to the database by contacting the WCF service
• The store app will at regular time look for unprocessed images in database via the WCF service and will process them
Now, the difficulty is:
• The WCF service is hosted successfully and is working absolutely fine and I can check that by hitting its URL http://localhost:8081/XYZ
• The console app is also able to submit images to the WCF service and add their local paths to the database
• The store app however always throws the EndpointNotFoundException when accessing the service at that same localhost path
What have I tried:
• I have tried almost everything from searching through stackoverflow to googling and haven't found a solution yet
• I was thinking that it might be a port issue and so I turned off the firewall to check this, but it did not work, and the store app kept throwing the EndpointNotFoundException
What have worked:
• The complete set-up has, however, worked perfectly on my machine. It is strange that its not working on my client's Windows 8 machine.
Point to be noted:
• The complete solution has been developed in Visual Studio 2013 and the App is for Windows 8.1
• I am not sure, but it seems my client has a Windows 8 machine and we are installing the app on that. (Possibly, that might be a problem. But I'll check)
If there is any help someone could provide me, I'll be really greatful. Thanks in advance!
This is expected. Windows Store apps cannot connect back to the local system in production. This loopback prohibition is disabled for debugging.
See How to enable loopback and troubleshoot network isolation
If your app is to be side-loaded rather than deployed through the store then see Using network loopback in side-loaded Windows Store apps