English 中文(简体)
EWW Java API 1.1 设立任命----缺失时区
原标题:EWS Java API 1.1 creating appointment - missing TimeZoneDefinition

我有一个交换服务器 2007 SP1, 想要与 EWS Java API 1. 1. 1 预约。 我有一个例外, 我必须首先设定时区定义 。

    appointment.setStartTimeZone(new TimeZoneDefinition(){{
        setName( "W. Europe Standard Time" );
    }}); 

我试图直接设置它 但得到了这个例外:

The time zone definition is invalid or unsupported

我看见一些你必须编辑 Java API 的变通方法(比如跳过时间区定义验证), 但如果可能的话, 我不想在那里做任何改变。 我希望有人知道我如何正确设定时间区定义(而不必修改基准 Java API ) 。

编辑 : 在.NET 中, 您似乎可以直接设置时区定义 :

appointment.StartTimeZone = TimeZoneInfo.Local;

但我在爪哇广告里找不到像这样的东西

问题回答

我面临同样的问题, 并尝试了一切(除了编辑java ews api 本身之外), 在我的 Spring Web 应用程序中,

I found comments like: Unfortunately, Exchange 2007 SP1 does not support the StartTimeZone property of EWS. If you want to use that property, you must use Exchange 2010. That i should go, look for less "flacky" Java Exchange Framework.

我并不高兴, 正如我所听说的, 在.NET宇宙中不存在这样的问题, 我决定采取以下解决办法:

我设置了一个自我托管的南希服务器

"https://github.com/NancyFx/Nancy/wiki/Documentation" rel=“不跟随'>Nancy Documents

并写了个简单的南希莫杜勒:

namespace WebServiceNancy
{
public class APIModul : NancyModule
{
    public APIModul() : base("/")
    {

        Post["/saveFooApp"] = _ =>
        {   
            var jsonApp = this.Bind<AppData>();
            string ewsURL = "https://saveFooApp/ews/exchange.asmx";
            System.Uri ewsUri = new System.Uri(ewsURL);

            ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);
            service.Url = ewsUri;

            service.Credentials = new WebCredentials(jsonApp.Username, jsonApp.Password);

            Appointment app = new Appointment(service);
            app.Subject = jsonApp.Title;
            app.Start = jsonApp.Start;
            app.End = jsonApp.End;

            app.Save(WellKnownFolderName.Calendar);

            return Response.AsText("OK").WithStatusCode(HttpStatusCode.OK);
        };
    }
}


public class AppData
{
    public string Title { get; set; }
    public DateTime Start { get; set; }
    public DateTime End { get; set; }
    public string Username { get; set; }
    public string Password { get; set; }
}
}

将我的任用数据作为json 对象通过RestTemplate,

SimpleDateFormat formatter = new  SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String startDate = formatter.format(fooMeeting.getMeetingStart());
String endDate = formatter.format(fooMeeting.getMeetingEnd());

JSONObject obj = new JSONObject();
obj.put("title", fooMeeting.getTitle());
obj.put("start", startDate);
obj.put("end", endDate);
obj.put("username", fooUser.getUsername());                 
obj.put("password", fooUser.getPassword());

RestTemplate rt = new RestTemplate();

HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);

JSONSerializer jsonSer = new JSONSerializer();

HttpEntity<String> entity = new HttpEntity<String>(jsonSer.serialize(obj), headers);

ResponseEntity<String> response = rt.exchange("http://localhost:8282/saveFooApp", HttpMethod.POST, entity, String.class);               
System.out.println(response.getStatusCode());

Ofc 需要决定您是否想要在将证书从一个服务器传送到另一个服务器时使用某种密码加密, 以及如何执行错误处理 。

  • 但对我来说却很迷人

  • 我对未来有关 EWS 其它娱乐活动的要求充满信心。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签