Esta página ainda não está disponível no idioma selecionado. Estamos trabalhando para adicionar mais opções de idiomas. Agradecemos sua compreensão.

Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive

SoapConfig

Updated on 2022-02-21 GMT+08:00

Path

com.roma.apic.livedata.config.v1.SoapConfig

Constructor Details

public SoapConfig()

Constructs a SoapConfig without parameters.

Method List

Returned Type

Method and Description

String

buildSoapMessage()

Construct a SOAP request packet.

String

getBodyPrefix()

Obtain the node prefix of a request packet.

String

getCharset()

Obtain the HTTP request encoding format.

int

getConnectTimeout()

Obtain the connection timeout interval.

Object

getContent()

Obtain the request content.

String

getContentType()

Obtain the packet parameter type.

String

getEnvelopePrefix()

Obtain the envelope prefix.

String

getHeader(String name)

Obtain the request header value based on the request header name.

Map<String,String>

getHeaders()

Obtain request header information.

String

getMethod()

Obtain the request method.

String

getNamespace()

Obtain the namespace.

String

getNamespacePrefix()

Obtain the namespace prefix.

String

getOperation()

Obtain the operation name.

String

getParameter(String name)

Obtain SOAP request parameters based on the specified name.

Map<String,String>

getParameters()

Obtains the SOAP request parameters.

String

getProtocol()

Obtain the request protocol.

int

getReadTimeout()

Obtain the read timeout.

String

getSoapAction()

Obtain the operation request address.

String

getUrl()

Obtain the request address.

boolean

isRedirects()

Allow redirection or not.

void

setBodyPrefix(String bodyPrefix)

Set the node prefix of a request packet.

void

setCharset(String charset)

Set the HTTP request encoding format.

void

setConnectTimeout(int connectTimeout)

Set the connection timeout interval.

void

setContent(Object content)

Set the request content.

void

setContentType(String contentType)

Set the packet parameter type.

void

setEnvelopePrefix(String envelopePrefix)

Set the envelope prefix.

void

setHeader(String name, String value)

Set request header information.

void

setHeaders(Map<String,String> headers)

Set request header information.

void

setMethod(String method)

Set the request method.

void

setNamespace(String namespace)

Set the namespace.

void

setNamespacePrefix(String namespacePrefix)

Set the namespace prefix.

void

setOperation(String operation)

Set the operation name.

void

setParameter(String name, String value)

Set a SOAP request parameter.

void

setParameters(Map<String,String> parameters)

Set the SOAP request parameters.

void

setProtocol(String protocol)

Set the request protocol.

void

setReadTimeout(int readTimeout)

Set the read timeout.

void

setRedirects(boolean redirects)

Set whether to redirect.

void

setSoapAction(String soapAction)

Set the operation request address.

void

setUrl(String url)

Set the request address.

Method Details

  • public String buildSoapMessage()

    Construct a SOAP request packet.

    Returns

    SOAP request packet.

    Throws

    Exception

  • public String getBodyPrefix()

    Obtain the node prefix of a request packet.

    Returns

    Node prefix of a request packet.

  • public String getCharset()

    Obtain the HTTP request encoding format.

    Returns

    HTTP request encoding format.

  • public int getConnectTimeout()

    Obtain the connection timeout interval.

    Returns

    Connection timeout.

  • public Object getContent()

    Obtain the request content.

    Returns

    Request content.

  • public String getContentType()

    Obtain the packet parameter type.

    Returns

    Packet parameter type.

  • public String getEnvelopePrefix()

    Obtain the envelope prefix.

    Returns

    Envelope prefix.

  • public String getHeader(String name)

    Obtain the request header value based on the request header name.

    Input Parameter

    name indicates the request header name.

    Returns

    Request header value corresponding to the request header name

  • public Map<String,String> getHeaders()

    Obtain request header information.

    Returns

    Request header information.

  • public String getMethod()

    Obtain the request method.

    Returns

    Request method.

  • public String getNamespace()

    Obtain the namespace.

    Returns

    Namespace.

  • public String getNamespacePrefix()

    Obtain the namespace prefix.

    Returns

    Namespace prefix.

  • public String getOperation()

    Obtain the operation name.

    Returns

    Operation name.

  • public String getParameter(String name)

    Obtain SOAP request parameters based on the specified name.

    Input Parameter

    name indicates the name of a SOAP request parameter.

    Returns

    SOAP request parameter.

  • public Map<String,String> getParameters()

    Obtain the SOAP request parameters.

    Returns

    SOAP request parameters.

  • public String getProtocol()

    Obtain the request protocol.

    Returns

    Request protocol.

  • public int getReadTimeout()

    Obtain the read timeout.

    Returns

    Read timeout.

  • public String getSoapAction()

    Obtain the operation request address.

    Returns

    Operation request address.

  • public String getUrl()

    Obtain the request address.

    Returns

    Request address.

  • public boolean isRedirects()

    Allow redirection or not.

    Returns

    true or false

  • public void setBodyPrefix(String bodyPrefix)

    Set the node prefix of a request packet.

    Input Parameter

    bodyPrefix indicates the node prefix of a request packet.

  • public void setCharset(String charset)

    Set the HTTP request encoding format.

    Input Parameter

    charset indicates the encoding foramt of the HTTP request.

  • public void setConnectTimeout(int connectTimeout)

    Set the connection timeout interval.

    Input Parameter

    Connection timeout indicates the connection timeout interval.

  • public void setContent(Object content)

    Set the request content.

    Input Parameter

    content indicates the request content.

  • public void setContentType(String contentType)

    Set the packet parameter type.

    Input Parameter

    contentType indicates the packet parameter type.

  • public void setEnvelopePrefix(String envelopePrefix)

    Set the envelope prefix.

    Input Parameter

    envelopePrefix indicates the envelope prefix.

  • public void setHeader(String name, String value)

    Set request header information.

    Input Parameter

    • name indicates the request header name.
    • value indicates the request header value.
  • public void setHeaders(Map<String,String> headers)

    Set request header information.

    Input Parameter

    headers indicates the request header information.

  • public void setMethod(String method)

    Set the request method.

    Input Parameter

    method indicates a request method.

  • public void setNamespace(String namespace)

    Set the namespace.

    Input Parameter

    namespace indicates the namespace.

  • public void setNamespacePrefix(String namespacePrefix)

    Set the namespace prefix.

    Input Parameter

    namespacePrefix indicates the namespace prefix.

  • public void setOperation(String operation)

    Set the operation name.

    Input Parameter

    operation indicates the operation name.

  • public void setParameter(String name, String value)

    Set the SOAP request parameters.

    Input Parameter

    • name indicates the name of a SOAP request parameter.
    • value indicates the value of a SOAP request parameter.
  • public void setParameters(Map<String,String> parameters)

    Set the SOAP request parameters.

    Input Parameter

    parameters indicates the SOAP request parameters.

  • public void setProtocol(String protocol)

    Set the request protocol.

    Input Parameter

    protocol indicates the request protocol.

  • public void setReadTimeout(int readTimeout)

    Set the read timeout.

    Input Parameter

    readTimeout indicates the read timeout interval.

  • public void setRedirects(boolean redirects)

    Set whether to redirect.

    Input Parameter

    redirects indicates whether to redirect.

  • public void setSoapAction(String soapAction)

    Set the operation request address.

    Input Parameter

    soapAction indicates the operation request address.

  • public void setUrl(String url)

    Set the request address.

    Input Parameter

    url indicates the request URL.

Usamos cookies para aprimorar nosso site e sua experiência. Ao continuar a navegar em nosso site, você aceita nossa política de cookies. Saiba mais

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback