Posts

Showing posts from August, 2019
Code for Cloud end-point project MyBena Class file code package com.example.myendpoint; public class MyBean { private String msg; public String getMessage() { return msg; } public void setMessage(String str) { msg=str; } } YourFirstAPI Java file package com.example.myendpoint; import com.google.api.server.spi.config.Api; import com.google.api.server.spi.config.ApiMethod; import com.google.api.server.spi.config.ApiNamespace; import javax.inject.Named; @Api(name = "skeleton-api",      version = "v1",      namespace=@ApiNamespace(ownerDomain="greeting.example.com",ownerName="greeting.example.com",packagePath="")) public class YourFirstAPI { @ApiMethod(name="hiThere") public MyBean hiThere(@Named("name") String name) { MyBean response=new MyBean(); response.setMessage("Hi, "+name); return response; } }

Steps to Fill e-Copyright form ISCON 2019

Step 1.                 Click of   http://www.gla.ac.in/iscon2019/Copyright.html Step 2.                 Fill the details of the paper submitted in the conference. a.        Paper Title (As in the Camera-Ready Copy) b.        All authors name separated by a comma. c.        Paper ID in easychair. d.        Email-ID of authors. e.        Click on Copyright Submission Redirect to IEEE Publication Agreement page Step 3.                 Click on Start Button. It will display the details filled by the author (Please verify it) Step 4.          ...