You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pgina-devel
When I'm using webservices this line throw an exeption:
DirectoryInfo dir =
Directory.GetParent(args.RequestingAssembly.Location);
Because args.RequestingAssembly.Location == string.empty.
Resolve is add before:
// Required for webservices
if (args.RequestingAssembly.Location == string.Empty)
{
m_logger.ErrorFormat("Unable to resolve dependency for {0}",
args.Name);
return null;
}
Nate Yocom
unread,
May 21, 2012, 3:26:11 PM5/21/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pgina...@googlegroups.com
Interesting. What exactly do you mean by webservices?
Is args.RequestingAssembly.CodeBase set?
mdghost
unread,
May 22, 2012, 3:14:52 AM5/22/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pgina...@googlegroups.com
I have added Web Reference to soap web service. And at runtime PluginLoader try to load a file, but it has no location. It is tmp dll or 'something'.