Integration of CoSign web Agent with Web Portal - cosign-api

Following url and parameters names for testing integration is correct or not ??
URL:- http://webdemos.arx.com/cswa_sign_sample/CSWADemo.asx
Parameter name:- inputXML .
Do you have any sample code in java for this integration?

The service point for the Developer CoSign Web Agent platform is https://webagentdev.arx.com/
Eg. https://webagentdev.arx.com/Sign/UploadFileToSign
Documentation on the UploadFileToSign method

Related

Control-m Automation API - jobtype: web services

Is it possible to use the ctrl-m Automation API when I have a Web Service as a job type?
I looked on the reference below and I don't see the option for web services
https://docs.bmc.com/docs/automation-api/monthly/job-types-932197928.html
Thanks!
web services are not supported yet in Control-M Automation API.

Oauth Authentication for VSO with WCF service

I have followed all the steps mentioned in the following link to implement oAuth authentication for connecting to VSO:
https://www.visualstudio.com/en-us/integrate/get-started/auth/oauth
It involves creating a azure web site and the token in returned to it which is used for further processing.
My requirement is to create a service which will connect to VSO using oAuth authentication and fetch/create the work items.
I want to know how to configure the call back url in case of using a service.
Firstly, please take note that: Right now, it is only supported to register web application, it is impossible to register a WCF service project.
If you would like to register a web application and would like to get the call back URL, please check my reply in this link for the detailed steps: callbackurl while connecting to vso using oAuth

Continous deployment in wso2 api manager

Do i have the options of continuous deployment in wso2 api manager. For example - I have configured an API in test region & once API testing is done i need to promote the API to UAT region automatically rather than login again in UAT region configure the same API.
Currently we don't have that support. We have this feature in our roadmap.
You can do it by programmatically. write a java client to get the api details from one environment and then publish to the target environment using apimanager's publisher apis[1].
https://docs.wso2.com/display/AM170/Publisher+APIs

Mule:How to connect Mule ESB with Hybris?

I have a requirement to connect Mule ESB with Hybris. I didnt find Hybris connector provided by Mule( Also didnt find sample examples as well). This is the 1st time going to try Mule with Hybris..Please let me know the steps or efficient procedural way to connect Hybris.
Is the hybris URL enough to connect?. Please suggest me with your thoughts to implement. Thanks in advance.
Hybris has many ways to integrate with their platform. If you have a login you can access their docs which details examples of integration with the platform including JMS and the Platform Web Services.
There is no connector supplied by Mule, but you can access their Platform Web Services which are implemented with a HTTP Restful API using the Mule http transport or by building your own connector using the Mule DevKit.
The hybris wiki has pages dedicated to most of the endpoints and the request/response formats. You can view this here if you have a login: https://wiki.hybris.com/display/release5/WebService+API+-+Reference
Also, in your hybris installation there are a bunch of examples in /bin/ext-platform-optional/platformwebservices/src...
and /bin/ext-platform-optional/platformwebservices/testsrc which show the actual web service implementations and their test cases using Jersey client.

Can I use SOAP UI tool for web testing which do not have any web service

I have to use SOAP UI tool for my new project. I do not have any details about its functionality and use. So can I use SOAP UI tool for web site which do not have any web service. Is there any web site(other than www.soapui.org) which gives me manual/sample project for study.
Yes, you can use SoapUI to test a simple web site. You are looking for Http TestStep tutorial on their website.
Live:
You can make a request from SOAP Ui to a live web service (using tutorial from my answer, from the bottom), for instance:
GeoLookupXML
service to find a city in the Wunderground city database
http://api.wunderground.com/auto/wui/geo/GeoLookupXML/index.xml?query=94107
where query can be:
zipcode (US or Canadian)
city state; city, state
country
Locally:
You can use the example from their site and play with it locally, following this step-by-step tutorial: http://www.soatutorial.net/test-web-services-using-soapui/