Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

XMLRPCNET · XML-RPC.NET

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 671
  • Category: Open Source
  • Founded: Apr 3, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1153 - 1183 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1153 gpavoine@...
gpavoine... Send Email
Apr 3, 2009
2:11 pm
Up ! A year later i've got exactly the same problem and I can't find any solutions. When i try to define the return type like this (asp.net vb): '--The...
1155 gpavoine@...
gpavoine... Send Email
Apr 6, 2009
8:59 am
Hi all, I made few changes you can see bcause my last posted code wasn't good : '--The structure Public Structure structCategory Public category as...
1156 boris.shirokolov
boris.shirok... Send Email
Apr 13, 2009
7:25 am
does xml-rpc.net lib work with this response? .... <member> <name>SUPERCOMMISSION&lt;/name> <value> <nil/> </value></member> .......
1157 Charles Cook
charlescookuk Send Email
Apr 14, 2009
8:49 am
Hi Boris: there is currently no support for this. ... On Mon, Apr 13, 2009 at 8:24 AM, boris.shirokolov < ... [Non-text portions of this message have been...
1158 verynew
dineshp_832003 Send Email
Apr 14, 2009
12:11 pm
Hello everyone, Iam using the xmlrpc.net library with c#.net. In my server side iam having a function like this below. API = (('object_id', 'ASCII string', 1),...
1159 zbeckerman Send Email Apr 26, 2009
5:36 am
I have a method defined as: bool TheMethod (string[,] data, string value); in: public interface Client : IXmlRpcProxy However, when I try to instantiate my...
1160 Charles Cook
charlescookuk Send Email
Apr 27, 2009
5:26 pm
I'll have a look at this. ... [Non-text portions of this message have been removed]...
1161 mhook1981 Send Email Apr 28, 2009
11:46 am
I'm just adding a note to say how this problem was resolved. I found that the assembly files were missing so I could not compile any of the source projects. ...
1162 yahoogroups@...
richardshea98 Send Email
Apr 28, 2009
12:43 pm
Hi - I've got a well established piece of C# which calls a web-service but for various reasons that service is running much slower than normally at the moment....
1163 Charles Cook
charlescookuk Send Email
Apr 28, 2009
1:17 pm
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#2.4 ? ... [Non-text portions of this message have been removed]...
1164 yahoogroups@...
richardshea98 Send Email
Apr 28, 2009
9:57 pm
... Thanks for that. I had read that but I really was hoping to lean on someone elses experience of similar situations - I wasn't even sure that the...
1165 Zev Beckerman
zbeckerman Send Email
May 4, 2009
4:30 pm
Currently, there are DLLs for .NET 1.1 and .NET 2.0.   Are there plans to release a .NET 3.0 compatible DLL? Is there are work to be done for this? Or do you...
1166 Charles Cook
charlescookuk Send Email
May 4, 2009
4:43 pm
Hi Zev: the .NET 2.0 version will work fine. ... [Non-text portions of this message have been removed]...
1167 yahoogroups@...
richardshea98 Send Email
May 6, 2009
11:26 pm
... I just wanted to let people searching the archives know that I made use of the timeout feature which Charles highlit here and it did the job perfectly. The...
1168 -Not revealed-
cupcakeboy Send Email
May 12, 2009
6:36 am
I have a client app that needs to call a method with a variable number of parameters of different types. I know that I need to do this using an array of...
1169 zbethem Send Email May 13, 2009
4:29 pm
Hi all. I'm referencing the CookComputing XMLRPC Dll for an XML Client that I've coded in C#. I also have some code the acts as a XMLRPC server for the...
1170 zbethem Send Email May 14, 2009
12:22 am
Hi all. I'm using the CookComputing XMLRPC dll for an XML client. I've also modified some existing code for an XMLRPC server. Everything is in C#. Here's the...
1171 Charles Cook
charlescookuk Send Email
May 14, 2009
11:28 am
This is not a valid XML-RPC response. Each item within an array needed to be a child of a <value> element. This is not the case for the inner array items here....
1172 Charles Cook
charlescookuk Send Email
May 14, 2009
11:58 am
Looks like you can either pass an instance of XmlRpcStruct or a struct with optional members. ... [Non-text portions of this message have been removed]...
1173 brianmcdaniel1 Send Email May 14, 2009
9:54 pm
All, I'm running drupal 6.x on a local Vista machine using wamp. I'm trying to use the drupal services (xmlrpc and node.get and node.save services) in...
1174 Charles Cook
charlescookuk Send Email
May 15, 2009
8:40 am
Hi Brian: sounds like a Drupal config problem. I found this: http://drupal.org/node/33832 ... On Thu, May 14, 2009 at 10:12 PM, brianmcdaniel1 ... [Non-text...
1175 brianmcdaniel1 Send Email May 15, 2009
9:18 pm
Thanks for the info Charles, thanks for the xmlrpc.net class. I ended up using the metaWeblog stuff for the RPCMethod and that works, never could get the...
1176 Muhammad Farooq
mfarooqkhan78 Send Email
May 19, 2009
7:49 am
Hi Guyz, I am absolutely new to xml-rpc and web technologies, so please excuse me for some of very obvious questions. My task is to create an xml-rpc interface...
1177 Muhammad Farooq
mfarooqkhan78 Send Email
May 19, 2009
2:23 pm
Hi Guyz, The original problem is solved. Now i have one more question and like to have some expert opinion from you guys. I have one application running on...
1178 dadeda2002 Send Email May 27, 2009
4:40 am
Hello, I am playing around with the XML-RPC-(CF)NET classes and want to send a Object, that has nested objects inside, to the server, but a exception is thrown...
1179 Charles Cook
charlescookuk Send Email
May 28, 2009
1:55 pm
Hi Hans: I had a quick look at this: for class/struct members to be serialized they need to be public and also List<T> is not supported (you have to use an...
1180 Hans Bert
dadeda2002 Send Email
May 28, 2009
7:24 pm
Hey Charles, I have already found out that the members must be public, but it didn't work. But thanks fot the hint that lists are not supported. I'll test it...
1181 Lynn Walker
lwalkerams Send Email
May 29, 2009
8:24 pm
Hi,   I am very new to this group and xmlrpc.   However, I need to modify an application written in VB6.0 to pass information from this application to a web...
1182 Ajay Bothra
ajaybothra Send Email
Jun 1, 2009
2:39 pm
Am using CookComputing.XmlRpc library to post blogs to Live Spaces using the MetaWeblog API. Am using the newPost() method of the API. I try to add the...
1183 mister_roark Send Email Jun 1, 2009
5:03 pm
Hello all, Has anybody done a Shopatron integration using XMLRPCNET? I'd like to use it in my project - great project, docs and community - but I'm concerned...
Messages 1153 - 1183 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help