}
std::list<Bundle> DBusSender::Request(const IEventInfo& info) {
- string appid = util::GetAppId();
+ string appid = info.GetOwner();
+ if (appid.length() == 0)
+ appid = util::GetAppId();
+
string method_name = EventInfo::GetString(info.GetEventType());
Bundle serialized = info.Serialize();
}
int DBusSender::RequestNumber(const IEventInfo& info) {
- string appid = util::GetAppId();
+ string appid = info.GetOwner();
+ if (appid.length() == 0)
+ appid = util::GetAppId();
+
string method_name = EventInfo::GetString(info.GetEventType());
Bundle serialized = info.Serialize();