0
votes
1answer
58 views

HTML & C Programming

I am writing a dynamic webpage that is compiled and dynamically loaded using a C program. I have been writing the code by using: printf ("<p><h1>Hello world!</h1></p>\n"); ...
0
votes
2answers
31 views

What technolgies and protocols would one use to allow a c program to start and interact with a web server?

Here is a simplifed example. I have a c program that runs as a daemon on an embedded linux system. For example we will say the program is a calculator that just does addition. When someone starts ...
0
votes
0answers
30 views

UPNP change port to 80

I am using libUPNP 1.6.6 to discover my device. For testing I am using the basic TV device sample file provided with the libUPNP. But libUPNP will use the different port. I run tv_device in my board ...
0
votes
1answer
42 views

Developing a Web Server by Windows Socket Programming C

I am a beginner of C and a school assignment requires me to write a web server that can accept the request from web browser (IE, firefox...etc), and give a proper response. I used Visual Studio C++ ...
0
votes
1answer
92 views

How to use HTMLElement class in C/C++ code

We have been using IHTMLElement and IHTMLElement2 scripting interface to access web objects and its properties. Right now we are in a situation, want to know the client area occupied by the element, ...
0
votes
1answer
51 views

Writing String to File in C

I am in the process of writing an HTTP client that basically goes to a webpage and downloads the content to a separate file, which the user defines. I am having trouble not with the act of writing to ...
-1
votes
1answer
29 views

Html library for extract text

i want to extract the cost of the card from a page like this: http://magic.tcgplayer.com/db/magic_single_card.asp?cn=Black%20Lotus What library i have to use for do it in C? And for download the ...
-3
votes
1answer
72 views

get HTML content from C code [closed]

I implemented a Java code that can send a request to a remote website and retrieve data from it. But I want the same code in C, but I can't find so much help in the C library. Can any body give me any ...
0
votes
2answers
86 views

Extract plain text from an html file in C [duplicate]

I am really desperate. I need to extract all html elements including html tags. I want to retain just plain text. I am required to do this in C. I am discouraged to use Regex. If I use string ...
0
votes
0answers
44 views

Problems with Parsing

How do I parse an html/txt file using only strtok and/or strsep? I'm trying that saves the text parts of a wikipedia article to a .txt file. The first part of my code allows me to download the ...
-7
votes
1answer
65 views

What function to use? [closed]

I have used strtok_r to remove symbols in the html string. But how can I remove html tags? I need to do this in C ? Thanks! What function in C can be used to remove those tags and html elements? I ...
1
vote
0answers
69 views

Going from theory to real world practice [closed]

There are a couple similiar questions to this but I have yet to find solace in any of the answers. I am a student of computer science at a university and I'm having trouble breaking into the "real ...
0
votes
1answer
34 views

POST HTTP Response

I'm making a simple C web server that parses a POST request containing and xml body. I am trying to send back the response, but I cant seem to get it right. Here is my code: char res[2000]; ...
1
vote
2answers
85 views

How to create a html tree?

I need to dig a bit in some html files and I wanted to first transform them into the readible form of a tree one tag at a line. Nevertheless I have no experience in html. Could someone correnct my ...
2
votes
1answer
178 views

Programmatically extracting tables from html files with c/c++

