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

Search:

Type: Posts; User: dreamer60

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    565

    Re: Doing muticast

    I believe this kind of reply is certainly not fair.
  2. Replies
    2
    Views
    565

    Doing muticast

    Can someone point me a basic good sample of doing multicast in VC++?
  3. Replies
    0
    Views
    1,729

    MS FlexGrid control in VC++ 2010

    Can I use MS FlexGrid control in a native Visual C++ 2010 app? If yes, how should I instantialte it? Or is there any other grid control I can use in native VC++ 2010 app?
  4. Replies
    2
    Views
    973

    Re: Creating Metro Style apps

    OK. I found out..You have to install Windows 8 Consumer Preview and Visual Studio 2011 Express Beta for this. You can also install Windows Developer Preview.
  5. Replies
    2
    Views
    973

    Creating Metro Style apps

    Hi,

    I want to develop metro style apps for learning and demo purposes in c++. Which is the best set of sofware for this purpose? ie. Should I install Windows Developer Preview or sould I install...
  6. Replies
    0
    Views
    1,063

    WWS API vs WCF

    Hi
    the question may sound rather abrupt! Is WWS API related to WCF in any manner? Can WWS API be used to access a WCF web service?Thanks in advance.
  7. Replies
    1
    Views
    598

    Getting file icon

    I am trying to get the icon of a txt file using the following code:



    CString csFilePath( _T( "D:\\Person\\Hello.txt" ));
    SHFILEINFO FileInfo = { 0 };
    SHGetFileInfo( csFilePath, 0,...
  8. Replies
    2
    Views
    1,360

    Re: Web Service end point address

    Thank you , Igor. I was actually trying to call a web service from a c++ clint. All I know about the service is the url and the end points. ie. full urls of each method exposed by the server. I am...
  9. Replies
    2
    Views
    1,360

    Web Service end point address

    As we know a web service can return data in any format like pox, json, soap etc. I suppose returning data in different formats is implemented by specifying endpoints for these formats somewhat like...
  10. Replies
    0
    Views
    2,761

    CHttpFile::AddRequestHeaders

    We can add headers to an http request as in the below format.( This is an example only and not directly related syntax of AddRequestHeaders() API.



    ( "Content-Type"),...
  11. Replies
    1
    Views
    795

    Accessing web services

    I am trying to access a web service from a naive c++ application via IServerXMLHTTPRequest interface. I believe the web service is a WCF one. Currently I am accessing the web service via the service...
  12. Replies
    2
    Views
    702

    Re: Saving Data in an MDI application

    Thank you GCDEF. I am using CImage class to load the image. I shall try your suggestion and get back to you.
  13. Replies
    2
    Views
    702

    Saving Data in an MDI application

    Hi,

    I am writing an image editing application as MDI app in VC++ 2010. In this app, I am loading images( bmp,jpeg, gif, tiff etc ) and doing operations on it like drawing lines and rectangles,...
  14. Replies
    1
    Views
    696

    MDI application

    Hi,

    This question may sound a bit dumb..but there are File::OnFileOpen() menus for both CView and CDocument in an MDI application. I am confused about the two. Why is it so? Why do we need two...
  15. Replies
    0
    Views
    473

    Handling proxies

    Hi,

    I am calling a web service written in c# from a vc++ client application. The web service is invoked using methods of IServerXMLHTTPRequest interface in client. But currently there is problem...
  16. Replies
    2
    Views
    781

    Return type checking

    Hi, this question might sound silly, but still.. Suppose I have a boolean function which checks for the existence or not of a particular value. If the value exists it returns true and false...
  17. Replies
    0
    Views
    1,249

    Parsing http response

    I have a simple response from a http request as follows obtained using IServerXMLHTTPRequest.



    <?xml version="1.0" encoding="utf-8"?>
    <string xmlns="http://tempuri.org/">MyValue</string>

    ...
  18. Probem passing string type to web service method

    I don't know if this is the correct forum to ask this question. But I have an asp.net web service with a method method GetCapital() as follows:



    [WebMethod]
    public string...
  19. Re: error: Name cannot begin with the '.' character,

    Hi, that problem got solved. I used std::string. That solvd the problem...Now I have another issue..

    I am calling a method GetCapital of the Web service. It takes a string as argument. So against...
  20. Re: error: Name cannot begin with the '.' character,

    How can we enusre this? I am hand coding the xml file..
  21. error: Name cannot begin with the '.' character,

    I am calling a web service writen in C# hosted in IIS using SOAP. I form the SOAP string for the SOAP request the follwoing way:




    CString csSoapString;
    csSoapString = _T(...
  22. Replies
    1
    Views
    912

    Calling web services

    I am trying to call a web service written in C# net using Wininet. The web service has been hosted in IIS. The web service url is /Trial/Service1.asmx and it has only the default HelloWorld method in...
  23. Replies
    5
    Views
    1,200

    Re: Calling WCF web service

    Any links which explains calling web service from c++ app using c++/CLI?
  24. Replies
    5
    Views
    1,200

    Re: Calling WCF web service

    Doesn't managed code require Dot Net Framework to be distributed along with the client that sonsumes the web service?
  25. Replies
    5
    Views
    1,200

    Calling WCF web service

    Hi,

    I have created a WCF web service in C# and has hosted in IIS. The web service has some simpe methods like displaying strings. I can connect to it from a C# client locally and call its...
Results 1 to 25 of 143
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured