1
vote
2answers
39 views

How to send text/html data to a browser

Hi i asked a question before here : how-can-i-integrate-php-with-my-http-server i programmed a personal web server and i tried to integrate it with PHP using the PHP-CGI , i run a system command ...
-1
votes
3answers
93 views

how to get version of default browser on my mac os x

I want to get system information in mac using objective C. I am searching a lot but did not got single line of code for my use.They provided solutions via javascript but i want them in objective C. ...
0
votes
1answer
141 views

How to get http response header in npapi plugin

i am new to plugin development. I was told to use Firebreath, for developing npapi plugins, and it turned out to be very easy. Now, i wish to access the http response header of the response passed on ...
-3
votes
2answers
95 views

C code to open web browser

What are some possible ways if any to execute a web browser on someone else's computer? I have a server and now when I use Process.Start. When someone executes that code from another computer the ...
0
votes
1answer
52 views

Is it possible to pass control back to browser after plugin is loaded

I have created NPAPI browser plugin. My plugin can handle certain mime-types, but i wish to give the user an option whether he wants to load the content using plugin or browser should take the default ...
0
votes
1answer
83 views

NPAPI plugin not being invoked always

I have written NPAPI plugin using firebreath. It works fine for all the registered mime-types. The plugin is registered for video/x-flv also. Now, whenever i type a url in address bar whose response ...
-4
votes
1answer
55 views

Console in browser [closed]

here is the scenario a user will paste his c code in browser, that code will be sent to my server. Server will compile the program and execute it. on encountering printf it will print text on browser ...
0
votes
2answers
92 views

Best open source OS choice and configuration for embedded application [closed]

This is not a question where an answer is right or wrong, it's more of a discussion topic where I would like to hear your ideas. I'm developping an embedded C application, which is controlled by a web ...
2
votes
2answers
168 views

How to port a C game to the browser

Here's my aim - to take the ASCII roguelike Angband and create an online console where users can play the game server-side. From my superficial viewpoint this seems like it should be doable - as there ...
2
votes
2answers
394 views

Create a c/c++ application (with Xlib) to render SWF files

Constraint : AS to be in C/C++ SO basically, the idea is to create my own window application (on a Linux environment) and load up (play) my swf file. Pretty "simple" question. I was thinking to go ...
0
votes
0answers
94 views

Getting a URL text inside any browser using XLIB

I am currently writing a module in an application which requires to capture the URL that is under the current tab (here a tabbed browser is assumed) in the browser. I understand that the browser may ...
0
votes
2answers
504 views

How to make a C program interact with web browser? [closed]

Objective is to create a windows program in C which can send strings of data to browser and vice versa. I know it can be done with Websocket but I am not able to find any example code for a simple ...
0
votes
2answers
96 views

How does web browser caching work when a new tcp connection is created by the web server?

During normal browser caching, will a browser re-fetch all file contents if the web server breaks and reopens a tcp connection to the client? Or will it still cache all contents and only update what ...
0
votes
1answer
161 views

Generating key press in browser in C

I am running Fedora linux and I am trying to simulate key strokes in the browser (specifically the arrow keys). What is the best way to do this in C
-1
votes
2answers
887 views

how to write a web browser from stratch use c [closed]

These days I'm aware of the powerful web browser. In order to know what happend behind the screen. I want to write a simple web browser. But When I try to find document about that. Nothing find! Any ...
1
vote
3answers
332 views

Is it possible to embedd compiler inside browser

I have in site topcoder.com where we can create and compile code in the browser. is it possible to code something like that in my browser i can write code in text editor and then i have compile ...
0
votes
1answer
569 views

C Client/Server Communication with HTML Page

newsockfd = accept(sockfd, struct sockaddr *) &cli_addr, &clilen); FILE *write = fdopen(newsockfd, "w"); fprintf(write, "some html code is here"); fflush(write); n = ...
1
vote
4answers
750 views

Which is better choice for browser's tab: multi-thread or multi-process?

I wonder which is a better choice for implementing tabs in a web browser? (Ex: Firefox use multi-threading for their tabs, while Google Chrome use multi-processes ... )
-1
votes
3answers
3k views

How set a website as homepage in IE, Firefox, Chrome and Safari with C++?

Is there a way to set a website like google.com as homepage through C++ or C ? How ?
0
votes
1answer
197 views

Looping over all tabs in IE 8

Question: I want to loop over all open tabs in Internet Exporer (for all open IE windows) and save the URL in a text file. How can I do that ? I have windows 7 32 bit and IE 8. Code for ...
3
votes
4answers
2k views

Launch web page from my application in Linux

I have an application that launches a webpage in the "current" browser when the user selects it. This part of my app works fine in the Windows version but I can't figure out how to do this in Linux ...
6
votes
5answers
2k views

Launch web page from my application

Ok, this probably has a really simple answer, but I've never tried to do it before: How do you launch a web page from within an app? You know, "click here to go to our FAQ", and when they do it ...
7
votes
27answers
3k views

What is a good tool to aid in browsing/following C code?

I sometimes need to modify OSS code or other peoples' code (usually C-based, but sometimes C++/Java) and find myself "grep"ing headers for types, function declarations etc. as I follow code flow and ...