SOAP API built in function not working after custom function cteratedCustom API v2 not workingMagento : Soap api not workingAPI Magento catalogCategoryUpdate function not working after moving to SSLMagento 2 SOAP api not workingMagento catalog product list soap API is not workingTimeout accessing SOAP API (Magento 1.9.x) after clearing cachesSearch Criteria not working with Soap APICustom API returning undefined functionMagento Soap Apisoap api is not working in magento 1.9
Why do UK politicians seemingly ignore opinion polls on Brexit?
Is there a familial term for apples and pears?
Does a dangling wire really electrocute me if I'm standing in water?
Symmetry in quantum mechanics
OA final episode explanation
Does it makes sense to buy a new cycle to learn riding?
What happens when a metallic dragon and a chromatic dragon mate?
What's the difference between repeating elections every few years and repeating a referendum after a few years?
Is every set a filtered colimit of finite sets?
Information to fellow intern about hiring?
Is it wise to focus on putting odd beats on left when playing double bass drums?
Are cabin dividers used to "hide" the flex of the airplane?
What to wear for invited talk in Canada
How to move the player while also allowing forces to affect it
Is "plugging out" electronic devices an American expression?
Why was the "bread communication" in the arena of Catching Fire left out in the movie?
Could a US political party gain complete control over the government by removing checks & balances?
Unbreakable Formation vs. Cry of the Carnarium
Is Social Media Science Fiction?
Are white and non-white police officers equally likely to kill black suspects?
What is the offset in a seaplane's hull?
Shall I use personal or official e-mail account when registering to external websites for work purpose?
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
How would photo IDs work for shapeshifters?
SOAP API built in function not working after custom function cterated
Custom API v2 not workingMagento : Soap api not workingAPI Magento catalogCategoryUpdate function not working after moving to SSLMagento 2 SOAP api not workingMagento catalog product list soap API is not workingTimeout accessing SOAP API (Magento 1.9.x) after clearing cachesSearch Criteria not working with Soap APICustom API returning undefined functionMagento Soap Apisoap api is not working in magento 1.9
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
app/code/local/Envanto/customapimodule/etc/api.xml
<?xml version="1.0"?>
<config>
<api>
<resources>
<customapimodule_product translate="title" module="customapimodule">
<model>customapimodule/product_api</model>
<title>Demo Custommoduleapi API</title>
<acl>customapimodule/product</acl>
<methods>
<list translate="title" module="customapimodule">
<title>List of products</title>
<method>items</method>
</list>
<info translate="title" module="portfolio"><!-- project details -->
<title>Retrieve product info</title>
<acl>customapimodule/product/info</acl>
</info>
</methods>
</customapimodule_product>
</resources>
<resources_alias>
<product>customapimodule_product</product>
</resources_alias>
<v2>
<resources_function_prefix>
<product>customapimoduleProduct</product>
</resources_function_prefix>
</v2>
<acl>
<resources>
<customapimodule translate="title" module="customapimodule">
<title>Products</title>
<sort_order>5</sort_order>
<product translate="title" module="customapimodule">
<title>Product data</title>
<info translate="title" module="customapimodule">
<title>Info</title>
</info>
</product>
</customapimodule>
</resources>
</acl>
</api>
</config>
app/code/local/Envanto/customapimodule/etc/wsdl.xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:typens="urn:var wsdl.name" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"
name="var wsdl.name" targetNamespace="urn:var wsdl.name">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/" />
<complexType name="fieldInfo">
<sequence>
<element name="entity_id" type="xsd:string"/>
<element name="name" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="fieldInfoArray">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:fieldInfo[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductListEntity"><!-- define type for project list -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
<complexType name="customapimoduleProductListEntityArray"><!-- define type array of projects -->
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:customapimoduleProductListEntity[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductInfoEntity"><!-- define type for retrieve info -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
</schema>
</types>
<message name="customapimoduleProductListRequest">
<part name="sessionId" type="xsd:string" />
</message>
<message name="customapimoduleProductListResponse">
<part name="products" type="typens:fieldInfoArray" />
</message>
<message name="customapimoduleProductInfoRequest">
<part name="sessionId" type="xsd:string" />
<part name="productSku" type="xsd:string" />
</message>
<message name="customapimoduleProductInfoResponse">
<part name="result" type="typens:fieldInfoArray" />
</message>
<portType name="var wsdl.handlerPortType">
<operation name="customapimoduleProductList">
<documentation>List of products</documentation>
<input message="typens:customapimoduleProductListRequest" />
<output message="typens:customapimoduleProductListResponse" />
</operation>
<operation name="customapimoduleProductInfo">
<documentation>Retrieve product info</documentation>
<input message="typens:customapimoduleProductInfoRequest" />
<output message="typens:customapimoduleProductInfoResponse" />
</operation>
</portType>
<binding name="var wsdl.handlerBinding" type="typens:var wsdl.handlerPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="customapimoduleProductList">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
<operation name="customapimoduleProductInfo">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="var wsdl.nameService">
<port name="var wsdl.handlerPort" binding="typens:var wsdl.handlerBinding">
<soap:address location="var wsdl.url" />
</port>
</service>
</definitions>
My problem is that now custom function called but in built function like "catalogProductInfo" not called give error Invalid API PATH.
magento-1.9 soap-api-v2
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
app/code/local/Envanto/customapimodule/etc/api.xml
<?xml version="1.0"?>
<config>
<api>
<resources>
<customapimodule_product translate="title" module="customapimodule">
<model>customapimodule/product_api</model>
<title>Demo Custommoduleapi API</title>
<acl>customapimodule/product</acl>
<methods>
<list translate="title" module="customapimodule">
<title>List of products</title>
<method>items</method>
</list>
<info translate="title" module="portfolio"><!-- project details -->
<title>Retrieve product info</title>
<acl>customapimodule/product/info</acl>
</info>
</methods>
</customapimodule_product>
</resources>
<resources_alias>
<product>customapimodule_product</product>
</resources_alias>
<v2>
<resources_function_prefix>
<product>customapimoduleProduct</product>
</resources_function_prefix>
</v2>
<acl>
<resources>
<customapimodule translate="title" module="customapimodule">
<title>Products</title>
<sort_order>5</sort_order>
<product translate="title" module="customapimodule">
<title>Product data</title>
<info translate="title" module="customapimodule">
<title>Info</title>
</info>
</product>
</customapimodule>
</resources>
</acl>
</api>
</config>
app/code/local/Envanto/customapimodule/etc/wsdl.xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:typens="urn:var wsdl.name" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"
name="var wsdl.name" targetNamespace="urn:var wsdl.name">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/" />
<complexType name="fieldInfo">
<sequence>
<element name="entity_id" type="xsd:string"/>
<element name="name" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="fieldInfoArray">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:fieldInfo[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductListEntity"><!-- define type for project list -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
<complexType name="customapimoduleProductListEntityArray"><!-- define type array of projects -->
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:customapimoduleProductListEntity[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductInfoEntity"><!-- define type for retrieve info -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
</schema>
</types>
<message name="customapimoduleProductListRequest">
<part name="sessionId" type="xsd:string" />
</message>
<message name="customapimoduleProductListResponse">
<part name="products" type="typens:fieldInfoArray" />
</message>
<message name="customapimoduleProductInfoRequest">
<part name="sessionId" type="xsd:string" />
<part name="productSku" type="xsd:string" />
</message>
<message name="customapimoduleProductInfoResponse">
<part name="result" type="typens:fieldInfoArray" />
</message>
<portType name="var wsdl.handlerPortType">
<operation name="customapimoduleProductList">
<documentation>List of products</documentation>
<input message="typens:customapimoduleProductListRequest" />
<output message="typens:customapimoduleProductListResponse" />
</operation>
<operation name="customapimoduleProductInfo">
<documentation>Retrieve product info</documentation>
<input message="typens:customapimoduleProductInfoRequest" />
<output message="typens:customapimoduleProductInfoResponse" />
</operation>
</portType>
<binding name="var wsdl.handlerBinding" type="typens:var wsdl.handlerPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="customapimoduleProductList">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
<operation name="customapimoduleProductInfo">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="var wsdl.nameService">
<port name="var wsdl.handlerPort" binding="typens:var wsdl.handlerBinding">
<soap:address location="var wsdl.url" />
</port>
</service>
</definitions>
My problem is that now custom function called but in built function like "catalogProductInfo" not called give error Invalid API PATH.
magento-1.9 soap-api-v2
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
@Ghulam.M Can you help me?
– Ashutosh Gupta
9 hours ago
add a comment |
app/code/local/Envanto/customapimodule/etc/api.xml
<?xml version="1.0"?>
<config>
<api>
<resources>
<customapimodule_product translate="title" module="customapimodule">
<model>customapimodule/product_api</model>
<title>Demo Custommoduleapi API</title>
<acl>customapimodule/product</acl>
<methods>
<list translate="title" module="customapimodule">
<title>List of products</title>
<method>items</method>
</list>
<info translate="title" module="portfolio"><!-- project details -->
<title>Retrieve product info</title>
<acl>customapimodule/product/info</acl>
</info>
</methods>
</customapimodule_product>
</resources>
<resources_alias>
<product>customapimodule_product</product>
</resources_alias>
<v2>
<resources_function_prefix>
<product>customapimoduleProduct</product>
</resources_function_prefix>
</v2>
<acl>
<resources>
<customapimodule translate="title" module="customapimodule">
<title>Products</title>
<sort_order>5</sort_order>
<product translate="title" module="customapimodule">
<title>Product data</title>
<info translate="title" module="customapimodule">
<title>Info</title>
</info>
</product>
</customapimodule>
</resources>
</acl>
</api>
</config>
app/code/local/Envanto/customapimodule/etc/wsdl.xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:typens="urn:var wsdl.name" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"
name="var wsdl.name" targetNamespace="urn:var wsdl.name">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/" />
<complexType name="fieldInfo">
<sequence>
<element name="entity_id" type="xsd:string"/>
<element name="name" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="fieldInfoArray">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:fieldInfo[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductListEntity"><!-- define type for project list -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
<complexType name="customapimoduleProductListEntityArray"><!-- define type array of projects -->
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:customapimoduleProductListEntity[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductInfoEntity"><!-- define type for retrieve info -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
</schema>
</types>
<message name="customapimoduleProductListRequest">
<part name="sessionId" type="xsd:string" />
</message>
<message name="customapimoduleProductListResponse">
<part name="products" type="typens:fieldInfoArray" />
</message>
<message name="customapimoduleProductInfoRequest">
<part name="sessionId" type="xsd:string" />
<part name="productSku" type="xsd:string" />
</message>
<message name="customapimoduleProductInfoResponse">
<part name="result" type="typens:fieldInfoArray" />
</message>
<portType name="var wsdl.handlerPortType">
<operation name="customapimoduleProductList">
<documentation>List of products</documentation>
<input message="typens:customapimoduleProductListRequest" />
<output message="typens:customapimoduleProductListResponse" />
</operation>
<operation name="customapimoduleProductInfo">
<documentation>Retrieve product info</documentation>
<input message="typens:customapimoduleProductInfoRequest" />
<output message="typens:customapimoduleProductInfoResponse" />
</operation>
</portType>
<binding name="var wsdl.handlerBinding" type="typens:var wsdl.handlerPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="customapimoduleProductList">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
<operation name="customapimoduleProductInfo">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="var wsdl.nameService">
<port name="var wsdl.handlerPort" binding="typens:var wsdl.handlerBinding">
<soap:address location="var wsdl.url" />
</port>
</service>
</definitions>
My problem is that now custom function called but in built function like "catalogProductInfo" not called give error Invalid API PATH.
magento-1.9 soap-api-v2
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
app/code/local/Envanto/customapimodule/etc/api.xml
<?xml version="1.0"?>
<config>
<api>
<resources>
<customapimodule_product translate="title" module="customapimodule">
<model>customapimodule/product_api</model>
<title>Demo Custommoduleapi API</title>
<acl>customapimodule/product</acl>
<methods>
<list translate="title" module="customapimodule">
<title>List of products</title>
<method>items</method>
</list>
<info translate="title" module="portfolio"><!-- project details -->
<title>Retrieve product info</title>
<acl>customapimodule/product/info</acl>
</info>
</methods>
</customapimodule_product>
</resources>
<resources_alias>
<product>customapimodule_product</product>
</resources_alias>
<v2>
<resources_function_prefix>
<product>customapimoduleProduct</product>
</resources_function_prefix>
</v2>
<acl>
<resources>
<customapimodule translate="title" module="customapimodule">
<title>Products</title>
<sort_order>5</sort_order>
<product translate="title" module="customapimodule">
<title>Product data</title>
<info translate="title" module="customapimodule">
<title>Info</title>
</info>
</product>
</customapimodule>
</resources>
</acl>
</api>
</config>
app/code/local/Envanto/customapimodule/etc/wsdl.xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:typens="urn:var wsdl.name" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"
name="var wsdl.name" targetNamespace="urn:var wsdl.name">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/" />
<complexType name="fieldInfo">
<sequence>
<element name="entity_id" type="xsd:string"/>
<element name="name" type="xsd:string"/>
</sequence>
</complexType>
<complexType name="fieldInfoArray">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:fieldInfo[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductListEntity"><!-- define type for project list -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
<complexType name="customapimoduleProductListEntityArray"><!-- define type array of projects -->
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="typens:customapimoduleProductListEntity[]" />
</restriction>
</complexContent>
</complexType>
<complexType name="customapimoduleProductInfoEntity"><!-- define type for retrieve info -->
<all>
<element name="entity_id" type="xsd:string" minOccurs="1" />
<element name="name" type="xsd:string" minOccurs="1" />
<element name="description" type="xsd:string" minOccurs="0" />
<element name="status" type="xsd:string" minOccurs="0" />
<element name="created_at" type="xsd:string" minOccurs="1" />
<element name="updated_at" type="xsd:string" minOccurs="1" />
</all>
</complexType>
</schema>
</types>
<message name="customapimoduleProductListRequest">
<part name="sessionId" type="xsd:string" />
</message>
<message name="customapimoduleProductListResponse">
<part name="products" type="typens:fieldInfoArray" />
</message>
<message name="customapimoduleProductInfoRequest">
<part name="sessionId" type="xsd:string" />
<part name="productSku" type="xsd:string" />
</message>
<message name="customapimoduleProductInfoResponse">
<part name="result" type="typens:fieldInfoArray" />
</message>
<portType name="var wsdl.handlerPortType">
<operation name="customapimoduleProductList">
<documentation>List of products</documentation>
<input message="typens:customapimoduleProductListRequest" />
<output message="typens:customapimoduleProductListResponse" />
</operation>
<operation name="customapimoduleProductInfo">
<documentation>Retrieve product info</documentation>
<input message="typens:customapimoduleProductInfoRequest" />
<output message="typens:customapimoduleProductInfoResponse" />
</operation>
</portType>
<binding name="var wsdl.handlerBinding" type="typens:var wsdl.handlerPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="customapimoduleProductList">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
<operation name="customapimoduleProductInfo">
<soap:operation soapAction="urn:var wsdl.handlerAction" />
<input>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body namespace="urn:var wsdl.name" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="var wsdl.nameService">
<port name="var wsdl.handlerPort" binding="typens:var wsdl.handlerBinding">
<soap:address location="var wsdl.url" />
</port>
</service>
</definitions>
My problem is that now custom function called but in built function like "catalogProductInfo" not called give error Invalid API PATH.
magento-1.9 soap-api-v2
magento-1.9 soap-api-v2
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 9 hours ago
Ghulam.M
30111
30111
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 10 hours ago
Ashutosh GuptaAshutosh Gupta
11
11
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Ashutosh Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
@Ghulam.M Can you help me?
– Ashutosh Gupta
9 hours ago
add a comment |
@Ghulam.M Can you help me?
– Ashutosh Gupta
9 hours ago
@Ghulam.M Can you help me?
– Ashutosh Gupta
9 hours ago
@Ghulam.M Can you help me?
– Ashutosh Gupta
9 hours ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Ashutosh Gupta is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269183%2fsoap-api-built-in-function-not-working-after-custom-function-cterated%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ashutosh Gupta is a new contributor. Be nice, and check out our Code of Conduct.
Ashutosh Gupta is a new contributor. Be nice, and check out our Code of Conduct.
Ashutosh Gupta is a new contributor. Be nice, and check out our Code of Conduct.
Ashutosh Gupta is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269183%2fsoap-api-built-in-function-not-working-after-custom-function-cterated%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@Ghulam.M Can you help me?
– Ashutosh Gupta
9 hours ago