CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: hoagers34

Page 1 of 10 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    0
    Views
    2,418

    ReportViewer Control

    I have uploaded reports to my dev laptop and can render the reports when i am on the report manager url...but when i put a reportviewer control on a web application, i get the following error...
    ...
  2. Thread: WCF Router

    by hoagers34
    Replies
    0
    Views
    1,789

    WCF Router

    Does anyone have an example or know if this can be done?

    I am trying to setup the following:

    Windows Forms Application -> WCF Router -> WCF Service

    Where the connection between Forms App and...
  3. Replies
    0
    Views
    559

    SQL Reporing Services (asmx)

    Is there a way to create an .ASHX HttpHandler that redirects requests to SQL Reporting Services (ReportExecution2005.asmx) ? I have not been able to find an example of this anywhere.
  4. Replies
    1
    Views
    3,038

    Setup Project - Custom Dialog

    I need to create a custom dialog and add it to my installation package. I have been fooling with Orca trying to create one with no luck.

    Can anyone tell me how to create a custom dialog with 2...
  5. Replies
    3
    Views
    1,697

    Re: Return Raw Image from WCF

    Thanks for the advice...I will do so.
  6. Replies
    3
    Views
    1,697

    Return Raw Image from WCF

    I have a webservice and by exposing get/put handlers, i can return raw image bytes of an image to the browser...i need to implement something similar using WCF...does anyone know of any samples of...
  7. Replies
    0
    Views
    2,907

    Add Files as Link + Resx

    I have a WCF Service that has a file in it (Foo.cs). I have a seperate project that I added Foo.cs by clicking Add as Link. The problem that i am seeing is Foo.cs references strings in the Resx...
  8. Replies
    8
    Views
    10,690

    Re: List WCF Method

    I am curious as to why you recommend not using ref?

    We use them often in our service methods. Every method we have returns back a custom class (ResponseMessage) with a bool for success, client...
  9. Replies
    8
    Views
    10,690

    Re: List WCF Method

    I was not aware that you could overload methods in a WCF Service...I know that you cannot in a webservice.
  10. Replies
    8
    Views
    10,690

    Re: List WCF Method

    So would you recommend passing in a string and serializing the list into it and deserializing on the client side?
  11. Replies
    8
    Views
    10,690

    List WCF Method

    I have a method within my WCF Service that looks like so:

    void FooMethod(ref List<object> o)


    I have 2 classes that could potentially be put in the list (either or...not both at the same...
  12. Replies
    5
    Views
    4,490

    Re: ASP.NET Voting Application

    That would be very helpful. Thanks.
  13. Replies
    3
    Views
    2,339

    Re: WCF basicHttpBinding LargeMessages

    Thanks, i had to set the maxiteminobjectgraph to a large number
  14. Replies
    5
    Views
    4,490

    Re: ASP.NET Voting Application

    Thank you for your advice...I appreciate what you listed.
  15. Replies
    5
    Views
    4,490

    ASP.NET Voting Application

    I want to write a voting application where i can list books and have descriptions and images and allow users to vote on them...are there any good sample applications or starter kits for this???
  16. Replies
    3
    Views
    2,339

    WCF basicHttpBinding LargeMessages

    I have a WCF Service and Client using basicHttpBinding. I have a method in the service that returns a List<T> of objects. Everything works fine except when the List is really large, i get an error...
  17. Replies
    2
    Views
    724

    Provider Model

    I have implemented a provider and everything works as long as my provider assembly is in the same directory as my C# Windows Application. Is there a way in the app.config to point to my provider...
  18. Replies
    0
    Views
    907

    SQL Reporting Services + HttpHandler

    I created a new webproject that has a IHttpHandler class. During the ProcessRequest() method, i wanted to do a redirect to Sql Reporting Services, but i keep getting an error stating the underlying...
  19. Replies
    0
    Views
    559

    SQL Report (Subreport in a Table)

    I have a main report and a subreport. I created a subreport on the main report and placed the subreport control in the details of a table. The dataset for the table returns back 5 rows (for this...
  20. Replies
    1
    Views
    867

    Combining Multiple Sql Reports

    I have 3 reports in Sql Reporting Services, is there a way to call the Sql Reporting Web Service and print all of them combined into 1 report?

    Thanks.
  21. Thread: C# Com

    by hoagers34
    Replies
    0
    Views
    681

    C# Com

    I want to expose a method to a C++ Application through COM. I have a method listed below:

    public bool SomeMethod(byte [] arrayOfBytes)

    I am having a problem getting a byte array into my C#...
  22. Replies
    0
    Views
    576

    WSE + AspNet Web Application

    I have a WSE Enabled web service that implements a X509 Certificate Policy and i want to know where the X509 cert resides for the web application.

    the webservice has the certificate installed on...
  23. Replies
    3
    Views
    1,168

    Re: MDIParent inside another MDIParent

    is there anyway to use some other type of control other than a form???
  24. Replies
    3
    Views
    1,168

    MDIParent inside another MDIParent

    Is it possible to make a form that is a MDIParent to other forms a MDIChild to another??? I am getting errors that an MDIParent cannot be MDIChild as well. Is there any way around this??? Please...
  25. VS Addin. Detecting when Debugging Starts

    Is there a way to detect when a user starts to debug a project and if so, how do you know what the debugging assembly is. I want to display some information to the programmer when they begin...
Results 1 to 25 of 231
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured