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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 1060 - 1089 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#1060 From: "pearce_w_j" <billpea@...>
Date: Wed Jul 16, 2008 10:29 am
Subject: How do I avoid using a hard coded <XmlRpcUrl("")>?
pearce_w_j
Send Email Send Email
 
Hello to all.

I am new to XML-RPC and am trying to create a .NET client to work with
self hosted Wordpress weblogs using the xmlrpc.php server.

I am happy with the example code at
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html and have got things working
for that sort of implementation. That code uses an interface definition
that hard codes the server url, eg:

<XmlRpcUrl("http://xyz.com/wp-dev/xmlrpc.php")> _
Public Interface IWP
    Inherits IXmlRpcProxy
    <XmlRpcMethod("wp.getCategories")> _
     Function getCategories(ByVal args() As String) As category()
End Interface

However, I want to be able to produce a client that is good for multiple
weblogs on different domains, so need to be able to set the url of the
server at runtime. I would be very grateful if I could learn how to do
that. I've searched high and low, but can't find anything to set me on
the right course.

Thank you and regards.

Bill



[Non-text portions of this message have been removed]

#1061 From: "charlescookuk" <chascook@...>
Date: Wed Jul 16, 2008 10:36 am
Subject: Re: How do I avoid using a hard coded <XmlRpcUrl("")>?
charlescookuk
Send Email Send Email
 
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#2.3

--- In XMLRPCNET@yahoogroups.com, "pearce_w_j" <billpea@...> wrote:
>
> Hello to all.
>
> I am new to XML-RPC and am trying to create a .NET client to work with
> self hosted Wordpress weblogs using the xmlrpc.php server.
>
> I am happy with the example code at
> http://www.xml-rpc.net/faq/xmlrpcnetfaq.html and have got things working
> for that sort of implementation. That code uses an interface definition
> that hard codes the server url, eg:
>
> <XmlRpcUrl("http://xyz.com/wp-dev/xmlrpc.php")> _
> Public Interface IWP
>    Inherits IXmlRpcProxy
>    <XmlRpcMethod("wp.getCategories")> _
>     Function getCategories(ByVal args() As String) As category()
> End Interface
>
> However, I want to be able to produce a client that is good for multiple
> weblogs on different domains, so need to be able to set the url of the
> server at runtime. I would be very grateful if I could learn how to do
> that. I've searched high and low, but can't find anything to set me on
> the right course.
>
> Thank you and regards.
>
> Bill
>
>
>
> [Non-text portions of this message have been removed]
>

#1062 From: "pearce_w_j" <billpea@...>
Date: Wed Jul 16, 2008 11:39 am
Subject: Re: How do I avoid using a hard coded <XmlRpcUrl("")>?
pearce_w_j
Send Email Send Email
 
Thank you so much, and with apologies for missing that in the FAQ. I
think my unfamiliarity with the concepts and terminology meant  that I
failed to spot that.

In the meantime I had found the same answer in the library's sample
code, in the Math App and had returned here to answer my own question,
but you beat me to it.

Many thanks and best wishes.

Bill

--- In XMLRPCNET@yahoogroups.com, "charlescookuk" <chascook@...> wrote:
>
> http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#2.3
>
> --- In XMLRPCNET@yahoogroups.com, "pearce_w_j" <billpea@> wrote:
> >
> > Hello to all.
> >
> > I am new to XML-RPC and am trying to create a .NET client to work with
> > self hosted Wordpress weblogs using the xmlrpc.php server.
> >
> > I am happy with the example code at
> > http://www.xml-rpc.net/faq/xmlrpcnetfaq.html and have got things
working
> > for that sort of implementation. That code uses an interface
definition
> > that hard codes the server url, eg:
> >
> > <XmlRpcUrl("http://xyz.com/wp-dev/xmlrpc.php")> _
> > Public Interface IWP
> >    Inherits IXmlRpcProxy
> >    <XmlRpcMethod("wp.getCategories")> _
> >     Function getCategories(ByVal args() As String) As category()
> > End Interface
> >
> > However, I want to be able to produce a client that is good for
multiple
> > weblogs on different domains, so need to be able to set the url of the
> > server at runtime. I would be very grateful if I could learn how to do
> > that. I've searched high and low, but can't find anything to set me on
> > the right course.
> >
> > Thank you and regards.
> >
> > Bill
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
>

#1063 From: "brian.demoore" <brian.demoore@...>
Date: Tue Jul 22, 2008 10:40 am
Subject: Accessing parameter-less method
brian.demoore
Send Email Send Email
 
Hi,

I am trying to access a parameter-less method via XMLRPC.net and i
have set UseEmptyParamsTag to false. Still I get an error saying that
'couldn't find </methodCall>'. I tried this with 2.3.2 and 2.3.0. Any
idea what the problem is?

thanks

#1064 From: Brian Demoore <brian.demoore@...>
Date: Wed Jul 23, 2008 7:02 am
Subject: accessing parameter-less methods
brian.demoore
Send Email Send Email
 
Hi,

I am trying to access a parameter-less method via XMLRPC.net and I
have set UseEmptyParamsTag to false. Still I get an error saying that
'couldn't find </methodCall>'. I tried this with 2.3.2 and 2.3.0. Any
idea what the problem is?

thanks
Brian





[Non-text portions of this message have been removed]

#1065 From: "charlescookuk" <chascook@...>
Date: Wed Jul 23, 2008 7:50 am
Subject: Re: accessing parameter-less methods
charlescookuk
Send Email Send Email
 
Hi Brian: I just checked and setting UseEmptyParamsTags to false works
as expected. You could check that the XML-RPC request is as you expect
by using one of the techniques described here:

http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#5.1

:Charles

--- In XMLRPCNET@yahoogroups.com, Brian Demoore <brian.demoore@...> wrote:
>
> Hi,
>
> I am trying to access a parameter-less method via XMLRPC.net and I
> have set UseEmptyParamsTag to false. Still I get an error saying that
> 'couldn't find </methodCall>'. I tried this with 2.3.2 and 2.3.0. Any
> idea what the problem is?
>
> thanks
> Brian
>
>
>
>
>
> [Non-text portions of this message have been removed]
>

#1066 From: Brian Demoore <brian.demoore@...>
Date: Wed Jul 23, 2008 9:27 am
Subject: Re: Re: accessing parameter-less methods
brian.demoore
Send Email Send Email
 
Hi Charles,

Thanks for the reply. Setting up the parameter didn't work for me. However, I
noticed that the UseEmptyParamsTag is not set in XmlRpcClinetProtocol.cs. I
added 'serializer.UseEmptyParamsTag = _useEmptyParamsTag' at line number 159 and
boom it worked. I don't know whether this is a general issue or just my computer
:).

Brian



----- Original Message ----
From: charlescookuk <chascook@...>
To: XMLRPCNET@yahoogroups.com
Sent: Wednesday, July 23, 2008 1:20:40 PM
Subject: [XMLRPCNET] Re: accessing parameter-less methods


Hi Brian: I just checked and setting UseEmptyParamsTags to false works
as expected. You could check that the XML-RPC request is as you expect
by using one of the techniques described here:

http://www.xml- rpc.net/faq/ xmlrpcnetfaq. html#5.1

:Charles

--- In XMLRPCNET@yahoogrou ps.com, Brian Demoore <brian.demoore@ ...> wrote:
>
> Hi,
>
> I am trying to access a parameter-less method via XMLRPC.net and I
> have set UseEmptyParamsTag to false. Still I get an error saying that
> 'couldn't find </methodCall> '. I tried this with 2.3.2 and 2.3.0. Any
> idea what the problem is?
>
> thanks
> Brian
>
>
>
>
>
> [Non-text portions of this message have been removed]
>






[Non-text portions of this message have been removed]

#1067 From: Janandith Jayawardena <janandith@...>
Date: Wed Jul 23, 2008 10:21 am
Subject: How can I send a C# Dictionary object using XMLRPC.NET
janandith
Send Email Send Email
 
Hi,

Is there a way I can send a C# dictionary object using XMLRPC.NET.

My requirement is to send a List like <string , int>.

janandith.




[Non-text portions of this message have been removed]

#1068 From: Janandith Jayawardena <janandith@...>
Date: Wed Jul 23, 2008 6:01 pm
Subject: python tuple equivalent in C# for XML-RPC
janandith
Send Email Send Email
 
Hi,

The XML-RPC server I talk with is in python. It needs a tuple as input. How can
I send it using C# and XML-RPC.NET

janandith





[Non-text portions of this message have been removed]

#1069 From: "charlescookuk" <chascook@...>
Date: Thu Jul 24, 2008 7:51 am
Subject: Re: python tuple equivalent in C# for XML-RPC
charlescookuk
Send Email Send Email
 
Hi Janandith: a tuple is an immutable list so I suppose an array is
what you need.

:Charles

--- In XMLRPCNET@yahoogroups.com, Janandith Jayawardena
<janandith@...> wrote:
>
> Hi,
>
> The XML-RPC server I talk with is in python. It needs a tuple as
input. How can I send it using C# and XML-RPC.NET
>
> janandith
>
>
>
>
>
> [Non-text portions of this message have been removed]
>

#1070 From: "charlescookuk" <chascook@...>
Date: Thu Jul 24, 2008 7:53 am
Subject: Re: How can I send a C# Dictionary object using XMLRPC.NET
charlescookuk
Send Email Send Email
 
Hi Janandith: use XmlRpcStruct which is derived from HashTable.

:Charles

--- In XMLRPCNET@yahoogroups.com, Janandith Jayawardena
<janandith@...> wrote:
>
> Hi,
>
> Is there a way I can send a C# dictionary object using XMLRPC.NET.
>
> My requirement is to send a List like <string , int>.
>
> janandith.
>
>
>
>
> [Non-text portions of this message have been removed]
>

#1071 From: "e_j_graham" <grahamemily@...>
Date: Wed Jul 30, 2008 3:15 pm
Subject: Java XMLRPC to XMLRPCNET
e_j_graham
Send Email Send Email
 
I'm new to XMLRPC.  Trying to figure out how to convert an XMLRPC
call written in Java to call the same service from .NET app using
XMLRPCNET.  Here is a snippet from the Java (I'm basically just
interested in how to convert the last line of this code in order to
access the same service and method using CookComputing library):

  private static void executeDelete(String abisIP, String dataSource,
String dataSourceNbr)
         throws Exception
     {

         //DeleteData Structure
         Hashtable deleteData = new Hashtable();
         deleteData.put("username", "lab exercises");

         //Identity Structure
         Hashtable identity = new Hashtable();
         identity.put("dataSource", dataSource);
         identity.put("dataSourceNbr", dataSourceNbr);
         deleteData.put("identity", identity);

         //Execute the delete
         Vector v = new Vector();
         v.add("transactionId");
         v.add(deleteData);

         boolean response = ((Boolean)(new XmlRpcClient(
             "http://" + abisIP + ":8080/abis/apache-
xmlrpc")).execute (
             "BioApp.Delete", v)).booleanValue();
     }

I've figured out how to create simple XMLRPCNET interface and make a
test call to Cook's SumAndDiff method.  I just can't figure out how
to translate this last line of code to an XMLRPCNET interface and
proxy call.  Not sure if the method is "execute" or what.  Can
anyone help?

Thanks.

#1072 From: "Owen Blacker" <owen@...>
Date: Mon Aug 4, 2008 5:17 pm
Subject: Masking an XML-RPC member
owenblacker
Send Email Send Email
 
I'm accessing an XML-RPC service where one type (User) includes a
property that may be one of a small set of known values.

In C#, I'd do this as an enum, but I'm not sure how that would end up
getting serialised. What I think I want to do is write code something
like this:

    public struct User
    {
       [XmlRpcMember("")]
       public Title Title { get; set; }

       [XmlRpcMember("title")]
       public string SerialisableTitle
       {
          get { return this.Title.ToString(); }
       }

       // ...
    }

    public enum Title { Mr, Mrs, Miss, Unknown }

Does that make sense; d'you follow what I'm trying to achieve?

Am I missing the point somewhere?  Or will my Enum automatically
serialise down to its string value?

If you hadn't guessed, this is my first time trying to use the XML-
RPC.Net library, though I've been working with C# for years and
years, so please try to be gentle with the newbie  ;o)

