• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. K

    Apps soap call

    Hello, I make the soap call as follows in my android application: androidHttpTransport.call(SOAP_ACTION, envelope); While debugging, the cursor doesn't proceed beyond the above line; neither does it enter the catch routine; it just disappears. Don't know why. Regards, Krishna.
  2. K

    Apps type casting goes into exception

    Hello, While debugging, Integer.parseInt(string); takes me into exception. Why? Regards, Krishna.
  3. K

    Apps Class File Editor; source not found; change attached source

    Hello, In the following program, the debugger enters and exits the lines in bold. Why doesn't it step-on to the proceeding lines? Instead, it throws the following message: Class File Editor Source not found ----------------- The source attachment does not contain the source for the file...
  4. K

    Apps Error:Source not found.

    Hello. That's the error I get, followed by the button which says "Edit source lookup path". I'm trying to debug my project as an android application. In my program I've tried to create a Web Service. But I did not open my project as a Web Service Project, instead as an Android Project, so that...
  5. K

    Apps Conversion to Dalvik format failed with error 1

    Hello, I opened an Android project to create a web service as below: _________________________________________________________ package com.hascode.tutorial.soap; import android.app.Activity; import android.os.Bundle; import javax.jws.WebMethod; import javax.jws.WebService; public class...
  6. K

    Apps 2 ways to create Android Web services

    Hello, I can create Web Services using: @ WebService and @WebMethod annotations, or I can use ksoap2 library. Am I right in saying the above? If yes, which method is to be used when. Regards, Krishna.
  7. K

    Apps Android Web Services and Client

    Hello. Reference: http://download.oracle.com/docs/cd/E17802_01/webservices/webservices/docs/2.0/tutorial/doc/JavaWSTutorial.pdf Section: Building Web Services with JAX-WS. IDE used: MyEclipse Objective: ------------ I want the Android Emulator(client) to connect to a web...
  8. K

    Apps InvocationTargetException

    Hello, When I try to debug the following program in Eclipse, I get an exception (InvocationTargetException) at the line marked in bold(below). It says source not found. I clicked on the icon change attached source, and entered the path for the android.jar file. But the next time I debug, I get...
  9. K

    Apps Running an android application

    Hello, I've created a project named HessianExampleDroid; its application name being HessianDroidApp. I didn't need any activity, so I did not select that option. When I run it as an android application, the console shows the following: No Launcher activity found! [2011-04-14 18:12:06 -...
  10. K

    Apps Maven-Android-Plugin

    Hello, The link "http://karussell.wordpress.com/2009/04/10/hessian-web-service-protocol-hello-world-example/" says, "hello world example is a maven project. If you don't want to use maven, then you have to use other jar files(listed on the website)". I included the...
  11. K

    Apps Hessian Client on Android

    Hello, I created an Android project and added the two programs (shown below). When I run the project, the console shows that the below example has been loaded onto the Emulator. But I don't see my application as an icon on the AVD(android virtual device). Why so...
  12. K

    Using Hessian for Client Interaction

    Hello, I created an Android project and added the two programs (shown below). When I run the project, the console shows that the below example has been loaded onto the Emulator. But I don't see my application as an icon on the AVD(android virtual device). Why so...