Wizdler

Parses the WSDL files and generates SOAP messages for you.

Wizdler là gì?

Wizdler là một tiện ích mở rộng Chrome được phát triển bởi Peter Prikryl, và tính năng chính của nó là "Parses the WSDL files and generates SOAP messages for you.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wizdler

Tải xuống các tệp mở rộng Wizdler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # Wizdler

Recognizes WSDL information on the page to show you the available services and operations. Click the operation to generate the SOAP requests and view the response. By clicking the service, you can download WSDL and external XSD files in single ZIP file.

You can try it on http://www.webservicex.com/globalweather.asmx?WSDL. When WSDL is recognized, the icon in the address bar will allow you to list its operations. After clicking the operation, the SOAP request editor with pre-generated message is shown. Edit it and press Go to see the response. Use the menu near the Go button to edit HTTP headers. Click tabs on the bottom of the page to switch between request and response editor.

If you can, buy me a beer using the PayPal link in the right bottom of the editor page. Otherwise, leave the review on the "Reviews" tab.

Wizdler is now on GitHub: https://github.com/pepri/wizdler
Use it for bug reporting and feature requests (ideally in form of pull request). 

## Permissions

Your data on all websites
:	Used to check whether the current website contains the WSDL definition.

Your tabs and browsing activity
:	The popup needs to access the tab to open the editor for SOAP request.

We do not collect nor send any information.

## Features

-	View WSDL information in a comprehensible tree.
-	Download WSDL and its related XSD definitions in a single ZIP file.
-	Generate a sample SOAP request for a specified operation.
-	Edit and send the request to view the response.
-	Remember last request
-	Authentication (HTTP Basic, WSSE PasswordText, WSSE PasswordDigest)

## Credits

-	Ace - Ajax.org Cloud9 Editor for editing the request with syntax highlighting.
-	Bootstrap, from Twitter - Simple and flexible HTML, CSS, and Javascript for popular user interface components and interactions.
-	jQuery - Fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.
-	JSZip - A JavaScript class for generating ZIP files.
-	vkBeautify - JavaScript plugin to pretty-print or minify text in XML, JSON and CSS formats.
-	Equivalent XML JS - Equivalent XML JS is designed to ease the process of testing XML output.

## Latest Changes

- Handle WSDL imports and XSD includes

- Specifically handle the XML Tree extension

- Updated to use the latest Chrome Extensions API

- Added support for local WSDL files
- Fixed the default value of the "elementFormDefault" to "unqualified"

- Added support for multiple schemas in WSDL file

- In incognito mode, the editor is opened in same window
- Services, ports and operations in the popup window are sorted
- Fixed CSS for antiscroll scrollbars (bug introduced in Chrome 25)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wizdler Wizdler
ID oebpmncolmhiapingjaagmapififiakb
URL Chính Thức https://chromewebstore.google.com/detail/wizdler/oebpmncolmhiapingjaagmapififiakb
Mô tả Parses the WSDL files and generates SOAP messages for you.
Kích Thước Tệp 285 KB
Số Lần Cài Đặt 132,836
Phiên Bản Hiện Tại 1.31
Cập Nhật Lần Cuối 2016-02-16
Ngày Phát Hành 2016-02-16
Đánh Giá 4.35/5 Tổng số 436 Đánh Giá
Nhà Phát Triển Peter Prikryl
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://pc.poradna.net/info/gdpr
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wizdler",
    "version": "1.31",
    "manifest_version": 2,
    "description": "Parses the WSDL files and generates SOAP messages for you.",
    "incognito": "split",
    "icons": {
        "16": "images\/asmx16.png",
        "32": "images\/asmx32.png",
        "128": "images\/asmx128.png"
    },
    "page_action": {
        "default_icon": "images\/asmx16.png",
        "default_title": "Browse WSDL...",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/paypal.gif"
    ],
    "permissions": [
        "tabs",
        "",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}