Thanks!


Owen Blacker
--
Owen Blacker,
Technical team lead, London

#1073 From: "Owen Blacker" <owen@...>
Date: Fri Aug 8, 2008 12:40 pm
Subject: Re: Masking an XML-RPC member
owenblacker
Send Email Send Email
 
Erm, anyone?

--- In XMLRPCNET@yahoogroups.com, "Owen Blacker" <owen@...> wrote:
>
> I'm accessing an XML-RPC service where one type (User) includes a
> property that may be one of a small set of known values.
>
> In C#, I'd do this as an enum, but I'm not sure how that would end
up
> getting serialised. What I think I want to do is write code
something
> like this:
>
>    public struct User
>    {
>       [XmlRpcMember("")]
>       public Title Title { get; set; }
>
>       [XmlRpcMember("title")]
>       public string SerialisableTitle
>       {
>          get { return this.Title.ToString(); }
>       }
>
>       // ...
>    }
>
>    public enum Title { Mr, Mrs, Miss, Unknown }
>
> Does that make sense; d'you follow what I'm trying to achieve?
>
> Am I missing the point somewhere?  Or will my Enum automatically
> serialise down to its string value?
>
> If you hadn't guessed, this is my first time trying to use the XML-
> RPC.Net library, though I've been working with C# for years and
> years, so please try to be gentle with the newbie  ;o)
>
> Thanks!
>
>
> Owen Blacker
> --
> Owen Blacker,
> Technical team lead, London
>

#1074 From: "Owen Blacker" <owen@...>
Date: Thu Aug 14, 2008 11:44 am
Subject: Is this thing on?
owenblacker
Send Email Send Email
 
I take it this group is dormant, then.

Ten days with no answer to a relatively simple question makes me think
this project is no longer supported and, as I am doing, I should be
looking at other XML-RPC libraries for .Net.

Disappointed,


Owen
--
Technical team lead
Iris Digital, London

#1075 From: "Charles Cook" <chascook@...>
Date: Thu Aug 14, 2008 12:16 pm
Subject: Re: Is this thing on?
charlescookuk
Send Email Send Email
 
Hi Owen: the FAQ has no mention of what you are trying to do so in that case
it is safe to assume it is not supported (as is the case). And this is an
open source project - the source is there for you to look at.

:Charles

On Thu, Aug 14, 2008 at 12:44 PM, Owen Blacker <owen@...> wrote:

>   I take it this group is dormant, then.
>
> Ten days with no answer to a relatively simple question makes me think
> this project is no longer supported and, as I am doing, I should be
> looking at other XML-RPC libraries for .Net.
>
> Disappointed,
>
> Owen
> --
> Technical team lead
> Iris Digital, London
>
>
>


[Non-text portions of this message have been removed]

#1076 From: Janandith Jayawardena <janandith@...>
Date: Tue Aug 26, 2008 10:05 am
Subject: Re: Re: python tuple equivalent in C# for XML-RPC
janandith
Send Email Send Email
 
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;

regards,

Janandith.



----- Original Message ----
From: charlescookuk <chascook@...>
To: XMLRPCNET@yahoogroups.com
Sent: Thursday, July 24, 2008 1:21:43 PM
Subject: [XMLRPCNET] Re: python tuple equivalent in C# for XML-RPC


Hi Janandith: a tuple is an immutable list so I suppose an array is
what you need.

:Charles

--- In XMLRPCNET@yahoogrou ps.com, Janandith Jayawardena
<janandith@. ..> wrote:
>
> Hi,
>
> The XML-RPC server I talk with is in python. It needs a tuple as
input. How can I send it using C# and XML-RPC.NET
>
> janandith
>
>
>
>
>
> [Non-text portions of this message have been removed]
>






[Non-text portions of this message have been removed]

#1077 From: "Javier Gonel" <bolibic@...>
Date: Fri Oct 17, 2008 1:22 pm
Subject: Cannot extend XmlRpcType
elgraffic
Send Email Send Email
 
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 Xml-RPC type.

In the CookComputing.XmlRpc.XmlRpcServiceInfo class, method
GetXmlRpcType, I've found this comparison (line 275):

       else if (t == typeof(XmlRpcStruct)))
       {
         ret = XmlRpcType.tHashtable;
       }

This doesn't allow to extend XmlRpcType because when you send your
extended object the type won't match.

I patched the line with this check:

else if (t.IsAssignableFrom(typeof(XmlRpcStruct)))

This allows XmlRpcStruct and derived types to be identified as they
should.

Perhaps there is a reason for that check to be in that way, but
without more info I guess this behavior should be patched.

Regards,
Javier Gonel

#1078 From: "Javier Gonel" <bolibic@...>
Date: Sun Oct 19, 2008 4:09 pm
Subject: Re: Cannot extend XmlRpcType
elgraffic
Send Email Send Email
 
Hi again,

