Is it possible to connect a computer using HTTP Protocol? Hardware and Software Networking by rayidi I'm looking for a process I don't know weather it will work or not. I want to connect a computer to a website using `HTTP Protocol`. Is this possible ? How we can communicate a system having a `static IP Address` from a `HTTP Protocol` ? Is there any way to do it ? Re: Is it possible to connect a computer using HTTP Protocol? Hardware and Software Networking by JorgeM > connect a computer to a website using HTTP Protocol. Is this possible ? Of course.. that's exactly what … at least two components... A client application that uses HTTP to communicate and a computer running a listener on port…Address A static IP address is really not related to HTTP. The host and server could be configured with static … Re: Is it possible to connect a computer using HTTP Protocol? Hardware and Software Networking by JorgeM To do what exactly? Your description is too generic. What do you need or function is needed that your browser is not providing? The browser is the perfect example for what you described. It connects to a web server and requests data using the HTTP protocol. xml POST method using http protocol using php Programming Web Development by findyaseek xml POST method using http protocol i got a link from a travel hotel booking people … request needs to be posted (through POST method) using http protocol to [url]http://xmldev.dotwconnect.com/request.dotw[/url] and it receives… Re: HTTP protocol help Programming Software Development by freemind … all the important stuff. [url="http://www.cpp-home.com/tutorial.php?26_1"]http://www.cpp-home.com/tutorial.php… HTTP protocol help Programming Software Development by trsja56 Hi all, i'm coding something similar to a 'http-server', and i'm having problems with sending files to … Re: HTTP protocol help Programming Software Development by Rashakil Fol What HTTP headers are you sending? Re: HTTP protocol help Programming Software Development by trsja56 I figured out my problem, there was an error in one of the http headers i was sending to the client, thanks to those that replied so quickly. :) Re: Is it possible to connect a computer using HTTP Protocol? Hardware and Software Networking by JorgeM …, you can go to a site like [My Source IP](http://www.mysourceip.com) Assuming that this static IP is directly…. Will you be transmitting some other type of data via HTTP? This is out of my area of expertise, but you… be serving, the client making the request for data, using HTTP to this target computer on the GSM modem, this needs… Re: xml POST method using http protocol using php Programming Web Development by digital-ether …url] or the similar fsockopen() in PHP4: [url]http://www.php.net/fsockopen[/url] With both of these … can use fopen(), with stream_context_create() in PHP5: [url]http://www.php.net/manual/en/function.fopen.php[/url] […stream-context-create.php[/url] There are also many HTTP libraries based on fsockopen and stream_socket_client. You can … Re: xml POST method using http protocol using php Programming Web Development by ShawnCplus …can use fopen(), with stream_context_create() in PHP5: [url]http://www.php.net/manual/en/function.fopen.php[/url] […-context-create.php[/url] There are also many HTTP libraries based on fsockopen and stream_socket_client. You can …these or follow their examples. [url]http://pear.php.net/package/HTTP[/url][/QUOTE] Those are all pretty much… Re: xml POST method using http protocol using php Programming Web Development by digital-ether … to send $xml = 'your xml payload'; // build your http request $context = stream_context_create(array( 'http' => array( 'method' => 'POST', 'header' =>…' => $xml, 'timeout' => 10, ), )); // send it $resp = file_get_contents('http://xmldev.dotwconnect.com/request.dotw', false, $context); [/CODE] Re: xml POST method using http protocol using php Programming Web Development by ShawnCplus [url]http://php.net/curl[/url] Google is your friend. Re: xml POST method using http protocol using php Programming Web Development by digital-ether [QUOTE=riya123;1054433]hi can anybody tell me how to use php with xml post.plz give some example.i go through php site but not able to find it. plz help me asap. thanks[/QUOTE] The last post in the thread is an example of a HTTP POST of XML content. Are you having problems with it? How to send a System.IO.Stream casted to object using HTTP in WCF? Programming Software Development by sachintha81 … e) { //Create end point EndpointAddress epAddr = new EndpointAddress("http://localhost:8000/WCFSampleService/HelloWCF"); //Create proxy proxy = ChannelFactory<… could be Service End Point binding is not using an HTTP protocol. Or as a different cause, it is also possible… Re: HTTP protocol help Programming Software Development by trsja56 Content-Type & Content-Length Re: HTTP protocol help Programming Software Development by Rashakil Fol How about some sample output then. Re: HTTP protocol help Programming Software Development by trsja56 i just get machine code, but it's complete.. meaning i can copy all the code, put it notepad, and save it as the file i'm sending and i can open/view it. Re: Protocol a Software or Hardware Hardware and Software Networking by Rahul47 … it mean when you say "The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems". I… mean what does protocol actually contain? For example what does an HTTP protocol contains… Re: Is it possible to connect a computer using HTTP Protocol? Hardware and Software Networking by rayidi Hey JorgeM, Thanks for the help. Is there any softwares available to do it ? Re: Is it possible to connect a computer using HTTP Protocol? Hardware and Software Networking by rayidi Dear JorgeM, My idea was.... Let us see I have a GSM Modem connected to a computer that having a valid Static IP Address. Now as a PHP Developer i want to connect to that computer and have to listen the COM1 port. This is what exactly i'm looking for. Is this possible ? How to change from http to https ? Programming Web Development by jacksantho ….3.1 . Am having a website, its run using http protocol : [B]http:[/B]//www.example.com I wants to make it to… Re: xml POST method using http protocol using php Programming Web Development by riya123 hi can anybody tell me how to use php with xml post.plz give some example.i go through php site but not able to find it. plz help me asap. thanks Re: Problem playing MPEG 4 in JMF over HTTP? Programming Software Development by jyotirmoy …MPEG-1 file in my JMF studio using file protocol, as well as http protocol. To add MPEG-4 support to JMF, I… in my machine using file protocol. But it can't play the same movie using http protocol. This inability to play movie… over HTTP is documented for some JMF plugins also… Re: question bout http and cgi Programming Software Development by jvignacio [QUOTE=mn_kthompson;777427]If you're talking about the http protocol, then the answer is all of it. When your browser … you trying to do something in python that involves the http protocol?[/QUOTE] nah basically its a question from my text book… question but i guess your right about all of the protocol. Thank you!! Re: Using HTML to HTTP GET Digital Media UI / UX Design by JorgeM … URL. HTML is only markup language. You can use the HTTP protocol with the GET method to retrieve HTML from a target…? There are many tools you can use to inspect the HTTP traffic.. The developer tools built in to some of the…. You can also get into the weeds and use a protocol analyzer. Re: question bout http and cgi Programming Software Development by mn_kthompson If you're talking about the http protocol, then the answer is all of it. When your browser … you trying to do something in python that involves the http protocol? Re: How to Make Http Requests from Borland C++ 5.0 Client Tool Programming Software Development by Rashakil Fol … with GET? "GET" is a part of the HTTP protocol. If I remember correctly, for a simple transaction, you send… the string [inlinecode]"GET /path/to/file.html HTTP/1.1\r\nHOST www.example.com\r\n"… care to look this up; I haven't written an HTTP client in a while, you see :). Could you give a… Re: Info on http uploads? Programming Web Development by Venom Rush …] Php.ini controls the file upload size via 'upload_max_filesize'. The http protocol only allows one connection for uploads (this is about all… Re: Info on http uploads? Programming Web Development by Venom Rush I think everyone is misunderstanding what I'm after. I'm looking for a resource that explains the ins and outs of the http protocol related to uploads. I don't need a work around on how to upload multiple files using php or anything like that. I already work around that issue by using iframes.