Search the web
Sign In
New User? Sign Up
XMLRPCNET · XML-RPC.NET
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1124 - 1155 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1124
Hello, I need to be able to connect to a supplier using a ASP.NET version of this PHP script that was provided: ______________________________________ <?php ...
tijdspeel
Offline Send Email
Feb 11, 2009
7:42 am
1125
I tried some other methods, but all without success: <XmlRpcUrl("https://api.*****.***:9999/xmlrpc")> _ Public Interface MyProxy Inherits IXmlRpcProxy ...
tijdspeel
Offline Send Email
Feb 11, 2009
8:45 am
1126
You have defined the response type to be an integer but a struct is being returned. Try defining the returning type to be XmlRpcStruct and see what it ...
Charles Cook
charlescookuk
Offline Send Email
Feb 11, 2009
6:49 pm
1128
It returns: Key:DESCRIPTION Value:Authentication failed. Key:CODE Value:530 Key:RUNTIME Value:0,004 Key:QUEUETIME Value:0 (I added the "Key:" and " Value:")...
tijdspeel
Offline Send Email
Feb 11, 2009
7:35 pm
1129
Solved! You gave me to key to the solution! Interface Api <CookComputing.XmlRpc.XmlRpcMethod("Api.xcall")> _ Function xcall(ByVal myParameters As XmlRpcStruct)...
tijdspeel
Offline Send Email
Feb 11, 2009
7:49 pm
1130
... Correct, you need to build an XmlRpcStruct and send that. ... I don't know anything about VB, but in C#... XmlRpcStruct rpcStruct = new XmlRpcStruct(); ...
Adam Tauno Williams
ferillis2003
Offline Send Email
Feb 11, 2009
8:07 pm
1131
I was maybe a bit to quick... I noticed that the real values that should be return now are set to "CookComputing.XmlRpc.XmlRpcStruct". The problem now it how...
tijdspeel
Offline Send Email
Feb 11, 2009
9:20 pm
1132
... Enumerate the struct; you can treat and XmlRpcStruct just like a Hastable. foreach(object key in struct.Keys) Console.WriteLine("{0}: {1}", key,...
Adam Tauno Williams
ferillis2003
Offline Send Email
Feb 11, 2009
9:29 pm
1133
I change my code like this: Dim result As XmlRpcStruct = myProxy.xcall(myParameters) For Each d As DictionaryEntry In result If Trim(UCase(d.Key.ToString())) =...
tijdspeel
Offline Send Email
Feb 11, 2009
10:08 pm
1134
... I don't see the problem, you got a response; the response is a struct (dictionary) with 6 keys (DOMAIN, LIMIT, TOTAL, COUNT, LAST, and FIRST). Values are...
Adam Tauno Williams
ferillis2003
Offline Send Email
Feb 11, 2009
11:49 pm
1135
The problem is that I am unable to read the values from this PROPERTY container, while the reading of the keys is no problem. In my code I have no option to...
tijdspeel
Offline Send Email
Feb 12, 2009
6:32 am
1136
Hello, Did you find a solution for this problem? I think to have the same issue: http://tech.groups.yahoo.com/group/XMLRPCNET/message/1135 Thanks ... the ... ...
tijdspeel
Offline Send Email
Feb 12, 2009
6:40 am
1137
I have found the solution. I had to read the value as an array, not as a string. This is how it finally looks like: For Each d As DictionaryEntry In result If...
tijdspeel
Offline Send Email
Feb 12, 2009
7:05 am
1138
Does anyone know how to use XMLRPC to upload a ZIP file? Thanks in advance. John...
jpphysics
Offline Send Email
Mar 6, 2009
8:27 pm
1139
Hi John: you will have to supply more information. Supply details of the XML-RPC api you are wanting to use....
charlescookuk
Offline Send Email
Mar 7, 2009
10:40 am
1140
Actually, I got the upload to work as long as it is relativly small. (For now < 5 MB has been tested to work.) John ... -- John P. Greiner Mechanical Engineer...
John Greiner
jpphysics
Offline Send Email
Mar 9, 2009
5:49 am
1141
... you can probably base64 encode it and send it as data....
brian.guarraci
Offline Send Email
Mar 9, 2009
6:47 am
1142
i have response from service. If declare method as int32 MyMethod() i get first response node (0). But i neeed get third value <int>961984</int> How i must...
boris.shirokolov
boris.shirok...
Offline Send Email
Mar 16, 2009
8:48 am
1143
Hi Boris: this is not valid XML-RPC - only one value can be returned in the response....
charlescookuk
Offline Send Email
Mar 16, 2009
9:02 am
1144
I'm having a hard time seting the property in VB.net. Here is the code in c# [XmlRpcMethod("artist.getInfo", StructParams = true)] iin VB.NET ...
guylafontaine@...
guylafontain...
Offline Send Email
Mar 17, 2009
8:23 pm
1145
hi! may be StructParams := true ?...
boris.shirokolov
boris.shirok...
Offline Send Email
Mar 18, 2009
7:35 am
1146
i need make xmlrpc call from ms sql database. CookComputing.XmlRpcV2 requered System.Web System.Web requered System.EnterpriseServices ...
boris.shirokolov
boris.shirok...
Offline Send Email
Mar 18, 2009
7:40 am
1147
... Did not work, I added another method in XmlRpcMethodAttribute.cs public XmlRpcMethodAttribute(string method,bool StructPara) { this.method = method; ...
guylafontaine@...
guylafontain...
Offline Send Email
Mar 18, 2009
2:00 pm
1148
<XmlRpcMethod("artist.getInfo", StructParams:=True)> should work ok....
charlescookuk
Offline Send Email
Mar 18, 2009
2:28 pm
1149
The XML-RPC.NET dll has a reference to the System.Web assembly, which is required by some of the server-side code. In the next release the server code will be...
charlescookuk
Offline Send Email
Mar 18, 2009
2:32 pm
1150
Hi, Is it possible to use a pre-established SslStream (or some kind of stream) for XMLRPC.NET to use? I need to bypass a non-standard proxy manually, then...
valmont@...
valmont...
Offline Send Email
Mar 20, 2009
6:59 am
1151
Hi all, What the best way to log XML-RPC server (Hosted by HttpListener) requests and their responses? Thanks a lot, Yochai....
yochaizv
Offline Send Email
Mar 24, 2009
11:16 am
1152
I would suggest using Log4NET (http://logging.apache.org/log4net/index.html). For the requests, since you are writing your own server, you just output the log...
Zev Beckerman
zbeckerman
Offline Send Email
Mar 24, 2009
6:06 pm
1153
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...
gpavoine@...
gpavoine...
Offline Send Email
Apr 3, 2009
2:11 pm
1155
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...
gpavoine@...
gpavoine...
Offline Send Email
Apr 6, 2009
8:59 am
Messages 1124 - 1155 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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