我对Xamarin Studio非常陌生。我需要在我用Objective C编写的代码中使用以前用Xamarin(C#)编写的另一个代码中的功能。

在Xamarin代码中,图像的字节流被附加到HttpWebRequest实例。并发布在服务器上,以获取经过处理的图像。

我无法找到如何使用与xamarin中的代码相同的功能

using (Stream requestStream = httpWebRequest.GetRequestStream ()){}

有。

我的Xamarin代码如下:
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create (string.Concat (new string[]
        {
            Common.BaseAddress,
            "visualize/",
            GenericHelper.ServiceEncrypt (Common.Token),
            "/",
            Common.AppTag,
            "/",
            Common.ConstructTreatmentSelections ()
        }));
        httpWebRequest.Method = "POST";
        httpWebRequest.ContentType = "application/x-www-form-urlencoded";
        using (Stream requestStream = httpWebRequest.GetRequestStream ())
        {
            int num = 2048;
            int i = 1;
            int num2 = pBytePhotoImage.Length;
            while (i < num2)
            {
                if (i + num > num2)
                {
                    num = num2 - i;
                }
                requestStream.Write (pBytePhotoImage, i - 1, num);
                float fProgress = (float)i / (float)num2;
                if (fProgress <= 1f)
                {
                    nSAutoreleasePool.InvokeOnMainThread (delegate
                    {
                        pProgressBar.set_Progress (fProgress);
                    });
                }
                else
                {
                    nSAutoreleasePool.InvokeOnMainThread (delegate
                    {
                        pProgressBar.set_Progress (1f);
                    });
                }
                i += num;
            }
            nSAutoreleasePool.InvokeOnMainThread (delegate
            {
                pAnimationImage.StartAnimating ();
            });
        }

通过互联网搜索,我可以收集和实施的内容是:-

我的Objective C代码如下:
NSData *data = UIImageJPEGRepresentation(self.imageView.image, 0.2);
NSString *webServiceURL = @"https://webserviceNameBaseAddress/visualize/lEr0WKCdarv2FLGFvBRbhs41FN7zhgcdiwuEqFtLQINJ|PQpM8HEGQ~~/ios/SL|VL|OC|ML|";
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:[NSURL URLWithString:webServiceURL]];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:data];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData * responseData, NSError *err) {
    NSLog(@"URL Response");
    if (err) {
        NSLog(@"Err %@",err.description);

    }else
    {

        if (responseData) {
            NSLog(@"%@",[UIImage imageWithData:responseData]);
        }
        else{
            NSLog(@"not returning anything");
        }
    }
}];

现在,当我在Xcode中运行代码时:
输出是:-
Error Domain=NSURLErrorDomain Code=-1000 "bad URL" UserInfo=0x75a9ea0 {NSUnderlyingError=0x7189250 "bad URL", NSLocalizedDescription=bad URL}

任何帮助都会很棒。
自两天以来,我一直坚持这一点。

PS:-
用于从Xamarin应用代码提取POST请求的webService URL。
我所做的是
我已经在Xamarin中的Consol.WriteLine()的帮助下打印出了URL字符串
然后将Xcode中的确切输出用作NSMutableURLRequest

最佳答案

这是ios安全。也许这对您有帮助-Bad URL when requesting with NSURL

关于c# - Xamarin Studio在Objective C中替换HttpWebRequest类是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21828254/

10-17 02:38