https

Getting Mobile Number through Https request in GPRS

Hi all, Generally when we are using GPRS connection , the request will be sent to appropriate host as a http(s) request . In receiving side ( PHP ) , we are able to get the IP address using $_SERVER or $_REQUEST variable . Like that is there any way to get the mobile number that means from which mobile number request being given. Ca...

C# POST and be transfered to another site (https)

Hi! I am supposed to post some data to a site, using C#. I could post by just using a formular and simple html code. But I do not want any user to be able to look at the source code. My basic code is: WebRequest request = WebRequest.Create("https://blabla.bla"); request.ContentType = "application/x-www-form-urlencoded...

how do I send userid/password in an https session

I've built a request in Fiddler and need to send authentication info with the https request. Where would I put these credentials and tell Fiddler to use them? ...

Selenium - Cross domain and HTTPS problem

Hi everybody! I use Selenium to test my website. The website need to access an external catalog to select some items from it. The problem is this catalog is published on another domain with HTTPS protocol. I've searched and read many topics on the internet about Selenium and Cross domain problems, but I still don't find the answer yet. ...

webrequest.GetResponse https throw error 403 protocolerror on windows 2008 x64

Hi, I have a application use Webrequest to post and get some data from a server with a SSL certificate. It is all very well except on Windows 2008 x64. The server return error 403 forbidden. thanks in advance. burns ...

Java http connection

I want setup a http connection to send request and get the response in an stand alone java application, can any one help me how can i proceed with this???? ...

Already using rewrite module to redirect to ssl - overkill to also do in asp.net?

I'm using the IIS 7 rewrite module to redirect a page to use https if http is detected. Is it possible that the rewrite module can be bypassed? Would be overkill to also put in an https check in the page_load code as well? ...

Https for a dynamic IP intranet web server (swaps between two IPs for failover purposes)

Hi all, We've got an Asp.Net / IIS6 web application which sits on two servers in separate data centers on our intranet in an active-passive failover configuration. Lets call these servers MyAppSpringfield and MyAppShelbyville. Now we've got a DNS name set up called 'MyApp', so that the users can simply access the application through ht...

how to post xml over https web service in java

how can i post xml to https web service and get the xml in response... the requirement is this.. The web service accepts a parameter payload in which we can pass xml and i will be getting response xml. the url looks like this: https://servername/aaa/bbb/us/ws.do? ...

WCF using Transport always attempts to use HTTPS when I don't want it to.

I keep getting the following error "Could not find a base address that matches scheme https for the endpoint with binding WebHttpBinding. Registered base address schemes are [http]." This started because I went to Basic Transport Authentication by adding: <webHttpBinding> <binding name="secureBasic"> <security mode="Transpo...

To remove conflict in http and https in IE I have done below given solution, please someone tell me is it Browser dependent?

<a href="//www.mydomain.com/" title="Commerce Pundit" target="_blank" class="normaltext-11pt-link">Om The Eternity</a> On click on the above link is browser dependent? will it create any problem in any browser in any case? is it good idea to avoid the mentioned conflict? ...

Anyone using TortoiseSVN with SSL and a relative path for the bugtraq:url ?

(NOTE: All fake URL's below are shown as https:/ or http:/, with just a single slash.) I've spent most of the day trying to get TortoiseSVN to work with my bug tracking system using a relative URL for the bugtraq:url parameter. I'm using SSL on the repository with a self-issued certificate. I'm using VisualSVN for the server and clien...

How to use https and how things differ

Hello, How would you use https ?, would sending information via GET and POST be any different while using https ? Any information and examples on how https is used in php for something simple like a secure login would be useful, Thank you! ...

https connection in android

How to setup a https connection in android to get a response type of XML ....? ...

force client browser URL switch from http to https

Hi all, I have a specific set for my websites. Apache on port 80 stunel on 443 forwards decrypted msg to 80 stunel on 2222 forwards encrypted to 443 WAN-> NAT 443 -> stunel:443 WAN-> NAT 80 -> stunel:2222 This obviously uses "WAN ssl" only for connections on port 443 from WAN. Is apache mod_rewrite able to force http:// like url to...

What happens on the wire when a TLS / LDAP or TLS / HTTP connection is set up?

I'm rewording my question so hopefully I can get a better response. I asked a similar question on serverfault here, and think that a proper and valid TLS server is one that expects the "STARTTLS" command. Is it true that STARTTLS can be issued to a properly configured LDAP or HTTP TLS server without needing an extra port? I know tha...

Disable hostname checking for SSL connections?

Hi guys, I'm using clojure-http to make the following POST: (clojure-http.resourcefully/post "https://android.apis.google.com/c2dm/send" {"Authorization" (str "GoogleLogin auth=" auth-token)} {"registration_id" registration-id "data.msg" "blah" "collapse_key" "blah"}) And getting this exception: java.security.cert.Certifica...

Secure authentication with GWT and GAE over https?

I want to implement a custom user authentication system in my appengine app. I don't want to use sessions. I'm a newbie in this area, so I have two basic questions: 1: Is it secure to just send a username and password with every single RPC over https? What do I need to do to keep that username and password secure on the client end? ...

How to change HTTP protocol for HTTPS on a MVC2 application???

I have an application developed on MVC2 but I need it to change from HTTP to HTTPS after authentication. How do I manage that and where do I have to put the code? Thank you, Ignacio ...

How can I access the remote WSDL provided by a webservice based on https in java code or ant-target?

How can I access the remote WSDL provided by a webservice based on https in java code or ant-target? In other words,I want to use the webservice in java code and jar the code generated by the wsimport. ...