I checked the problem more thoroughly and I found that
IsAssignableFrom also matches 'interfaces'. This can miss identify
other data types. Therefore my solution wasn't correct.

This one I guess is the correct one:

if (t == typeof(XmlRpcStruct) || t.IsSubclassOf(typeof(XmlRpcStruct)))

I tested it with some XmlRpcStruct child classes and it seems to work.

Best regards,
Javier Gonel.

--- In XMLRPCNET@yahoogroups.com, "Javier Gonel" <bolibic@...> wrote:
>
> 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 Xml-RPC type.
>
> In the CookComputing.XmlRpc.XmlRpcServiceInfo class, method
> GetXmlRpcType, I've found this comparison (line 275):
>
>       else if (t == typeof(XmlRpcStruct)))
>       {
>         ret = XmlRpcType.tHashtable;
>       }
>
> This doesn't allow to extend XmlRpcType because when you send your
> extended object the type won't match.
>
> I patched the line with this check:
>
> else if (t.IsAssignableFrom(typeof(XmlRpcStruct)))
>
> This allows XmlRpcStruct and derived types to be identified as they
> should.
>
> Perhaps there is a reason for that check to be in that way, but
> without more info I guess this behavior should be patched.
>
> Regards,
> Javier Gonel
>

#1079 From: "Carlo" <draka80@...>
Date: Sat Oct 25, 2008 1:23 pm
Subject: string response instead of struct
draka80
Send Email Send Email
 
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 in this format (and it's the same
with flickr api):

<?xml version="1.0" encoding="utf-8" ?>
<methodResponse>
	 <params>
		 <param>
			 <value>
				 <string>
					 [escaped-xml]
				 </string>
			 </value>
		 </param>
	 </params>
</methodResponse>

in the [escaped-xml] there is the real response, all escaped. I don't
really understand why did they choose this format, but my question is:
is there a way, with xmlrpc.net, to extract the escaped response,
unescape it and map to the so useful structs? or have I to parse the
xml response in another way (xpath or datasets)?
I hope to have explained what my problem is.

thanks in advance.

#1080 From: Adam Tauno Williams <awilliam@...>
Date: Mon Oct 27, 2008 1:05 am
Subject: Re: string response instead of struct
ferillis2003
Send Email Send Email
 
> <methodResponse>
> </methodResponse>

This looks like a good XML-RPC response.

>is there a way, with xmlrpc.net, to
>extract the escaped response,
>unescape it and map to the so useful
> structs? or have I to parse the

See the FAQ.  Define a proxy interface for the API and it will all be done
automatically,  it will be just like calling a local method.

--
Adam Tauno Williams
http://www.whitemiceconsulting.com

#1081 From: "Valeriy Shylin" <valera-sh@...>
Date: Mon Oct 27, 2008 1:59 pm
Subject: Configuration error: Could not load file or assembly...
valerashylin
Send Email Send Email
 
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 experience troubles in making the service work. When I open
the URL in the browser I get the configuration error page saying:

"Could not load file or assembly 'MathService' or one of its
dependencies. The system cannot find the file specified."


I would appreciate if you could help me.

As an example I took the MathService example without modifying it.

The web.config file is:
<configuration>
   <system.web>
     <httpHandlers>
       <add verb="*" path="math.rem" type="MathService, MathService" />
     </httpHandlers>
   </system.web>
</configuration>

Both MathService.dll and CookComputing.XmlRpcV2.dll are located in
the bin directory.

Thanks. :)

#1082 From: "zbeckerman" <zbeckerman@...>
Date: Mon Oct 27, 2008 5:09 pm
Subject: Re: Configuration error: Could not load file or assembly...
zbeckerman
Send Email Send Email
 
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 speed up the process to solve the problem.

I notice that you are using the V2 version of the DLL. Make sure you
are using VS2005 and not VS2003.

Thanks,
Zev.



--- In XMLRPCNET@yahoogroups.com, "Valeriy Shylin" <valera-sh@...>
wrote:
>
> 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 experience troubles in making the service work. When I open
> the URL in the browser I get the configuration error page saying:
>
> "Could not load file or assembly 'MathService' or one of its
> dependencies. The system cannot find the file specified."
>
>
> I would appreciate if you could help me.
>
> As an example I took the MathService example without modifying it.
>
> The web.config file is:
> <configuration>
>   <system.web>
>     <httpHandlers>
>       <add verb="*" path="math.rem" type="MathService,
MathService" />
>     </httpHandlers>
>   </system.web>
> </configuration>
>
> Both MathService.dll and CookComputing.XmlRpcV2.dll are located in
> the bin directory.
>
> Thanks. :)
>

#1083 From: "Valeriy Shylin" <valera-sh@...>
Date: Mon Oct 27, 2008 7:46 pm
Subject: Re: Configuration error: Could not load file or assembly...
valerashylin
Send Email Send Email
 
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 don't
think that's crucial.

I am using VS2005, but the IIS server is set up on the other machine
where VS2005 is not installed. Can this cause trouble?

Thanks.



--- In XMLRPCNET@yahoogroups.com, "zbeckerman" <zbeckerman@...> wrote:
>
> 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 speed up the process to solve the problem.
>
> I notice that you are using the V2 version of the DLL. Make sure
you
> are using VS2005 and not VS2003.
>
> Thanks,
> Zev.
>
>
>
> --- In XMLRPCNET@yahoogroups.com, "Valeriy Shylin" <valera-sh@>
> wrote:
> >
> > 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 experience troubles in making the service work. When I
open
> > the URL in the browser I get the configuration error page saying:
> >
> > "Could not load file or assembly 'MathService' or one of its
> > dependencies. The system cannot find the file specified."
> >
> >
> > I would appreciate if you could help me.
> >
> > As an example I took the MathService example without modifying it.
> >
> > The web.config file is:
> > <configuration>
> >   <system.web>
> >     <httpHandlers>
> >       <add verb="*" path="math.rem" type="MathService,
> MathService" />
> >     </httpHandlers>
> >   </system.web>
> > </configuration>
> >
> > Both MathService.dll and CookComputing.XmlRpcV2.dll are located
in
> > the bin directory.
> >
> > Thanks. :)
> >
>

