views:

214

answers:

0

My url is : https://virtual.app.c7beta.com/rpc/json?c=Sticky&m=get_user_notes

And I got the following error:

Object not found!

The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

If you think this is a server error, please contact the webmaster. Error 404

My code works fine if I am not using https -- and instead using http.

Also sending my httpd-vhost.conf ... maybe something is wrong in there:

<IfModule mod_ssl.c>
    <VirtualHost 192.168.0.102:443>
        ServerName virtual.app.c7beta.com
        DocumentRoot "C:\development\app_server\httpdocs"
        SSLEngine on
    SSLCertificateFile    C:\xampp\apache\conf\ssl.crt\server1.crt
    SSLCertificateKeyFile C:\xampp\apache\conf\ssl.key\server1.key

    <Directory "C:\development\app_server\httpdocs">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
        SSLRequireSSL
    </Directory>
    </VirtualHost>

    <VirtualHost 127.0.0.1:443>
    ServerName virtual.c7beta.com
DocumentRoot "C:\Users\zee\Documents\Flex Builder 3\CLOUD\bin-debug"
    SSLEngine on
    SSLCertificateFile    C:\xampp\apache\conf\ssl.crt\server.crt
    SSLCertificateKeyFile C:\xampp\apache\conf\ssl.key\server.key

<Directory "C:\Users\zee\Documents\Flex Builder 3\CLOUD\bin-debug">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
        SSLRequireSSL
    </Directory>
    </VirtualHost>
</IfModule>

Regards Zeeshan