I'm looking for better ideas for extracting tables from html files. Right now I'm using tidy ( http://tidy.sourceforge.net/ ) to convert a html file into xhtml and then I use rapidxml to parse the ...
0
votes
3answers
134 views

creating login feature cgi-html in c language.(No PHP,Apache)

I am working in embedded environment. I have Atheros development board. I want to create login page using cgi and html only. I found one library libcgi. I have cross compiled that. I have checked the ...
1
vote
1answer
76 views

How to maintain session on Atheros board using c for access web page

I am using Atheros development board. The stack is LSDK-9.2.0_U10.5.13. Linux version is mips-linux-2.6.31. I have c file, html, js and css files on board. I have not used cgi library or any scripting ...
1
vote
3answers
317 views

How do I run a program locally by clicking an HTML form button?

I have a compiled C++ program called "main". Instead of running the program from a terminal, I would like to click a button on a webpage to run it. How would I go about doing this? In this ...
-2
votes
2answers
52 views

c program that acting as some website server [closed]

As far I know, when we enter IPADDR:PORT in firefox URL box, the firefox will try to make a connection with the program running on that PORT at IPADDR. If that is true,I wanted to know whether the ...
1
vote
1answer
144 views

Parsing HTML using libxml2 gives entity ref issue

I'm trying to write a small program to extract some data from a web page using libxml2. Since the data is local in an HTML file, I decided to use the following as a starting point to get the HTML into ...
1
vote
2answers
51 views

Whitespace separate in c

I am doing a cgi. I am using POST method in the html and I receive a string from stdin in C. I would like to get the content of a file that i upload with post method. So I have to reach the part of ...
3
votes
4answers
239 views

How to check if HTML file has correct syntax?

I'm quite new to C, though I've learned C and C# and some other minor languages. My question is: how can I check if a HTML file has correct syntax? I mean: ...
1
vote
0answers
30 views

Loading many attribute-based images into divs

I come from no server-side programming knowledge, so I have an issue. Here is the situation: I have a large group of pictures, about 1000, that are related to each other in some way. I have written ...
1
vote
1answer
216 views

Simple HTML layout engine?

I need a HTML layout engine that supports the following: rfc2070 HTML 2 MathML Image formats pulgable using a custom plugin format Drawing and hyper-link clicking independent of windowing system C ...
0
votes
1answer
59 views

What are the possible reasons why a cgi runs on xampp but not on a remote ubuntu server [closed]

Backstory: Last time, I was working my way through getting the REQUEST_METHOD via CGI. I had help regarding the situation where getenv() returns NULL and the way to effectively check if an html page ...
1
vote
2answers
76 views

Howto get_env(REQUEST_METHOD) w/o ERROR 500

I'm working on a CGI file using C that does things only if the request method is POST. int main(void) { char *method_str = getenv("REQUEST_METHOD"); int iMethod = ...
0
votes
0answers
45 views

LibCurl html output in C

I am trying to do a form submit and authentication using Curl library in C. I am submitting a POST request and successfully authenticating, but the returned HTML has all the relative links which are ...
3
votes
2answers
127 views

Is there any library for html validation in C/C++?

I'm writing a code that accepts a HTML page, does some modification to it and then shows it on the web. My requirement would be to validate this HTML code before processing it. What should I do ??
0
votes
1answer
59 views

HTML parser with output feature [closed]

I am looking for an html parser that can load a document, so I could make changes in it and then output altered data as html code. It would be nice to have a c-library that can do it. What can you ...
1
vote
3answers
290 views

HTML Parser Library For C

I just need a suggestion. I have a program that takes valid html, and saves it to a file, I need a way to parse this html file to retrieve every image documented within that html file. (e.g. ...
-4
votes
2answers
115 views

Need a library for HTTP/HTML network programming in C/C++ or Python [closed]

I don't know that much about network programming, but I am experienced in programming (C/C++, Assembly, Lisp, etc.) and know some basic HTML and Javascript. I need a good library that can be used for ...
0
votes
4answers
1k views

Calling C functions inside javascript

The javascript is printing out the HTML onto the page example below, is it possible to call a C function on it for example in C to convert something to another language there is a function ...
0
votes
0answers
214 views

How to parse HTML by using libxml2? I need to real code examples

I'm looking for an code example how to parse HTML by using libxml2. The official web page just contains prototype declarations and some description. I need to real code examples. XPath and DOM of ...
0
votes
2answers
61 views

Prompting for file download C backend

I have an FPGA that is hosting a website with an html and javascript front end and a C backend (ugh). Is there anyway to send a file from the C backend to the client? I'm talking to the backend via ...
0
votes
0answers
179 views

CGI Script Behaving Mysteriously on a thttpd server

I just can't figure out why the output of CGI script is unstable despite the input being same in all run. I have this CGI script[in C], Which generate an html page which has a table that reproduces ...
1
vote
1answer
94 views

mxml library to parse HTML

I wonder is it possible to use embedded library mxml(it deals with XML files) to parse HTML file? I'm talking about embedded linux cgi application. Thanks!
2
votes
2answers
337 views

C/CPP version of BeautifulSoup especially at handling malformed HTML

Are there any recommendations for a c/cpp lib which can be used to easily (as much as that possible) parse / iterate / manipulate HTML streams/files assuming some might be malformed, i.e. tags not ...
0
votes
1answer
96 views

C: How to extract the doctype of a HTML page

I need to extract the doctype of a HTML page which may be XHTML, HTML html or WML, using C or C++. I will be giving the input as a HTML file or as an array. if html pages does't contain header then ...
0
votes
1answer
54 views

Using filepath as a hyperlink in HTML

I Wonder whether I can use pdf Source[as hyperlink] as a file path in system related to script's running directory. part of code is. <a href="../pdfs/sample.pdf">pdf</a> I am ...
1
vote
1answer
498 views

where shoud I install webkit's plugin?

I want to use webkitGTk to play html videos or local videos ,so it need some plugins such as libflashplayer.so .I want to know where should I install these plugins and how to found it? My wor ...
0
votes
1answer
120 views

Need help regarding CGI scripting with C

I need to process some of files stored on the server side and display the list of files on a web page in a browser. My server is set-up on an arm-processor and it is mini(thttpd). And only support CGI ...
1
vote
1answer
69 views

Why does my browser sometimes not recognize my server's header?

If my browser tries to do an HTTP GET on a file that isn't on my server, I just write HTTP/1.0 404 Not Found\r\n\r\n to the port. In my browser's web console, I can see that sometimes the ...
1
vote
0answers
112 views

How to open a html file to play flash files with webkitgtk?

My work enviroment :linux GTk+3.0 webkitgtk . And I want to open a html file to play flash files with webview,I'm successful in opening a common URL like "http://www.google.com",but when I want to ...
0
votes
0answers
177 views

Internal server error for C/CGI file, Server error:“Premature end of script headers”

I'm writing a CGI file that GETs data from an html form. I've set the permission to 755, the file compiles (wrote script in C), path is correct. I still can't open the page!! I have no idea what to ...
0
votes
1answer
122 views

403 forbidden error cgi

I have a public html folder with my html pages and CGI script written in c. Within that, I have my cgi-bin folder with my GCI executable. However when I try to access my cgi page in my browser, it ...
1
vote
3answers
467 views

Parsing HTML form data

When I simply print the query I get: one=1&two=2&three=3&four=3&five=3&six=3 Still not working!!!! I am about to go nuts. #include <stdio.h> #include <stdlib.h> int ...
1
vote
1answer
222 views

Awesomium C no response from awe_webview_set_callback_js_callback

I've asked this question on the Awesomium forms but I haven't received any response yet and figured I could speed things up by asking here too. I am unable to reach any break point within my ...
0
votes
1answer
87 views

C Linux HTML strip not working

My code below takes a URL inputted by the user and prints out the HTML coded content of the page. The first for() loop of the code is meant to strip out the code between the <...> in the HTML but i ...
0
votes
1answer
329 views

C/C++, libxml2: parsing HTML fragments

I need to parse real life HTML documents. In most cases they are well formed, but sometimes (and it can not be ignored) they appear as fragments having more than one sibling at the root level. ...
-1
votes
3answers
297 views

Web based compiler

I have been working on project, to make a website which read files(c/c++ text file) and compile the code written on it. How can I use compiler which is on my server?

1 2 3