eclipse调用salseforce soap api
内容参考:https://resources.docs.salesforce.com/202/latest/en-us/sfdc/pdf/salesforce_developer_environment_tipsheet.pdfhttps://www.cnblogs.com/zero-zyq/p/6077773.html具体步骤:1.下载Force.com Web Service Connector下载链接为http://mvnrepository.com/artifact/com.force.api/force-wsc2.下载开发的WSDL文件Setup->Build->API,这里有很多可以选择的WSDL,企业级WSDL,合作伙伴,元信息等。此处选择企业级WSDL,选择以后详情页右键另存为MyProject.wsdl,名字随便起不同WSDL区别:https:...
mysql插入单引号字符串
此时将字符串中的单引号" ' "替换成" ' ' "两个单引号即可。此时应该利用java中的“replace”方法进行替换。此处给出java中的替换代码。 public static void main(String[] args) throws Exception{ Server ss=new Server(); String str="I'm a boy"; String temp=str.replaceAll("'", "''"); String sql="insert into test VALUES('"+temp+"');"; ss.operate(sql, 2); System.out.println(temp); System.out.println(sql); }此时的输出结...
关于技术,写在30岁以后
关于技术,写在30岁以后1.30岁以前不断地学习和了解各种语言、技术、平台,扩大了自己的知识面,遇到问题时,能够想到更多的解决方案。2.30岁以后,打算专一一点,不再那么狂热地追求新技术,而是把一件事情做好,做到极致3.泛娱乐:定位之后的赚钱的方向还是泛娱乐30岁以后:专注泛娱乐
30岁以后:专注泛娱乐
泛娱乐行业的产值和规模分布2017年,就不同品类的内容所产生的市场总价值而言,中国泛娱乐产业已是一个近6000亿元的市场,前景惊人。其大致分布为游戏1700亿元(增速8-10%),剧集和综艺1200亿元(增速30-25%),电影1250亿元(增速5-10%),动漫780亿元(增速25-30%)。>>文学网络文学是泛娱乐产业中的重要一环,是诸多重要IP的培育场,为泛娱乐产业发展提供了源源不断的动力。网络文学的价值被重新发掘,也让其成为互联网巨头争相布局的领域。>>剧&综艺剧集和综艺有着不同的变现模式——...
Lightning Components Demo
A component that provides a concrete type-specific input component implementation based on the data to which it is bound.Represents an input field that corresponds to a field on a Salesforce object. This component respects the attributes of the associated field. For example, if the component is a number field with 2 decimal places, then the default input value contains the same number of decimal places. It loads the input field according to the field type. If the compone...
lightning app:
要求:Share Lightning Out Apps with Non-Authenticated Userslightning app:报错XMLHttpRequest cannot load https://XXXXX.lightning.force.com/c/XXXXXXXX.app?aura.format=JSON&aura.formatAdapter=LIGHTNING_OUT. Redirect from 'https://XXXXX.lightning.force.com/c/XXXXXX.app?aura.format=JSON&aura.formatAdapter=LIGHTNING_OUT' to 'https://XXXXXX.my.salesforce.com/visualforce/session?url=https%3A%2F%2FXXXXX.lightning.force.com%2Fc%2FXXXXXXXX.app%3Faura.format%3DJSON%26aura.fo...
ASP.NET MVC分页 demo
//servcieusing System;using System.Collections.Generic;using System.Linq;using System.Web;using StaticMvc.Models; using Webdiyer.WebControls.Mvc;namespace StaticMvc{ public class ArticleService { public PagedList<Article> GetPagedList(int page, int count) { PagedList<Article> result = GetList().ToPagedList(page, count); result.TotalItemCount = GetList().Count(); result.CurrentPageIndex = pag...
asp.net mvc静态化
public class StaticFileFilterAttribute : FilterAttribute, IResultFilter { public void OnResultExecuted(ResultExecutedContext filterContext) { filterContext.HttpContext.Response.Filter = new StaticFileWriteResponseFilterWrapper(filterContext.HttpContext.Response.Filter, filterContext); } public void OnResultExecuting(ResultExecutingContext filterContext) { } class Sta...
电脑突然蓝屏,PE都进不去
电脑突然蓝屏,PE都进不去PE进不去,肯定是硬件的问题,一 一排除拔显卡,不行拔USB,不行拔内存条,不行,内存条只上一根不行,换一根内存条,行了!原来是有根内存条(第一根,共4根)坏了,也许年份久了。。。
