Request replys in web servers
Fri, 16 May 2008 04:22:55 -0700 (PDT)
All,
Can somebody let me know, how a webservice/webserver maintains
request queue? And how webservice/webserver make sure, reply is
properly is sent to intended request?
Reagrads,
Sandee[ ...
|
WebService methods always return null
Fri, 16 May 2008 13:02:38 +0200
I'm developing an application that uses a webservice.
It was working fine a few month ago, but going back to the project after
a couple of months on other projects, the code is suddenly not working.
ex
string q = "qry=John+smith";
try
{
string a = tlf ...
|
Passing client's certificate through multiple hops
Thu, 15 May 2008 01:17:10 -0700 (PDT)
Hi,
Is it possible to pass client's certificate through multiple hops. Let
me describe desirable scenario:
some client (might be in any platform) that located outside domain
attach certificate to message and pass request to wcf service that is
located outside domain as well which have to extract client
cer ...
|
.Net 2.0 WebService
Wed, 14 May 2008 20:46:25 -0700 (PDT)
1. Is there a way to create a .Net 2.0 webservice that does NOT write
to c:\windows\TEMP to create temporary classes? I have security issues
with that.
2. If not, Is it possible to instruct .NET 2.0 to write its temporary
classes somewhere else?
any help on this would be appreciated. ...
|
XBAP and Windows Integrated Security to WCF service in IIS
Wed, 14 May 2008 16:48:02 -0700
Hello all. Been struggling with this. I have a WCF service in IIS using a
basicHttpBinding configured like this:
<binding name="basicBinding">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
IIS is set up with Integrated Security, no anon ...
|
how to build a web service I have xml ready to send no serializati
Wed, 14 May 2008 14:57:07 -0700
I have a wsdl defined for me that i need to build a web service for. I have
a source of the xml to match teh wsdl outputs that are to be returned.
How do I build (visual studio 2005, .net 2.0) a web service to return that
xml. All the wizards and templates and examples have you build your objects
that t ...
|
Web Service always fails when called
Wed, 14 May 2008 09:18:36 -0400
Hello,
I'm trying to use a web service from my MFC C++ app.
For testing purposes, I created the simple web service in VS2005:
[WebMethod]
public int Sum(int num1, int num2)
{
return (num1+num2);
}
I tested it firstly using asp.net and it worked fine. To make this test, so
I could add a web refe ...
|
|
|
certificate is required to complete client authentication
Wed, 14 May 2008 17:35:01 +0530
Hi
We have two server SSL certificates from Thawte. We set up these two SSL in
the same server.
Now, we want to access a web service hosted by one of our customer in their
server. We are calling this web service from a web service deployed in our
server. The customer web service can be accessed o ...
|
Using lyricWiki.org WS in .NET
Wed, 14 May 2008 12:50:03 +0300
Hi, all WS guru,
I desperatelly need your help, trying to use lyricWiki.org WS (description-
http://lyricwiki.org/LyricWiki:SOAP,
wsdl-http://lyricwiki.org/server.php?wsdl ).
After some attempts to use SOAP version of this WS I came to conclusion,
that this service is not WS-I compliant; more over - imho som ...
|
Enable the WCF Profile Service but not working with complex type.
Wed, 14 May 2008 00:57:01 -0700
Any one have an idea Profile Service in WCF with complex type.
example from the msdn simple version data type profile work fine.
http://msdn.microsoft.com/en-us/library/bb514968.aspx
when I enhance this samples to support complex type or profile property with
a group it though an error regarding deserialize ...
|