Search results for query: *

  1. G

    Question Timeout accessing my self hosted WCF SSL service.

    Hi JohnH: Thanks for the reply. I do not completely understand all about the request and hosting so I may not understand completely the client proxy concept. To finish the task that I have been assigned I don't know if I have that option. Or is a client proxy always an option when writing this...
  2. G

    Question Timeout accessing my self hosted WCF SSL service.

    I did see that I copy over the code when I had it as non ssl. I have https in the running version that gave me the time out. I just got it to run with out the timeout but I am not sure why this makes a difference yet. If anyone has input, welcome all. To get it to work I changed the storage...
  3. G

    Question Timeout accessing my self hosted WCF SSL service.

    I hope that I get all the steps correct to explain what I did. In summary I created my on certificates to develop and test a self hosted WCF using SSL. 1) i create the CA 2) I moved that CA to the Certificates Trusted Root Authority 3) I created a self signed certificate from the CA i created 4)...
  4. G

    Question From Where is Request Object Instantiated in web service?

    I hope I an ask this in a way that makes since. I am looking at one of our web applications and I can put a break point in the controller method that handles the request. The class is passed a requestModel object. If I put a break point in the constructor of the request object it does break but...
  5. G

    Question Why do I get 403.16 errror on http request?

    After digging into the application more I found that there was a wcf service Involved in the request and that was where the error came from. The link below solved the issue. 403 - Forbidden: Access is denied. You do not have permission to view this directory or page using the credentials that...
  6. G

    Question Why do I get 403.16 errror on http request?

    I have a legacy system that is not capable of making the HTTP request over SSL so we wrote an intermediate web service to receive the original HTTP request and then the new webservice makes an HTTP request with the certificate to the other end. I receive the legacy string which is a soap packet...
  7. G

    Question UI component class with no designer or resx

    While working on a problem I came across a component (compA) that was added to the project and that component inherited from another component. In the component (compA) that the programmer created there was no designer or resx. Why would you remove those files when creating a component? Thanks.
  8. G

    Question Some times my title bar does not display contents or the buttons

    Title bar not rendering its content. Hey JohnH: I just noticed on a for that is having the problem that when it has finished rendering but with out the Title bar. I cannot grab the edges and stretch the form. Just more Information if anyone has had the experience.
  9. G

    Question Some times my title bar does not display contents or the buttons

    Title bar not rendering its content. Thanks John for your reply. The form has a lot of controls and there is a lot happening. It displays rather quickly, less than a second, and is responsive dragging around immediately when I can grab it. I think I have a couple of approaches. Try to figure...
  10. G

    Question Some times my title bar does not display contents or the buttons

    I have a form that displays information about a call. There are lots of controls on the form that displays the call information. Sometimes when a user launches a call form the Title bar does not display. What is acutally behind that call form is in the title bar, so when I move the form that...
  11. G

    Question TCP socket.BeginReceive error?

    I am trying to write a TCP server application that I can use to test a tcp client. Receiving the connection works but the code to begin receive fails with the error below. All the examples that I found pass a byte array in just like this. {"Unable to cast object of type 'System.Byte[]' to type...
  12. G

    Question Why will ActionLink not take a variable piece of data for id?

    I got it to work. Quite simple actually but I tried a lot of things, especially writing an extension helper that did not work. below is what worked I removed the @ before the curItem : @Html.ActionLink("Details", "Detail", New With {.id = curItem.scoutID})
  13. G

    Question Why will ActionLink not take a variable piece of data for id?

    I am learning MVC and am using VB.net presently. I am trying to put a variable piece of data as the id of request to my controller with the ActionLink Helper but visual studio is preventing me from doing so. I thought the @curItem.scoutID was an expression, but the error I get when I hover over...
  14. G

    Question Custom Appconfig does not load.

    I solved problem with the custom appconfig loading I think that I removed the property "properties" which overrides the base property and now everything loads. There may really be an issue with the way I structured everything in the ZollPCRSetting class but by not overriding that property...
  15. G

    Question Custom Appconfig does not load.

    I have some custom configs in my appconfig file but I get an error when I try loading int with the configurationManager getsection method. This is the message "Unrecognized element 'MiscFields'." loading the setting: _zollPcrSetting =...
  16. G

    Question Why do control have different behavior in modal forms vs non modal?

    I have a form and in one set of code it is call as modal and in another set of code it is called non modal. There is a control on the form that presents a dropdown box. We provide a datasource to the dropdown which is a list. When we get the all the data elements from the database if there is...
  17. G

    Question What does {0,-30} do in string formatting?

    I have been reading walls of text to try to find out what the -30 is in this format that I got off the internet. It works but I really want to understand what I am doing. the format string is {0,-30}{1:yyyy-MM-dd HH:mm}. Can someone tell me what the -30 does? Also if you have a link to a site...
  18. G

    Error reading decrypted stream using AesCryptoServiceProvider

    I found the problem with my application. The data that was being passed into it was not complete and had a zero in the first element of the array. I was using a tcpCLient to pass the data over to the app that would decrypt it.
  19. G

    Error reading decrypted stream using AesCryptoServiceProvider

    The code below was taken from msdn site. The Encryption code that I am using seems to work at this time but the decryption does not. I get an error on the line srDecrypt.ReadToEnd(). I get the error "Value cannot be null. Parameter name:inputbuffer". I have walked it the that line and I am not...
  20. G

    NVARCHAR(10) TO VARCHAR(15) in result set

    I have a request to provide a select statement to a business partner that will execute the select statement several times a day. The definition of several of the fields from the partner is VARCHAR(??). We store all of our fields in NVARCHAR(??) because of localization. Do I need to convert...
Back
Top