November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Hi,
Not sure I understand your question, but when you update inventories via ServiceAPI, it will still raise the InventoryUpdated event.
Do you run ServiceAPI in same instance with your website?
/Q
Hi
@Quan: I have service API in another instance, and its not trigger.
@Khan: I am importing inventory status of a product using Service APi.
/Juan
Does it trigger other events, such as catalog events when you import catalog?
It's probably the setting for Framework Events is not correct,
/Q
@Quan: No events trigger when I import using Service API.
Where is the setting for Framework Events?
Juan
By default in web.config you'll have something like this, make sure to uncomment those:
<services> <service name="EPiServer.Events.Remote.EventReplication" behaviorConfiguration="DebugServiceBehaviour"> <!-- Uncomment this endpoint and the "RemoteEventServiceClientEndPoint" to enable remote events <endpoint name="RemoteEventServiceEndPoint" contract="EPiServer.Events.ServiceModel.IEventReplication" binding="customBinding" bindingConfiguration="RemoteEventsBinding" address="soap.udp://239.255.255.19:5000/RemoteEventService"/>--> <endpoint name="RemoteEventServiceEndPoint" contract="EPiServer.Events.ServiceModel.IEventReplication" binding="customBinding" bindingConfiguration="RemoteEventsBinding" address="soap.udp://239.255.255.19:5000/RemoteEventService" /> </service> <!-- Enable remote service --> </services> <client> <!-- Uncomment this endpoint and the "RemoteEventServiceEndPoint" to enable remote events <endpoint name="RemoteEventServiceClientEndPoint" address="soap.udp://239.255.255.19:5000/RemoteEventService" binding="customBinding" bindingConfiguration="RemoteEventsBinding" contract="EPiServer.Events.ServiceModel.IEventReplication"/>--> <endpoint name="RemoteEventServiceClientEndPoint" address="soap.udp://239.255.255.19:5000/RemoteEventService" binding="customBinding" bindingConfiguration="RemoteEventsBinding" contract="EPiServer.Events.ServiceModel.IEventReplication" /> </client>
/Q
Hi
I trying to trigger the InventoryUpdated, Its not possible to update the inventory in the new Gui, i mean the quantity in stock.
I am using service API to update the "/episerverapi/commerce/entries/{CODE}/inventories/"
Its is possible to trigger some event when using service API to update the warehouse stock?
I have try to use:
and
/Juan