#1084 From: "Carlo" <draka80@...>
Date: Mon Oct 27, 2008 9:08 pm
Subject: Re: string response instead of struct
draka80
Send Email Send Email
 
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 version="1.0" encoding="utf-8" ?>
<methodResponse>
<params>
<param>
<value>
<string>
[escaped-xml]
</string>
</value>
</param>
</params>
</methodResponse>

the [escaped-xml] string value has a content like this, all escaped:

<?xml version="1.0" encoding="utf-8" ?>
<methodResponse>
<params>
<param>
<value>
<string>
etc.
</string>
</value>
</param>
</params>
</methodResponse>

which is the response I want to "parse" as my method call response.
By now, this is an example of a proxy I wrote:

[XmlRpcUrl("http://ws.audioscrobbler.com/2.0/")]
public interface IUser_GetRecentTracks : IXmlRpcProxy
{
     [XmlRpcMethod("user.getrecenttracks")]
     string User_GetRecentTracks(User_GetRecentTracks_Params p);
}

this way I'm getting the [escaped xml] as a string, which I use with c#
xml methods. If I put the struct I want, as return parameter of the
method, I get an error saying that the response is a string and not a
struct (and its the truth).
I was asking if it's possible to extract that escaped string and map it
to the response struct.
thanks,

Carlo.

--- In XMLRPCNET@yahoogroups.com, Adam Tauno  Williams <awilliam@...>
wrote:
>
>  > <methodResponse>
> > </methodResponse>
>
> This looks like a good XML-RPC response.
>
> >is there a way, with xmlrpc.net, to
> >extract the escaped response,
> >unescape it and map to the so useful
> > structs? or have I to parse the
>
> See the FAQ.  Define a proxy interface for the API and it will all be
done
> automatically,  it will be just like calling a local method.
>
> --
> Adam Tauno Williams
> http://www.whitemiceconsulting.com
>




[Non-text portions of this message have been removed]

#1085 From: Zev Beckerman <zbeckerman@...>
Date: Tue Oct 28, 2008 3:29 am
Subject: Re: Re: Configuration error: Could not load file or assembly...
zbeckerman
Send Email Send Email
 
If you plan to deploy a .NET application to a machine that did not
install .NET, you MUST install the .NET redistributables
(http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8ED\
D-AAB15C5E04F5&displaylang=en).

If you compiled in DEBUG mode, then your foundation library is in debug
mode and likely the target computer does not have it. Compile in release
mode and install the redistributables.  Hope that helps, if you not,
post screen shots (or links to) of the  dependency walker.

Thanks,
Zev.

