Recent Discussions in XML-RPC.NET


To join this group, send a blank email to XMLRPCNET-subscribe@yahoogroups.com or visit http://groups.yahoo.com/group/XMLRPCNET



  1. Re: Need help with LiveJournal
    ... I've just started playing around with XMLRPC and livejournal, and I'm using the following definition for the login command, which it appears to be working...
    - Tue, 04 Nov 2008 14:31:38 GMT
  2. Re: Proxy Authentication Required
    I just figured out what's causing this. The internet settings on my workstation are configured to go through a proxy even though this particular XML-RPC...
    - Wed, 29 Oct 2008 22:52:34 GMT
  3. Proxy Authentication Required
    Hello, I'm seeing a strange error with a proxy that I've generated. The first time I make a call with the client proxy, it works fine. Once I make a second...
    - Wed, 29 Oct 2008 22:35:25 GMT
  4. Re: Configuration error: Could not load file or assembly...
    OK, I managed to make the service work. However, by now it should be located in the root directory (any indication of the relative path to the assembly in...
    - Wed, 29 Oct 2008 09:59:59 GMT
  5. Re: Configuration error: Could not load file or assembly...
    I'm using a virtual machine with Windows 2003 Server Enterprise edition. All the recent updates (including .NET Framework Version 2.0) are installed. I checked...
    - Tue, 28 Oct 2008 07:05:14 GMT
  6. Re: Configuration error: Could not load file or assembly...
    If you plan to deploy a .NET application to a machine that did not install .NET, you MUST install the .NET redistributables ...
    - Tue, 28 Oct 2008 03:29:37 GMT
  7. Re: string response instead of struct
    thank you very much for replying. I know how to build a proxy interface. I'll try to explain the problem better: this is the response from last.fm: <?xml...
    - Mon, 27 Oct 2008 21:08:56 GMT
  8. Re: Configuration error: Could not load file or assembly...
    Thanks Zev for the advice. However, DependencyWalker does not seem to reveal any problem with expected dlls except of one missing function in MPR.DLL, but I...
    - Mon, 27 Oct 2008 19:46:10 GMT
  9. Re: Configuration error: Could not load file or assembly...
    Download dependency checker at: http://www.dependencywalker.com/ This will allow you to see what DLLs (paths) are expected and which are missing. This will...
    - Mon, 27 Oct 2008 18:42:03 GMT
  10. Configuration error: Could not load file or assembly...
    Hi guys, sorry for posting once again the same thing already discussed here about how to implement and configure the service in the web.config file. Still I...
    - Mon, 27 Oct 2008 14:44:17 GMT
  11. Re: string response instead of struct
    ... This looks like a good XML-RPC response. ... See the FAQ. Define a proxy interface for the API and it will all be done automatically, it will be just...
    - Mon, 27 Oct 2008 01:05:32 GMT
  12. string response instead of struct
    Hi all, I'm new to xml-rpc architecture and to xmlrpcnet. I'm playing with last.fm web service api. I succesfully managed to send a request, but responses are...
    - Sun, 26 Oct 2008 23:52:34 GMT
  13. Re: Cannot extend XmlRpcType
    Hi again, I checked the problem more thoroughly and I found that IsAssignableFrom also matches 'interfaces'. This can miss identify other data types. Therefore...
    - Mon, 20 Oct 2008 05:52:40 GMT
  14. Cannot extend XmlRpcType
    Hi all, I discovered that I cannot extend XmlRpcType. It's not a problem with the XmlRpcType class itself, but with the XmlRpcService class that identifies the...
    - Sat, 18 Oct 2008 14:35:16 GMT
  15. Re: python tuple equivalent in C# for XML-RPC
    Hi Charles, Thanks. I used an array of two object arrays it works. ex: object[,] obj = new object[1,1]; object[] oArray = new object[SIZE]; oArray[i] = obj; ...
    - Tue, 26 Aug 2008 10:05:58 GMT