< 1 2 3 4 5 6 7 > >>   Sort: Date

Microsoft Azure API Management Tutorials
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Microsoft Azure services: API Management Services at Azure Portal What Is Azure API Management Service Azure API Management - Pu...
2022-08-26, 7949🔥, 0💬

About dev.FYIcenter.com
dev.FYIcenter.com is a Website for software developer looking for software development technologies, programming tutorials, career information, and so on. Just browse through the site, you will find the best information our team has prepared for you. Other FYIcenter.com Resources: Software QA Resour...
2019-11-22, 7871🔥, 3💬

💬 2019-11-22 Nick: Hi there, I hope my original email didn't get lost in the big old internet black hole, but in case it did I thought I'd follow u...

💬 2018-12-06 FYIcenter.com: @David, the broken link is replaced. Thanks for your suggestion.

💬 2018-11-30 David Eubanks: Hi, I found a broken link on this page - http://dev.fyicenter.com/resource/18 _Best_Color_Tools_For_Web_Designers. htmlIt’s th...

Can Two HTML Forms Be Nested
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two forms directly. XHTML schema does not allow that. Yes. You can nest two forms indirectly. See the tutorial example below. No. Two nested form do not work as two forms. Browsers will treat them as one...
2023-01-24, 7558🔥, 2💬

Start Visual Studio Command Prompt
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C++ environment installed. If you have Visual Studio 2017 Community version with Visual C++ environment installed, you can follow this tutorial to start Visual Studio Command Prompt: 1. Run "All Progra...
2017-08-21, 7174🔥, 0💬

Multiple Paragraphs in an HTML List Item
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a single list item, because "li" is a flow type element, which can have block elements and inline elements. The tutorial example below shows you how a list item can have two paragraphs: &lt;?xml versi...
2017-05-29, 7161🔥, 0💬

'forward-request' Policy Statement
How to use the "forward-request" Policy Statement to call the backend service for an Azure API service operation? The "forward-request" Policy Statement allows you to call the backend service, using information provided in the "context.Request" object. The "forward-request" Statement has the followi...
2018-01-16, 7136🔥, 0💬

"docker container exec --tty --interactive" - Attach to Container
How to attach console to a Running Container using the "docker container exec" command? I want to get a shell TTY terminal on the container. To attach a TTY terminal console to a Running Container, you can execute the /bin/sh command on the container with "--tty and "--interactive" options. 1. Check...
2018-12-28, 7003🔥, 0💬

Python Tutorials
Where to find tutorials on Python programming language? I want to learn Python. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Python programming language: Introduction of Python What Is Python Download Latest Version of Python ...
2020-12-22, 6820🔥, 1💬

💬 2020-12-22 kimmy Kervel: Thanks for sharing this precious information with us, this really helpful for me and also for my upcoming project.

'rewrite-uri' Policy Statement
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" Policy Statement is actually doing the same work as the operation setting "Rewrite URL template". For example, if you create an API operation with the following settings: HTTP verb: POST URL template:...
2018-01-16, 6784🔥, 0💬

Real Atom XML Examples
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1. Go to FYIcenter.com Developer Website . 2. Scroll to the bottom and click the "Atom" link. You see an Atom XML document displayed as an XML tree or as new feeds depending on the Web browser you are ...
2017-12-26, 6270🔥, 0💬

Looping through an Array without "foreach" in PHP
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to allow you loop through an array without using the "foreach" statement: reset($array) - Moves the array internal pointer to the first value of the array and returns that value. end($array) - Moves the a...
2017-01-05, 6226🔥, 0💬

'set-backend-service' Policy Statement
How to use the "set-backend-service" Policy Statement for an Azure API service operation? The "set-backend-service" Policy Statement is actually overriding the API setting "Web service URL" to specify the backend service base URL. For example, if you create an API with the following settings: FYIcen...
2017-12-04, 6136🔥, 0💬

