Advanced Forum Search Results
-
Hello everyone,
I am using VSTS 2008 + C# + .Net 3.5 + Silverlight 3.0. I host a WCF service in IIS 7.0. My question is, besides using https + basicHttpBinding, are there any other security solutions? I want to find a security solution which does not need certificate on server side. I am not sure whether message security works without certificate ...
-
Any ideas to make the tooltip never disappear? What I want to do is to make tooltip always be visible when mouse is on the picture. Thanks!
-
"you have too many image to add MouseEnter/MouseLeave event handler." -- why too many image? I am confused. For tooltip control, it is just a tooltip, what do you mean the image?
-
Thanks Ken, 1. I think you mean the property means how far from the top of the Page contains the Silverlight application, correct?
2. I am not sure we can place popup control according to the relative location of another component? For example, I have a image in a Silverlight application and I want to show popup for the image. And it is more ...
-
Hello everyone,
I am using VSTS 2008 + Silverlight 3 with Silverlight Popup control. I am confused about the VerticalOffset property.
From MSDN, it is mentioned,
"Gets or sets the vertical distance between the target origin and the popup alignment point. This is a dependency ...
-
Hello everyone,
I am using Silverlight 3 + VSTS 2008. I have a image (Multiscale image control) and I place tooltip on this image. The function of Tooltip works fine. Since the image is big (about 500 * 500 size), and since end user could move mouse on the picture, and I want to display tooltip position along with the mouse (i.e. when mouse ...
-
Thanks Jonathan, I read the discussion, and seems the root cause is we need to set security mode to transport dynamically in code, other than in config, like below comments,
Should do in this way,
BasicHttpBinding bind = new BasicHttpBinding();
bind.Security.Mode = BasicHttpSecurityMode.Transport;
Other than do in this way,
<security ...
-
Thanks, I am using Fiddler to capture traffic when making https WCF call. I find sometimes when I make a call, no SOAP message will be sent to servr side, in this case, it will fail. But sometimes when I run the same program (Silverlight), SOAP message will be sent and the call is successful. Any ideas what is wrong and how to analyze further?
-
I met with strange issue. Not sure whether you met with this issue before -- sometimes the same client machine + same server machine work, but sometimes not working, any ideas why?
-
I have tested there is no need to call svc file by https form. For your solution of calling svc file at first before access any real html page, is good for our developer, but for end user, how could them remember to call svc file before call html page? And also in product environment, svc file is not suggested to be exposed.