Tagged Questions
0
votes
1answer
104 views
Unsafe JavaScript attempt to access frame errors with vimeo
Site was working last time I checked but it now seems many of the JS aspects are broken. Tweets have vanished and the jQuery colorbox no longer works?
http://www.jamesperrett.co.uk/
Get the ...
-1
votes
1answer
92 views
Reverse Engineering Web Applications [closed]
Aloha, Stackoverflow.
I frequently come across web applications, and wonder to myself, "How could I write a script/application which would interface with that?" (purely academic, not for spamming ...
0
votes
0answers
53 views
How do I get navigator.registerProtocolHandler() to work
I want to write a web application that opens a link in a custom protocol, like myprotocol:someinformationgoeshere. You know, sort of like mailto:. For example, if people had in their HTML a link of ...
0
votes
1answer
38 views
How to check if the OS handles certain URL protocols? (cross-browser)
I have set my Cocoa app to be an URL handler for com_example_myapp: protocol (using this great tutorial). So, the link in Safari <a href="com_example_myapp://link"> now opens my app. Cool.
But ...
0
votes
2answers
42 views
getting an error "ns_error_unknown_protocol
im getting an error "ns_error_unknown_protocol" when i run this code in firefox.whats the problem with my code?i run this in google chrome,but it runs without any problem.it doesnt display any error ...
6
votes
3answers
196 views
XHR streaming closes connection by design?
I was reading this article: http://blog.pusher.com/what-came-before-websockets/, and the following text gets my attention:
XHR Streaming worked in all browsers the responseText of the
...
0
votes
0answers
70 views
Trigger javascript function on custom URL protocol
In a web page containing an embedded PDF I would like my javascript to handle clicks on hyperlinks which are inside the PDF document.
In this question they suggest injecting javascript in the PDF ...
6
votes
1answer
103 views
Using // instead of prototcol [duplicate]
Possible Duplicate:
Is there any downside for using a leading double slash to inherit the protocol in a URL? i.e. src=“//domain.com”
I have seen the following logic in many places, f.ex the ...
4
votes
3answers
93 views
What is the ws://?
I was inspecting the stackoverflow pages for curiosity and noticed that interesting url: ws://sockets-se.or.stackexchange.com/
I would like to know more about the ws protocol but I don't even know ...
1
vote
1answer
418 views
How to listen for events on popup window with different protocol (HTTP vs HTTPS)?
I want to be able to securely authenticate users on my site from any non-secure page. So I made a window.open() popup to open a secure sign in form. The plan is that after the user signs up or ...
11
votes
2answers
5k views
Getting http/https protocols to match with <iframe> for maps.google.com
I am trying to use an <iframe> include of a google map, however the console is throwing several errors due to a mismatch, but there is no apparent mismatch, so I'm assuming it must be a ...
2
votes
1answer
175 views
Get custom protocol response
I was learning about custom protocols for few days, and there's one thing that I don't understand.
I know how to start an app with custom protocol, but My question is,
Is it possible to get apps ...
0
votes
2answers
326 views
How to remove protocols from link dialog (ckeditor)
I want to remove the option for the "other" dialog in ckeditor (links -> protocol).
It's confusing for the user; they don't specify a protocol, then the link looks for a file on my server (instead of ...
0
votes
6answers
110 views
Are Ajax requests guaranteed to return in sent order?
This question seems to suggest that Ajax requests are not guaranteed to return in their sent order. However, Ajax uses the TCP protocol, which seems to guarantee that the packets will return in their ...
17
votes
2answers
6k views
Chrome Console Error: chromeHidden.Port.dispatchOnDisconnect
NO idea what that means. Been developing some facebook apps and some apparently related js errors show up.
According to this thread it's a lazy load issue. I am running chrome with the default ...
0
votes
1answer
131 views
Building a custom protocol for a backbone rails application
I'm working on a backbone rails application that needs to poll the server to sync collections and models that may have changed. The prototype I have built works by continuously running the fetch() ...
8
votes
2answers
575 views
Send multiple application protocols requests ( Similar to mailto: )
I work with an application that has created it's own protocol such like MS did for its MSN client msnim:chat?contact=test@test.com
However, I need to create a PHP or javascript (or combo) to ...
1
vote
1answer
154 views
Is it possible to use http scheme with desired port say 6500 instead of ws and wss scheme in WebSockets?
I would like to know,
if there is any way possible to use http:// scheme instead of ws:// or wss:// schemes for Websockets in HTML5, if not then why not?
What are the various ways to declare ...
2
votes
1answer
798 views
Problem sending data in hybi-10 WebSockets server
I'm trying to implement the new hybi-10 protocol in a python server and for now I succeeded in the handshake and receiving data from the client (JavaScript) but now I'm having problems with sending ...
3
votes
1answer
2k views
JavaScript and WebSockets: using specific protocol
I'm currently working with WebSockets and a PHP server: it works very well with Google Chrome and Opera, but not with Firefox 6.
I think it's due to the protocol version this last uses: I see ...
9
votes
2answers
12k views
javascript: get protocol,domain and port from URL
I need to extract the full protocol, domain and port from a given URL:
for example:
https://localhost:8181/ContactUs-1.0/contact?lang=it&report_type=consumer
>>>
https://localhost:8181
...
0
votes
1answer
29 views
A common way of requesting the execution of scripts through url/post parameters?
We are implementing a fly out messaging system that will normally fly out while the user interacts with a page, but sometimes will need to fly out after a page loads.
For example, after setting a ...
0
votes
1answer
53 views
Tips for locally debugging web pages that contain protocol relative URLs
There is probably a better title for I'd like to accomplish, but the details should be helpful.
I've recently learned that specifying a script's src path as //some.domain.com rather than ...
2
votes
1answer
205 views
How to have browser open a file from a custom protocol?
I currently have a url that looks like this: protocol://folder/file.js
I can open this same file from my local disk using a url like file://C:\folder\file.js
When the application is run inside its ...
4
votes
2answers
571 views
shorthand http:// as // for script and link tags? anyone see / use this before?
the question is as follows:
if you take a look at any site using addthis (the share button)...
once you float over the addthis button, and all of the required assets load take a look at the body of ...
3
votes
1answer
739 views
C.S. Basics: Understanding Data Packets, Protocols, Wireshark
The Quest
I'm trying to talk to a SRCDS Server from node.js via the RCON Protocol.
The RCON Protocol seems to be explained enough, implementations can be found on the bottom of the site in every ...
0
votes
2answers
793 views
dynamically switch (http)s on pages content to secure protocol (javascript)
I'm going to dynamically change the protocols in source of all pages on Blogger.
Eg All http:// change to https:// on below items:
<link rel="..." type="..." href="http://www.blogger.com/..." ...
10
votes
4answers
12k views
WebSocket Server in Python?
Is there a WebSocket server, built in Python, that supports the protocol that Google Chrome uses (I think it's the latest, but I'm not sure)?
I need it for a small project I'm working on with ...
1
vote
1answer
84 views
Does this script follow common standard? (Javascript/Html)
I just made a simple Javascript Quiz script here:
/* Dade Lamkins. 2011. */
var Questions = [
{ Question: "What is 5+2?", Values: ["7", "9", "10", "6"], Answer: 1 },
{ Question: "What is ...
2
votes
1answer
220 views
Open files from a web application with another web application?
So these days we want things to be on the cloud.
In the desktop area we could use one application to create a file, then another to open that file.
I wonder how you accomplish this file sharing ...
2
votes
2answers
1k views
Using Javascript to connect with server using protocol other than HTTP
Can Javascript be used to connect with a server with a protocol other than HTTP or FILE? Ideally, I would like to connect to an SMTP server using Javascript.
0
votes
2answers
182 views
Detect registered protocols in Windows from web page using IE
Programs for MS Windows can associate some protocols with them. So when you click in browser, registered program for protocol "myprotocol" will be opened. Like "mailto:mail@mail.ru" opens your Email ...
2
votes
1answer
618 views
How to detect whether a protocol is supported through web browser?
Similar to iTunes' 'Link Maker' (http://www.apple.com/itunes/linkmaker/faq/). Through web browser, iTunes webpages is capable of finding out if itms:// has been registered on client workstation, hence ...
1
vote
2answers
237 views
Does a JavaScript bookmarklet need to be a valid URL?
I've searched around but I can't find any information about this; maybe I'm not using the best search terms.
Does a JavaScript bookmarklet - i.e., a link that uses the "javascript:" pseudo-protocol ...
1
vote
6answers
3k views
How to I send data from JavaScript to PHP and vice versa?
How do I go about passing data from JavaScript code to PHP and back.
Right now, I do this is a round about way:
PHP to JavaScript:
I would simply use the inline echo to send the data:
<script ...
18
votes
15answers
13k views
How to detect browser's protocol handlers?
I have created a custom URL protocol handler.
http://
mailto://
custom://
I have registered a WinForms application to respond accordingly. This all works great.
But I would like to be able to ...
