当我使用此代码时,它会给出错误

时间:2011-06-06 06:14:24

标签: gwt-rpc

public ContactEntry createContact(String username)throws IllegalArgumentException {
        // Create the entry to insert
        ContactsService myService = new ContactsService("exampleCo-exampleApp-1");
        try {
            myService.setUserCredentials("abc@in.gappsdemo.in", "xyz@123");
        } catch (AuthenticationException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        String name = "neha'sContact";
        String notes = "this is some notes from gdata API client";

        ContactEntry contact = new ContactEntry();
        contact.setTitle(new PlainTextConstruct(name));
        contact.setContent(new PlainTextConstruct(notes));

        Email primaryMail = new Email();
        primaryMail.setAddress("demo@in.gappsdemo.in");
        primaryMail.setRel("http://schemas.google.com/g/2005#home");
        primaryMail.setPrimary(true);
        contact.addEmailAddress(primaryMail);

        Email secondaryMail = new Email();
        secondaryMail.setAddress("demo@in.gappsdemo.in");
        secondaryMail.setRel("http://schemas.google.com/g/2005#work");
        secondaryMail.setPrimary(false);
        contact.addEmailAddress(secondaryMail);

        ExtendedProperty favouriteFlower = new ExtendedProperty();
        favouriteFlower.setName("favourite flower");
        favouriteFlower.setValue("daisy");
        contact.addExtendedProperty(favouriteFlower);

        ExtendedProperty sportsProperty = new ExtendedProperty();
        sportsProperty.setName("sports");
        XmlBlob sportKinds = new XmlBlob();
        sportKinds.setBlob(new String("<dance><salsa/><ballroom dancing/><dance/>"));
        sportsProperty.setXmlBlob(sportKinds);
        contact.addExtendedProperty(sportsProperty);
        System.out.println(contact);

        // Ask the service to insert the new entry
        try{
            System.out.println("Inside try  Block:");
            URL postUrl = new URL("https://www.google.com/m8/feeds/contacts/demo@in.gappsdemo.in/full");
            System.out.println("Inside try  Block1:");
            return myService.insert(postUrl, contact);



        }
        catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();
        }
        return contact;
    }

当我使用此代码时,它会出现以下错误:         [错误] [simplerpc] - 第9行:没有源代码可用于com.google.gdata.data.contacts.ContactEntry类型;你忘了继承一个必需的模块吗?

1 个答案:

答案 0 :(得分:0)

您无法直接在GWT中使用服务器端代码。 由于GWT无法为com.google.gdata.data.contacts.ContactEntry生成JavaScript,因此会出现上述错误。