Valeriy Shylin wrote:
>
> 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 don't
> think that's crucial.
>
> I am using VS2005, but the IIS server is set up on the other machine
> where VS2005 is not installed. Can this cause trouble?
>
> Thanks.
>
> --- In XMLRPCNET@yahoogroups.com <mailto:XMLRPCNET%40yahoogroups.com>,
> "zbeckerman" <zbeckerman@...> wrote:
> >
> > Download dependency checker at: http://www.dependencywalker.com/
> <http://www.dependencywalker.com/>
> >
> > This will allow you to see what DLLs (paths) are expected and which
> > are missing. This will speed up the process to solve the problem.
> >
> > I notice that you are using the V2 version of the DLL. Make sure
> you
> > are using VS2005 and not VS2003.
> >
> > Thanks,
> > Zev.
> >
> >
> >
> > --- In XMLRPCNET@yahoogroups.com
> <mailto:XMLRPCNET%40yahoogroups.com>, "Valeriy Shylin" <valera-sh@>
> > wrote:
> > >
> > > 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 experience troubles in making the service work. When I
> open
> > > the URL in the browser I get the configuration error page saying:
> > >
> > > "Could not load file or assembly 'MathService' or one of its
> > > dependencies. The system cannot find the file specified."
> > >
> > >
> > > I would appreciate if you could help me.
> > >
> > > As an example I took the MathService example without modifying it.
> > >
> > > The web.config file is:
> > > <configuration>
> > > <system.web>
> > > <httpHandlers>
> > > <add verb="*" path="math.rem" type="MathService,
> > MathService" />
> > > </httpHandlers>
> > > </system.web>
> > > </configuration>
> > >
> > > Both MathService.dll and CookComputing.XmlRpcV2.dll are located
> in
> > > the bin directory.
> > >
> > > Thanks. :)
> > >
> >
>
>  <!-- #ygrp-mkp{ border: 1px solid #d8d8d8; font-family:
> Arial; margin: 14px 0px; padding: 0px 14px; } #ygrp-mkp hr{ border:
> 1px solid #d8d8d8; } #ygrp-mkp #hd{ color: #628c2a; font-size: 85%;
> font-weight: bold; line-height: 122%; margin: 10px 0px; } #ygrp-mkp
> #ads{ margin-bottom: 10px; } #ygrp-mkp .ad{ padding: 0 0; } #ygrp-mkp
> .ad a{ color: #0000ff; text-decoration: none; } --> <!-- #ygrp-sponsor
> #ygrp-lc{ font-family: Arial; } #ygrp-sponsor #ygrp-lc #hd{ margin:
> 10px 0px; font-weight: bold; font-size: 78%; line-height: 122%; }
> #ygrp-sponsor #ygrp-lc .ad{ margin-bottom: 10px; padding: 0 0; } -->
> <!-- #ygrp-mlmsg {font-size:13px; font-family:
> arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
> #ygrp-mlmsg table {font-size:inherit;font:100%;} #ygrp-mlmsg select,
> input, textarea {font:99% arial,helvetica,clean,sans-serif;}
> #ygrp-mlmsg pre, code {font:115% monospace;*font-size:100%;}
> #ygrp-mlmsg * {line-height:1.22em;} #ygrp-text{ font-family: Georgia;
> } #ygrp-text p{ margin: 0 0 1em 0; } #ygrp-tpmsgs{ font-family: Arial;
> clear: both; } #ygrp-vitnav{ padding-top: 10px; font-family: Verdana;
> font-size: 77%; margin: 0; } #ygrp-vitnav a{ padding: 0 1px; }
> #ygrp-actbar{ clear: both; margin: 25px 0; white-space:nowrap; color:
> #666; text-align: right; } #ygrp-actbar .left{ float: left;
> white-space:nowrap; } .bld{font-weight:bold;} #ygrp-grft{ font-family:
> Verdana; font-size: 77%; padding: 15px 0; } #ygrp-ft{ font-family:
> verdana; font-size: 77%; border-top: 1px solid #666; padding: 5px 0; }
> #ygrp-mlmsg #logo{ padding-bottom: 10px; } #ygrp-reco { margin-bottom:
> 20px; padding: 0px; } #ygrp-reco #reco-head { font-weight: bold;
> color: #ff7900; } #reco-grpname{ font-weight: bold; margin-top: 10px;
> } #reco-category{ font-size: 77%; } #reco-desc{ font-size: 77%; }
> #ygrp-vital{ background-color: #e0ecee; margin-bottom: 20px; padding:
> 2px 0 8px 8px; } #ygrp-vital #vithd{ font-size: 77%; font-family:
> Verdana; font-weight: bold; color: #333; text-transform: uppercase; }
> #ygrp-vital ul{ padding: 0; margin: 2px 0; } #ygrp-vital ul li{
> list-style-type: none; clear: both; border: 1px solid #e0ecee; }
> #ygrp-vital ul li .ct{ font-weight: bold; color: #ff7900; float:
> right; width: 2em; text-align:right; padding-right: .5em; }
> #ygrp-vital ul li .cat{ font-weight: bold; } #ygrp-vital a{
> text-decoration: none; } #ygrp-vital a:hover{ text-decoration:
> underline; } #ygrp-sponsor #hd{ color: #999; font-size: 77%; }
> #ygrp-sponsor #ov{ padding: 6px 13px; background-color: #e0ecee;
> margin-bottom: 20px; } #ygrp-sponsor #ov ul{ padding: 0 0 0 8px;
> margin: 0; } #ygrp-sponsor #ov li{ list-style-type: square; padding:
> 6px 0; font-size: 77%; } #ygrp-sponsor #ov li a{ text-decoration:
> none; font-size: 130%; } #ygrp-sponsor #nc{ background-color: #eee;
> margin-bottom: 20px; padding: 0 8px; } #ygrp-sponsor .ad{ padding: 8px
> 0; } #ygrp-sponsor .ad #hd1{ font-family: Arial; font-weight: bold;
> color: #628c2a; font-size: 100%; line-height: 122%; } #ygrp-sponsor
> .ad a{ text-decoration: none; } #ygrp-sponsor .ad a:hover{
> text-decoration: underline; } #ygrp-sponsor .ad p{ margin: 0; }
> o{font-size: 0; } .MsoNormal{ margin: 0 0 0 0; } #ygrp-text tt{
> font-size: 120%; } blockquote{margin: 0 0 0 4px;} .replbq{margin:4} -->


[Non-text portions of this message have been removed]

#1086 From: "Valeriy Shylin" <valera-sh@...>
Date: Tue Oct 28, 2008 7:05 am
Subject: Re: Configuration error: Could not load file or assembly...
valerashylin
Send Email Send Email
 
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 and the assembly is compiled in Release mode. In fact, I am
even trying to make the original MathService (downloaded from the web
site) work I fail.

I always receive this error:

Parser Error Message: Could not load file or assembly 'MathService' or
one of its dependencies. The system cannot find the file specified.

Source Error:


Line 2:    <system.web>
Line 3:      <httpHandlers>
Line 4:        <add verb="*" path="math.rem" type="MathService,
MathService" />
Line 5:      </httpHandlers>
Line 6:    </system.web>


Source File: c:\inetpub\wwwroot\math\web.config    Line: 4

Assembly Load Trace: The following information can be helpful to
determine why the assembly 'MathService' could not be loaded.


=== Pre-bind state information ===
LOG: User = NT AUTHORITY\NETWORK SERVICE
LOG: DisplayName = MathService
   (Partial)
LOG: Appbase = file:///c:/inetpub/wwwroot/ <file:///c:/inetpub/wwwroot/>
LOG: Initial PrivatePath = c:\inetpub\wwwroot\bin
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: No application configuration file found.
LOG: Using host configuration file:
\\?\c:\windows\microsoft.net\framework\v2.0.50727\aspnet.config
<file://\\?\c:\windows\microsoft.net\framework\v2.0.50727\aspnet.config>
LOG: Using machine configuration file from
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Policy not being applied to reference at this time (private,
custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL
file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
<file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
ASP.NET Files/root/26676eb7/92c7e946/MathService.DLL.
LOG: Attempting download of new URL
file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
<file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
ASP.NET Files/root/26676eb7/92c7e946/MathService/MathService.DLL.
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/bin/MathService.DLL
<file:///c:/inetpub/wwwroot/bin/MathService.DLL> .
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/bin/MathService/MathService.DLL
<file:///c:/inetpub/wwwroot/bin/MathService/MathService.DLL> .
LOG: Attempting download of new URL
file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
<file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
ASP.NET Files/root/26676eb7/92c7e946/MathService.EXE.
LOG: Attempting download of new URL
file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
<file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
ASP.NET Files/root/26676eb7/92c7e946/MathService/MathService.EXE.
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/bin/MathService.EXE
<file:///c:/inetpub/wwwroot/bin/MathService.EXE> .
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/bin/MathService/MathService.EXE
<file:///c:/inetpub/wwwroot/bin/MathService/MathService.EXE> .



------------------------------------------------------------------------\
--------
Version Information: Microsoft .NET Framework Version:2.0.50727.1433;
ASP.NET Version:2.0.50727.1433



In this log I notice that AppBase and Initial Private path are pointing
to the c:\inetpub\wwwroot instead of c:\inetpub\wwwroot\math where the
web.config file is located. Is that a problem?

Thanks! :)

