Dreamweaver cs6 PhoneGap impossible to login

Afrer creating new 'Mobile Starter -> jquery with theme' project i go to Site->PhoneGapBuildService->PhonegapBuildService. Then i fill it with my login data (veryfied, one app compiled on phonegap repo) and after long, long wait i get briliant error message "we have some problems with server" which explains EVERYTHING.
Firewall is down i cant find no info about some special port requirements so my question is why the hell it's not loging in ??
You really should update Your tutorials and guides for this process cause from cs 5.5 this looks like downgrade and moreover by removing local compilation service for benefit of payed service it seems you have no respect for your customers money which they already payed You for the dreamveaver software or even whole collection.
Looking forward hearing from You,
pised up honest customer.

This forum is actually about the Cloud, not about using individual programs
Once your program downloads and installs with no errors, you need the program forum
If you start at the Forums Index http://forums.adobe.com/index.jspa
You will be able to select a forum for the specific Adobe product(s) you use
Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
http://forums.adobe.com/community/dreamweaver

Similar Messages

  • Dreamweaver CS6 PhoneGap build with Camera support for Android Device

    I am trying to build a simple app that triggers the camera in my Samsung N7000 device.
    I have built the app using Dreamweaver CS6 using the builting phonegap build support.
    I am using the Windows version of Dreamweaver CS6.
    When the app is built it shows no errors but when the app is installed on the device it does not trigger  the camera.
    I can not seem to get this very basic app to trigger the camera.
    Any suggestions will be very much appreciated.
    //=======================================================================
    Below is the index.html file i have been using.
        <script src="phonegap.js"></script>
        <script type="text/javascript" charset="utf-8">
            // Called when capture operation is finished
            function captureSuccess(mediaFiles) {
                //var i, len;
                //for (i = 0, len = mediaFiles.length; i < len; i += 1) {
                //    //uploadFile(mediaFiles[i]);
                //navigator.notification.alert('Weee', null, 'Great success!');
            // Called if something bad happens.
            function captureError(error) {
                //var msg = 'An error occurred during capture: ' + error.code;
                //navigator.notification.alert(msg, null, 'Uh oh!');
            // A button will call this function
            function captureImage() {
                // Launch device camera application,
                // allowing user to capture up to 2 images
                navigator.device.capture.captureImage(captureSuccess, captureError, { limit: 2 });
            // Upload files to server
            function uploadFile(mediaFile) {
                var ft = new FileTransfer(),
                    path = mediaFile.fullPath,
                    name = mediaFile.name;
                ft.upload(path,
                    "http://my.domain.com/upload.php",
                    function (result) {
                        console.log('Upload success: ' + result.responseCode);
                        console.log(result.bytesSent + ' bytes sent');
                    function (error) {
                        console.log('Error uploading file ' + path + ': ' + error.code);
                    { fileName: name });
        </script>
        <script type="text/javascript" charset="utf-8">
            var pictureSource;   // picture source
            var destinationType; // sets the format of returned value
            // Wait for Cordova to connect with the device
            function onLoad() { document.addEventListener("deviceready", onDeviceReady, false); }
            // Cordova is ready to be used!
            function onDeviceReady() {
                pictureSource = navigator.camera.PictureSourceType;
                destinationType = navigator.camera.DestinationType;
                alert("device is ready");
            // Called when a photo is successfully retrieved
            function onPhotoDataSuccess(imageData) {
                // Uncomment to view the base64 encoded image data
                // console.log(imageData);
                // Get image handle
                var smallImage = document.getElementById('smallImage');
                // Unhide image elements
                smallImage.style.display = 'block';
                // Show the captured photo
                // The inline CSS rules are used to resize the image
                smallImage.src = "data:image/jpeg;base64," + imageData;
            // Called when a photo is successfully retrieved
            function onPhotoURISuccess(imageURI) {
                // Uncomment to view the image file URI
                // console.log(imageURI);
                // Get image handle
                var largeImage = document.getElementById('largeImage');
                // Unhide image elements
                largeImage.style.display = 'block';
                // Show the captured photo
                // The inline CSS rules are used to resize the image
                largeImage.src = imageURI;
            // A button will call this function
            function capturePhoto() {
                // Take picture using device camera and retrieve image as base64-encoded string
                navigator.camera.getPicture(onPhotoDataSuccess, onFail, {
                    quality: 50,
                    destinationType: destinationType.DATA_URL
            // A button will call this function
            function capturePhotoEdit() {
                // Take picture using device camera, allow edit, and retrieve image as base64-encoded string 
                navigator.camera.getPicture(onPhotoDataSuccess, onFail, {
                    quality: 20, allowEdit: true,
                    destinationType: destinationType.DATA_URL
            // A button will call this function
            function getPhoto(source) {
                // Retrieve image file location from specified source
                navigator.camera.getPicture(onPhotoURISuccess, onFail, {
                    quality: 50,
                    destinationType: destinationType.FILE_URI,
                    sourceType: source
            // Called if something bad happens.
            function onFail(message) {
                alert('Failed because: ' + message);
        </script>
    </head>
    <body onLoad="onLoad()">
        <button onclick="capturePhoto();">Capture Photo</button> <br><br>
        <button onclick="capturePhotoEdit();">Capture Editable Photo</button> <br><br>
        <button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo Library</button><br><br>
        <button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo Album</button><br><br>
        <img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
        <img style="display:none;" id="largeImage" src="" />
        <br><button onclick="captureImage();">Capture Image</button> <br>
    //=======================================================================================
    Below is the config.xml file i am using
    <?xml version="1.0" encoding="UTF-8" ?>
        <widget xmlns   = "http://www.w3.org/ns/widgets"
            xmlns:gap   = "http://phonegap.com/ns/1.0"
            id          = "com.phonegap.camera_test"
            versionCode = "11"
            version     = "1.1.0" >
    <name>bla</name>
    <description>
        bla
    </description>
    <author href="http://bla.github.com"
        email="[email protected]">
        bla
    </author>
    <icon src="icon.png" gap:role="default" />
    <feature name="http://api.phonegap.com/1.0/geolocation"/>
    <feature name="http://api.phonegap.com/1.0/network"/>
      <feature name="http://api.phonegap.com/1.0/file"/>
      <feature name="http://api.phonegap.com/1.0/camera"/>
      <feature name="http://api.phonegap.com/1.0/media"/>
      <feature name="http://api.phonegap.com/1.0/device"/>
      <feature name="http://api.phonegap.com/1.0/notification"/>
      <feature name="http://api.phonegap.com/1.0/battery"/>
    <preference name="orientation" value="portrait" />
    <preference name="webviewbounce" value="false" />
    <preference name="prerendered-icon" value="true" />
      <preference name="phonegap-version" value="3.1.0" />
      <preference name="fullscreen" value="false" />
      <preference name="stay-in-webview" value="false" />
      <preference name="ios-statusbarstyle" value="default" />
      <preference name="android-minSdkVersion" value="7" />
      <preference name="android-installLocation" value="internalOnly" />
      <preference name="target-device" value="universal" />
      <preference name="autohide-splashscreen" value="true" />
      <preference name="load-url-timeout" value="60000" />
      <preference name="show-splashscreen-spinner" value="true" />
      <preference name="show-splash-screen-spinner" value="true" />
      <preference name="allow-inline-media-playback" value="false" />
      <preference name="launch-mode" value="standard" />
      <plugin name="Capture" value="CDVCapture" />
      <plugin name="Camera" value="CDVCamera" />
    </widget>
    //=======================================================================================

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/dreamweaver

  • Issues with Dreamweaver cs6 phone gap build login

    Hi there, I am an imac, using creative cloud and I am not able to login via dreamweaver to phonegapbuild...
    I have created my acount on phonegap using my adobe id and also set my github account to it too...
    but when I try and login it says looks like we are having server troubles please try again...
    On the dreamweaver login to phonegap it does say dont forget to activate your account email but I didnt recieve anything and I can login to phonegap ok?
    Please help as I have shelled out on an imac, creative cloud and gthub just to use this service ! and feel a bit let down..
    Many thanks
    I look forward to sorting this issue asap
    Paul

    Ahhh cool, many thanks...I have been onto them and told them what my issue was and cancelled my creative cloud as that was all I really wanted it for...
    I will check back when its sorted and see if its worth me doing, I know there are some cool things but my total setup for creating ios apps revolved around that function ...
    I would have presumed that as this is an actual Adobe branded forum they would have somone monitoring it daily for issues to at least put a coment on...
    I know other large companies that monitor every spector of the internet for peoples comments on them...and then respond accordingly... from all the forums I have viewed on this issue including phonegap they seem to be ignoring it which seems to be making people get even crosser...if thats even a word lol
    Anyway thanks for your comments

  • Dreamweaver (cs6) Phonegap plugin

    Hi,
    I'm developing a phonegap application using dreamweaver and I'm trying to get the (phonegap) facebook plugin to work but am not succeeding! Given where I got to so far, I guess I have the following questions:
    How do I configure my application so that certain javascript code is only executed on specific platforms (e.g. iOS specific code is only called on iOS devices)
    How do I configure dreamweaver to use a PhoneGap plugin - which files (config.xml? / plugin.xml?) do I edit and what do I put in there
    Whilst researching this - I've seen similar questions asked frequently without any answers so maybe it's just not possible
    Thanks in advance
    Leon

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/dreamweaver

  • Phonegap setup for dreamweaver cs6 compared to eclipse

    Hi, I recently started working with CS6 and I'm trying to setup a phonegap application.  I was able to make a basic hello world jquerymobile site and upload it to the phonegap build site and getting it working on my android phone...
    I'm new to phonegap... I played around with some examples on phonegap 1.2 using eclipse but now I'm getting back to it and wondering how it works with dreamweaver cs6/phonegap build.
    I was following the download and setup from the phonegap website here:
    http://docs.phonegap.com/en/1.8.1/guide_getting-started_android_index.md.html#Getting%20St arted%20with%20Android
    What steps can I skip over in dreamweaver?  Do I need .jar files, or the .js file, or does phonegap build provide that for me?  I have all the initial emulators and SDK installed from my eclipse environment, I'm just trying to get an understanding of what DW CS6 phonegap build does to simplify everything?
    any how to's from a dreamweaver standpoint would be appreciated.

    Great thanks.  So just to confirm if your working with eclipse, your typically going and 1
    1)      Installing eclipse
    2)      downloading android sdk
    3)      downloading the adt plugin
    4)      downloading cordova
    5)      setting up a new project
    6)      copy a .js and .jar file to new folders
    7)      copy an xml file to new folders
    8)      making edits to designated files…
    and if your using dreamweaver cs6
    1)      (optionally download the sdk, adt plugin)
    2)      Setup a new site
    3)      Edits the pages to do what they want.
    4)      Upload to phonegap build and test?
    If so, WOW!  I’ve been working with dw since 98 (dreamweaver 2 or 4) and this seems to be one of my all-time favorite features if so!
    Thanks
    Steve

  • PhoneGap Build:Cannot Connect to Server Dreamweaver CS6

    Hey guys, I was wondering if someone could fix this problem, Im having, i have Dreamweaver cs6 on a mac, And im trying to login to phonegap build in dreamweaver, but everytime i try, it tells me that it cannot connect to the servers, plz try again later, is this a known problem?
    thanks,
    Jonathan

    I have a phonegap account and it's linked to the Adobe account;
    Logging in phonegap.com and compiling my apps in their website, works just fine;
    I have always Dreamweaver signed in to the Adobe account;
    Here are the content of my files:
    init_status.txt:   {"message": "Failed to upload application. Unable to create zip file. Reason: null","error": 404}
    auth_status.txt:    {"statusCode": 200,"statusMessage": "Authenticated"}
    Hope this helps you help us.
    I just want to say that this was THE feature that made me buy CS6 in the first place, and it's not working as intended.

  • Phonegap and Dreamweaver CS6 doesn't work

    Phonegap and Dreamweaver have never worked together for me.  With CS5.5 I was never able to build anything with Phonegap and Dreamweaver.  I was hoping that with CS6 and Adobe's aquistion that Phonegap might acually work with Dreamweaver, not so.  Any time I try and build Phonegap with Dreamweaver CS6 I get the following error:

    >After a long Time (more than 1 minute) i have the same message as Colorado saying "trouble with ours servers...".
    I was selecting "create new project" from the select dropdown menu and then pressing next.
    >After the error message i cant try a second Time because the dropdown select and the continue button are disabled.
    >i'm sure i have try without Any protection activated (antivirus, antimalware, firewall disabled during last try). Tommorow i Will try on my Mac (love Cs cloud ;-) ) on order to know if the problem Come from my computer.
    UPDATE [resolved]:
    - working on my mac
    - and then working on my PC after dreamwaever ask my phonegap login/password.
    > suggestion: i link my phonegap account and my adobeID account after i was logged in dreamweaver. Maybe the login information in dreamweaver wasn't up to date

  • Where is the Phonegap template in Dreamweaver CS6

    Hi just wondering if someone can clear this up for me.
    I have just downloaded the trial of Dreamweaver CS6 and am wondering where the jQuery mobile (phonegap) template has gone?
    Is there a way i can get it back? Im just curious as the jQuery mobile templates dont have a link to the Phonegap.js file and therefore
    dont give access to the phonegap API's or am i mistaken??
    Have spent the last few hours searching online for an answer but there is little out there as i suppose CS6 is still relatively new,
    If anyone can clear this up for me it would be great!
    Also am i better off sticking with CS5.5 if i want to develop for phonegap?

    You're not running a trial of Dreamweaver CS6. There was no public trial of DW.
    It's a beta and is probably not 100% feature complete.
    CS6 will probably be shipping next week (with the official Trials probably available a little later).
    Uninstall the CS6 beta you currently have installed and try the final version of CS6 then.

  • Trying to connect to PhoneGap Build Service in Dreamweaver CS6 but get a "Temporary Server related error". Help!

    I am trying to connect to the PhoneGap Build Service in Dreamweaver CS6 but after about a minute I receive the error "Temporary Server related error. Please try again later.". I have googled, searched and implemented any fix that I could find without any joy. I have fully updated Dreamweaver and all other Cloud services but still am receiving the error.
    I can log into build.phonegap.com using my Adobe ID no problem and I have linked a GitHub account to my Adobe ID so I am at a loss as what I can try next.
    Any help would be much appreciated.
    Many thanks,
    Dan

    You will likely get better program help in a program forum Dreamweaver support forum
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Can't Login to Business Catalyst within Dreamweaver CS6

    As my name implies, I am quite new to this stuff and learning as I go.
    I am trying to login to the Business Catalyst panel in Dreamweaver CS6. When I click the login button on the panel, nothing happens. I doesn't ask for a password or anything. The button just doesn't do anything.
    I just recently purchased a Creative Cloud Subscription. I had Dreamweaver before purchasing Creative Cloud, and the Business Catalyst account I am working with is owned by my employer. I was able to login to the Business Catalyst panel in Dreamweaver before getting Creative Cloud.
    I am able to access the remote server for the site just fine.
    I also tried to re-import the Business Catalyst site in Dreamweaver. When I click the import button, a blank window pops up, then dissappears. That's it.
    The same thing happens when I attempt to create a new Business Catalyst site.
    Any suggestions would help, please. Thanks!

    Okay, just had the same issue and found where the problem is and how to workaround the problem (bug has been reported).
    The scenario Adobe didn't cover is when you have already logged in to Business Catalyst via Dreamweaver CS 6 and saved your password.  The extension keeps you "logged in" with that username and password until you logout.  So if you have changed your login details online with Business Catalyst.  You must come back into Dreamweaver, go to Windows and open the Business Catalyst Window and logout, and then login again now with your new credentials.  The ability to see your sites for importing will show up again.  I have told Adobe that they need to check if the login credentials don't match, that instead of saying "There are no sites to be found" it needs to say that the login credentials don't work and prompt the user to add the credentials again in the Business Catalyst Side Panel Window (which by default is now undocked from the side panel).
    The challenge I am looking for, is to allow multiple administrators to be able to use their respective Business Catalyst login account to access the same site.

  • I own fully paid for license for Dreamweaver CS6. Every time I click to open the app, I get a very annoying pop-up message. How do I stop it?

    I own fully paid for license for a Mac version of Dreamweaver cs6. Every time I click to open the app, and before I can start using CS6, I get a very annoying pop-up message (see screen shot below) that states I have a trial version and do I want to buy into the cloud version, which I don't.  How do I stop the pop-up? This message seems to originate from the Extension Manager.
    I tried trashing Extension Manager, but another annoying pops-up which states that I have to "reinstall the application manager". Of course, there is no such thing as a "application manager" that I can find. I guess it should be "extension manager".
    I no longer own Photoshop because there are so many great alternatives available. Can't wait to do the same with Dreamweaver.
    Adobe can't even get the correct cost. I'm an US Customer however they quote the Creative Cloud in Euros. Go figure........

    I have faced this problem in the past.  In my case, I had Adobe registered under two separate ID.  One when a student and the second as a regular employed individual.  Because I purchased the licensed while at the University, the registration was listed under the school id. So, when I login in Adobe using my regular ID, I then received the annoying marketing campaign add.
    Therefore, review that you have enter the correct id during loging. IT is possible that you login to the community as one ID but purchased the subscription using a separate user name. In these cases, the computer will not know that you already have a paying license.

  • Dreamweaver cs6 Business Catalyst window

    I am experiencing problems with dreamweaver logging into the bc window panel.
    I have just upgraded to a cs6 subscription (not cloud).
    I am woriking on a mac with osx 10.6.8
    I have been working with catalyst for about 3 years using cs4 and the BC extension, but I cannot get it to work.
    I can set up a new site, ftp backwards and forwards but I cannot get the bc window panel to display any modules.
    It asks me to log in and then proceeds to display contacting server please wait for about 15 minutes until I have to log in again and again to try and get modules into the panel.
    It displays the name of the site, admin and log out at the bottom of the panel but no modules.
    BC can get it to work at their end with my username and password, I cannot.
    I do not have any firewall etc apart from the mac system one and I have added dreamweaver cs6 to the exceptions allowing incoming conections.
    The BC support team are as always helpful but it is still not resolved.
    Help appreciated
    P.S When I chose to connect to the server in the files panel it stops the attempt at getting into the BC window panel and logs it out to let me view the remote server...

    I had a similar problem. I am on a Windows 7 machine and I am using the cloud.  I would try to login to the BC Panel, but it would try to connect for about 20 seconds and then go back to asking me for the log in info. As a result, It would not display the modules.  I determined, after much trial and error,  that I had to run my copy of DW CS6 in the administrator mode. I now right-click the program icon and choose, "run as administrator". Since then, it has run flawlessly. I don't know if that will help your situation, but it's worth a try.

  • Using Business Catalyst in Dreamweaver CS6

    When I click the login button in the Business Catalyst panel in Dreamweaver CS6, I get no response. So I cannot login to access my BC sites via Dreamweaver. Also, when I tried to import a Business Catalyst site via the Manage Sites... Tab in Dreamweaver CS6 nothing happens. How can I correct this?

    Hi,
    Please check which version of Dreamweaver CS6 you are using. In case this is Version 12 Build 5842, this should work fine. If this is some other version then please go to following link and download the patch:
    http://blogs.adobe.com/dreamweaver/2013/01/resolution-12-0-3-users-running-into-browserlab -business-catalyst-issues.html
    The update should help, in case it does not work then you need to contact Dreamweaver support.
    Regards,
    Gaurav

  • FTP Broken in Dreamweaver CS6 and CC

    I have been unable to ftp into 1 of 3 websites that I maintain ever since upgrading to Dreamweaver CS6 (and now CC). The problem appears to be that the site's root directory name as reported by a PWD command is shorter than the name required to be issued by the CWD command after logging into the FTP server. CS5.5 logs into the website's FTP server without any trouble and the script looks like this:
    < 220 Service Ready for new User
    > USER .myusername
    < 331 Password Needed for Login
    > PASS
    < 230 User HUBING Logged in Successfully
    > PWD
    < 257 "/EH05/users/hubing" is Current Directory
    > PWD
    < 257 "/EH05/users/hubing" is Current Directory
    > CWD //gs16/gs16/share/web/cvel
    < 250 Directory successfully changed to "/gs16/SHARE/web/cvel"
    > PWD
    < 257 "/gs16/SHARE/web/cvel" is Current Directory
    > CWD /gs16/SHARE/web/cvel
    < 250 Directory successfully changed to "/gs16/SHARE/web/cvel"
    > PASV
    < 227 Entering Passive Mode (130,127,239,114,143,84)
    > TYPE A
    < 200 TYPE Command OK A
    > LIST
    Dreamweaver CS6 and Dreamweaver CC start out correctly, then suddenly issue a QUIT command:
    < 220 Service Ready for new User
    > USER myusername
    < 331 Password Needed for Login
    > PASS
    < 230 User HUBING Logged in Successfully
    > PWD
    < 257 "/EH05/users/hubing" is Current Directory
    > CWD /EH05/users/hubing
    < 250 Directory successfully changed to "/EH05/users/hubing"
    > CWD //gs16/gs16/share/web/cvel
    < 250 Directory successfully changed to "/gs16/SHARE/web/cvel"
    > PWD
    < 257 "/gs16/SHARE/web/cvel" is Current Directory
    > QUIT
    < 221 Closing Session
    Any suggestions?

    Bhawna,
    Yes. I can establish a connection without defining the site root folder. The directory that I login to by default is /EH05/users/hubing. One of the other sites that I maintain is in a subdirectory of that folder and Dreamweaver CC connects to that site without any problem. It just isn't able to switch to //gs16/gs16/share/web/cvel. Dreamweaver CS5.5 and WSFTP don't seem to have any problem with this.
    Unfortunately, I can't send you the .ste file, because the password can't be shared. I appreciate your help though!

  • Selection missing in Dreamweaver CS6

    I'm following the Adobe video tutorial by Adobe Evangelist Paul Trani, entitled "Getting Started with Creating Mobile Apps and Websites with Design and Web Premium CS6." Early in the video, Trani starts out in Dreamweaver with this:
    File > New > Page from Sample > Mobile Starters > jQuery Mobile with theme (phoneGap)
    When he gets to the last selection (jQuery Mobile with theme - phone Gap) it is one of five (5) sample pages to choose from in the video. In my copy of Dreamweaver CS6, however, I only have three (3) sample pages to choose from. They are jQuery Mobile (CDN), JQuery Mobile (Local), and jQuery Mobile with theme (Local). Missing from my selection but shown in the Trani video are "jQuery Mobile (PhoneGap), and jQuery Mobile with theme (PhoneGap).
    At that point, I have to hit the breaks, and Trani just blows on by.
    How can I add the two sample pages to my menu so I can continue this training video?
    Thanks

    @pk4ut You need to select "jQuery Mobile with theme (local). That's the same as using (phonegap). Thanks for watching!
    Paul

Maybe you are looking for

  • Critical Keynote widget bug on iBooks Author 2.2

    Hello, I think I found a bug on  ibooks Author 2.2. If a Keynote widget is added to a .iba document created on IBA 2.2, it cannot be previewed in iBooks 3.2 for iOS 7 or iBooks 1.0.1 for OSX Mavericks. The widget only works when viewed on iOS 8 or OS

  • Q: Another jsp drop-down menu problem+propeblem with savng button

    Well i have many problems: Starters i use eclipse with tomcat and postgres. I have to create a jsp page that shows some data directly from database. This is what i have so far: <%@ page language="java" contentType="text/html; charset=ISO-8859-1"    

  • HT5035 How can I see how much money is left on a gift card that I have redeemed?

    How can I find out how much money is left on my iTunes card?

  • Rs. 60 got debited. Twice in 4 months..v

    Hi, I have an Apple account with Apple India website. During account verification Rs. 60 got debited from my account. I did not purchase any paid app. This has happened twice in last 4 months. Please let me know why this amount is getting debited fro

  • Jsp classpath

    hello every one, i have designed a project in the JSP with some Javabeans classes, what when ever i m started my indexfile in which i m using some of my beans files. the error is coming that beans class is not found i.e is the beans is not instantiat