English 中文(简体)
XMLRPC Java Android 客户端
原标题:XMLRPC Java Android Client

我下载了""http://code.google.com/p/android-xmlrpc/" rel="nofollow" >XMLRPC客户端项目 并尝试初始化连接到我的 XMLRPC 服务器 。

我设置了一个本地服务器,用于测试和使用 http://1.0.2.2:8080/OpenConf_Server-0.0.1/ ,以调用rpc。

每次我调用我的测试方法, 只要返回一个简单的字符串, 我就会收到以下XMLRPC客户端的错误信息 。

出了什么问题?

05-22 16:08:27.503: E/OpenConfDashboardDesignActivity(759): org.xmlpull.v1.XmlPullParserException: expected: START_TAG {null}methodResponse (position:START_TAG <html>@4:7 in java.io.InputStreamReader@413092f8) 
问题回答

尝试添加更多日志, 很可能是服务器路径错误 。

    } catch (final XMLRPCFault e) {
            // TODO: do something with message.contains
            Log.i(TAG, "XMLRPCFault : " +e.toString());
            String message = e.getMessage();
            if (message.contains("<html>")) {
                Log.i(TAG, MessCon" : " +e.toString());
                return null;
            }
        } catch (XMLRPCException e) {
            Log.i(TAG, " XMLRPCException : " +e.toString());
            return null;
        }
        Log.i(TAG, " respnse : " + response);
        return response;




相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...