Valera




--- In XMLRPCNET@yahoogroups.com <mailto:XMLRPCNET@yahoogroups.com> ,
Zev Beckerman <zbeckerman@...> wrote:
>
> If you plan to deploy a .NET application to a machine that did not
> install .NET, you MUST install the .NET redistributables
>
(http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-\
4B0D-8EDD-AAB15C5E04F5&displaylang=en
<http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-\
4B0D-8EDD-AAB15C5E04F5&displaylang=en> ).
>
> If you compiled in DEBUG mode, then your foundation library is in
debug
> mode and likely the target computer does not have it. Compile in
release
> mode and install the redistributables.  Hope that helps, if you not,
> post screen shots (or links to) of the  dependency walker.
>
> Thanks,
> Zev.




[Non-text portions of this message have been removed]

#1087 From: "Valeriy Shylin" <valera-sh@...>
Date: Wed Oct 29, 2008 9:59 am
Subject: Re: Configuration error: Could not load file or assembly...
valerashylin
Send Email Send Email
 
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 another virtual
directory causes the above mentioned error),

and the name of the class must be indicated with the default
namespace (even though the I program in C#).

Any comments? :)

Thanks.
Valera



--- In XMLRPCNET@yahoogroups.com, "Valeriy Shylin" <valera-sh@...>
wrote:
>
>
> 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 and the assembly is compiled in Release mode. In fact, I
am
> even trying to make the original MathService (downloaded from the
web
> site) work I fail.
>
> I always receive this error:
>
> Parser Error Message: Could not load file or assembly 'MathService'
or
> one of its dependencies. The system cannot find the file specified.
>
> Source Error:
>
>
> Line 2:    <system.web>
> Line 3:      <httpHandlers>
> Line 4:        <add verb="*" path="math.rem" type="MathService,
> MathService" />
> Line 5:      </httpHandlers>
> Line 6:    </system.web>
>
>
> Source File: c:\inetpub\wwwroot\math\web.config    Line: 4
>
> Assembly Load Trace: The following information can be helpful to
> determine why the assembly 'MathService' could not be loaded.
>
>
> === Pre-bind state information ===
> LOG: User = NT AUTHORITY\NETWORK SERVICE
> LOG: DisplayName = MathService
>   (Partial)
> LOG: Appbase = file:///c:/inetpub/wwwroot/
<file:///c:/inetpub/wwwroot/>
> LOG: Initial PrivatePath = c:\inetpub\wwwroot\bin
> Calling assembly : (Unknown).
> ===
> LOG: This bind starts in default load context.
> LOG: No application configuration file found.
> LOG: Using host configuration file:
> \\?\c:\windows\microsoft.net\framework\v2.0.50727\aspnet.config
> <file://\\?\c:\windows\microsoft.net\framework\v2.0.50727
\aspnet.config>
> LOG: Using machine configuration file from
> c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
> LOG: Policy not being applied to reference at this time (private,
> custom, partial, or location-based assembly bind).
> LOG: Attempting download of new URL
> file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
> <file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
> ASP.NET Files/root/26676eb7/92c7e946/MathService.DLL.
> LOG: Attempting download of new URL
> file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
> <file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
> ASP.NET Files/root/26676eb7/92c7e946/MathService/MathService.DLL.
> LOG: Attempting download of new URL
> file:///c:/inetpub/wwwroot/bin/MathService.DLL
> <file:///c:/inetpub/wwwroot/bin/MathService.DLL> .
> LOG: Attempting download of new URL
> file:///c:/inetpub/wwwroot/bin/MathService/MathService.DLL
> <file:///c:/inetpub/wwwroot/bin/MathService/MathService.DLL> .
> LOG: Attempting download of new URL
> file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
> <file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
> ASP.NET Files/root/26676eb7/92c7e946/MathService.EXE.
> LOG: Attempting download of new URL
> file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary
> <file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary>
> ASP.NET Files/root/26676eb7/92c7e946/MathService/MathService.EXE.
> LOG: Attempting download of new URL
> file:///c:/inetpub/wwwroot/bin/MathService.EXE
> <file:///c:/inetpub/wwwroot/bin/MathService.EXE> .
> LOG: Attempting download of new URL
> file:///c:/inetpub/wwwroot/bin/MathService/MathService.EXE
> <file:///c:/inetpub/wwwroot/bin/MathService/MathService.EXE> .
>
>
>
> --------------------------------------------------------------------
----\
> --------
> Version Information: Microsoft .NET Framework
Version:2.0.50727.1433;
> ASP.NET Version:2.0.50727.1433
>
>
>
> In this log I notice that AppBase and Initial Private path are
pointing
> to the c:\inetpub\wwwroot instead of c:\inetpub\wwwroot\math where
the
> web.config file is located. Is that a problem?
>
> Thanks! :)
>
> Valera
>
>
>
>
> --- In XMLRPCNET@yahoogroups.com
<mailto:XMLRPCNET@yahoogroups.com> ,
> Zev Beckerman <zbeckerman@> wrote:
> >
> > If you plan to deploy a .NET application to a machine that did not
> > install .NET, you MUST install the .NET redistributables
> >
> (http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-
4362-\
> 4B0D-8EDD-AAB15C5E04F5&displaylang=en
> <http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-
4362-\
> 4B0D-8EDD-AAB15C5E04F5&displaylang=en> ).
> >
> > If you compiled in DEBUG mode, then your foundation library is in
> debug
> > mode and likely the target computer does not have it. Compile in
> release
> > mode and install the redistributables.  Hope that helps, if you
not,
> > post screen shots (or links to) of the  dependency walker.
> >
> > Thanks,
> > Zev.
>
>
>
>
> [Non-text portions of this message have been removed]
>