'xml-to-json' Policy Statement
How to use "xml-to-json" Azure API Policy Statement? The "xml-to-json" Policy Statement allows you to convert the body of the inbound request or outbound response from XML format to JSON format. For example, the following "xml-to-json" policy statement converts the outbound response from XML format ...
2021-10-02, 6049🔥, 2💬

💬 2021-10-02 FYIcenter.com: @Joe, just follow "Edit API Operation Policy" tutorial, and enter the above code into the policy file.

💬 2021-09-28 Joe D: Do you have any examples of how you would use this? I am really lost on how to implement this.

Adding Claims in Azure AD v2 id_token
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claims in Azure AD v2.0 id_tokens, you need to modify your application registration in Azure AD. 1. Log in the Azure portal. 2. Select the Azure Active Directory service, and then select App registrations ...
2019-03-27, 5962🔥, 0💬

Differences of evaluateTransaction() and submitTransaction()
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabric-network.Contract class? Here are the Differences of evaluateTransaction() and submitTransaction() of the fabric-network.Contract class: evaluateTransaction() method - Calls the given transaction fu...
2019-04-22, 5948🔥, 0💬

'json-to-xml' Azure API Policy Statement
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you to convert the body of the inbound request or outbound response from JSON format to XML format. For example, the following "json-to-xml" policy statement converts the output response from JSON format t...
2023-04-25, 5909🔥, 2💬

💬 2023-04-23 FYIcenter.com: @lynette, maybe you can add an 'xsl-transform' statement to convert the &lt;document> element something else.

💬 2023-04-19 lynette temple: what do i do if i dont need the &lt;document> element?

Visual Studio Tutorials
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Visual Studio: Getting Started with Visual Studio What Is Visual Studio Download and Run Visual ...
2022-01-22, 5885🔥, 1💬

💬 2022-01-22 perlancar: # This file was a use strict; use warnings; use ExtUtils::Mak my %WriteMakefileA "ABSTRACT" => " "AUTHOR" => "pe "CONFIGURE_REQU...

Install Docker Desktop 2.5.0 on Windows 10
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker Desktop 2.5.0 on Windows 10. 1. Go to https://docs.docker.com/docker -for-windows/previous-versions /. 2. Click "Download" link under "Docker Desktop Community 2.5.0.1" to download "Docker Desktop Instal...
2023-02-03, 5822🔥, 0💬

Getting Minimum/Maximum Value of an Array in PHP
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximum value of an array, you can use the min() or max() function. Here is a PHP script on how to use min() and max(): &lt;?php $array = array(5, 7, 6, 2, 1, 3, 4, 2); print("Minimum number: ".min($arr...
2016-12-28, 5686🔥, 0💬

JSON Tutorials
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how to use JSON. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about JSON text string format: Introduction of JSON What Is JSON? JSON Tex...
2021-08-04, 5515🔥, 1💬

Instantiate Chaincode on BYFN Channel
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode on BYFN Channel manually. 1. Verify the installed chaincode: $ docker exec -it cli bash bash-4.4# echo $CORE_PEER_ADDRESS peer0.org2.example.com:7051 bash-4.4# peer chaincode list --installed Get inst...
2019-04-14, 5487🔥, 0💬

Using urllib.parse.urlencode()
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special characters. If your form data has spaces, equal signs, and other special characters, you need to call urllib.parse.urlencode() to encode it before passing it to the urlopen() function. The urlencode() fun...
2018-09-13, 5443🔥, 0💬

Install .NET Framework in Visual Studio
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer installed. If you have the Visual Studio Installer ready, you can follow these steps to install .NET Framework in Visual Studio Community 2017. 1. Close Visual Studio, if you are running it. 2. Run "All...
2017-09-19, 5362🔥, 0💬

Run CMD Commands in Dockerfile
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows image, you can only run executable programs that are already installed on the image. A Windows image usually provides programs in the C:\Windows\System32 directory, including two commonly used programs...
2022-01-24, 5151🔥, 0💬

< 1 2 3 4 5 6 7 > >>   Sort: Date