#1088 From: "mdomarotsky" <mdomarotsky@...>
Date: Wed Oct 29, 2008 9:05 pm
Subject: Proxy Authentication Required
mdomarotsky
Send Email Send Email
 
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 call, I get an "Proxy Authentication Required". I've noticed
from this mailing list that folks had similar problems with this on
Mono but I'm not using Mono. Has anyone seen this problem before?

Thank you,

-M

Here's the code:

         public void RunQuery()
         {
             proxy = XmlRpcProxyGen.Create<IEyeQLQuery>();

             string version = proxy.FisheyeVersion(); // works fine
             version = proxy.FisheyeVersion(); // exception thown here

             Console.WriteLine(version);
         }

Here's the error:

CookComputing.XmlRpc.XmlRpcServerException was unhandled
   Message="Proxy Authentication Required"
   Source="CookComputing.XmlRpcV2"
   StackTrace:
        at
CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest
req, WebResponse webResp, Stream respStm, Type returnType) in
C:\work\installs\xml-rpc.net.2.3.2\src\XmlRpcClientProtocol.cs:line 475
        at CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object
clientObj, MethodInfo mi, Object[] parameters) in
C:\work\installs\xml-rpc.net.2.3.2\src\XmlRpcClientProtocol.cs:line 204
        at CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo
mi, Object[] Parameters) in
C:\work\installs\xml-rpc.net.2.3.2\src\XmlRpcClientProtocol.cs:line 102
        at XmlRpcProxy769f18eb-3254-478f-a0a1-24e330d3c0aa.FisheyeVersion()
        at p4odbctest.FisheyeQueryTest.RunQuery() in
C:\work\sandbox\p4odbctest\p4odbctest\Program.cs:line 33
        at p4odbctest.Program.Main(String[] args) in
C:\work\sandbox\p4odbctest\p4odbctest\Program.cs:line 15
        at System.AppDomain.nExecuteAssembly(Assembly assembly,
String[] args)
        at System.AppDomain.ExecuteAssembly(String assemblyFile,
Evidence assemblySecurity, String[] args)
        at
Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
        at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
        at System.Threading.ExecutionContext.Run(ExecutionContext
executionContext, ContextCallback callback, Object state)
        at System.Threading.ThreadHelper.ThreadStart()

#1089 From: "mdomarotsky" <mdomarotsky@...>
Date: Wed Oct 29, 2008 10:52 pm
Subject: Re: Proxy Authentication Required
mdomarotsky
Send Email Send Email
 
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 service I'm talking to is internal. It appears that
the HTTP connection is getting reset after the first response is
received. I went into my internet settings and deselected the check
box to go through the proxy. The client is working now.

Thanks,

-M



--- In XMLRPCNET@yahoogroups.com, "mdomarotsky" <mdomarotsky@...> wrote:
>
> 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 call, I get an "Proxy Authentication Required". I've noticed
> from this mailing list that folks had similar problems with this on
> Mono but I'm not using Mono. Has anyone seen this problem before?
>
> Thank you,
>
> -M
>
> Here's the code:
>
>         public void RunQuery()
>         {
>             proxy = XmlRpcProxyGen.Create<IEyeQLQuery>();
>
>             string version = proxy.FisheyeVersion(); // works fine
>             version = proxy.FisheyeVersion(); // exception thown here
>
>             Console.WriteLine(version);
>         }
>
> Here's the error:
>
> CookComputing.XmlRpc.XmlRpcServerException was unhandled
>   Message="Proxy Authentication Required"
>   Source="CookComputing.XmlRpcV2"
>   StackTrace:
>        at
> CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest
> req, WebResponse webResp, Stream respStm, Type returnType) in
> C:\work\installs\xml-rpc.net.2.3.2\src\XmlRpcClientProtocol.cs:line 475
>        at CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object
> clientObj, MethodInfo mi, Object[] parameters) in
> C:\work\installs\xml-rpc.net.2.3.2\src\XmlRpcClientProtocol.cs:line 204
>        at CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo
> mi, Object[] Parameters) in
> C:\work\installs\xml-rpc.net.2.3.2\src\XmlRpcClientProtocol.cs:line 102
>        at
XmlRpcProxy769f18eb-3254-478f-a0a1-24e330d3c0aa.FisheyeVersion()
>        at p4odbctest.FisheyeQueryTest.RunQuery() in
> C:\work\sandbox\p4odbctest\p4odbctest\Program.cs:line 33
>        at p4odbctest.Program.Main(String[] args) in
> C:\work\sandbox\p4odbctest\p4odbctest\Program.cs:line 15
>        at System.AppDomain.nExecuteAssembly(Assembly assembly,
> String[] args)
>        at System.AppDomain.ExecuteAssembly(String assemblyFile,
> Evidence assemblySecurity, String[] args)
>        at
> Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
>        at System.Threading.ThreadHelper.ThreadStart_Context(Object
state)
>        at System.Threading.ExecutionContext.Run(ExecutionContext
> executionContext, ContextCallback callback, Object state)
>        at System.Threading.ThreadHelper.ThreadStart()
>

Messages 1060 - 1089 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