gpt4 book ai didi

objective-c - 使用 AFNetworking 使用 Web 服务发送音频

转载 作者:太空狗 更新时间:2023-10-30 03:33:36 26 4
gpt4 key购买 nike

我有一段音频需要使用网络服务连同其他输入一起发送。进行一些搜索后,我了解到我无法使用 XML SOAP 消息发送 nsdata,因此我下载了 AFHTTPRequest 类并遵循了 Internet 上的示例,但它不起作用。

这是我正在使用的网络服务:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<addlocation2 xmlns="http://tempuri.org/">
<userid>int</userid>
<name>string</name>
<voicemsg>base64Binary</voicemsg>
</addlocation2>
</soap:Body>
</soap:Envelope>

这是我用来发送数据和其他参数的代码:

   NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"m4a"];

NSData *audio = [NSData dataWithContentsOfFile:filePath];

AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];

NSString *URLString = @"http://host.com/Websr/Service.asmx?op=addlocation2";//[WebService getAudioURL];
NSDictionary *parameters = @{@"userid": @2,
@"name": @"usertest",
};

manager.requestSerializer = [AFHTTPRequestSerializer serializer];
manager.responseSerializer = [AFHTTPResponseSerializer serializer];

manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html", @"audio/m4a", nil];
[manager POST:URLString parameters:parameters constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {

if (audio) {
[formData appendPartWithFileData:audio name:@"voicemsg" fileName:[NSString stringWithFormat:@"test.m4a"] mimeType:@"audio/m4a"];
}
} success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Success %@", responseObject);
NSLog(@"operation %@", operation.responseString);

} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Failure" message:@"Sending Failure" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
NSLog(@"Failure %@, %@", error, operation.responseString);
}];

[self dismissViewControllerAnimated:NO completion:nil];

当应用程序到达包含类 AFURLResponseSerialization.h 中的数据的 if 语句时,应用程序因过多的错误访问而崩溃:

- (BOOL)validateResponse:(NSHTTPURLResponse *)response
data:(NSData *)data
error:(NSError *)error
{
BOOL responseIsValid = YES;
NSError *validationError = nil;

if (response && [response isKindOfClass:[NSHTTPURLResponse class]]) {
if (self.acceptableContentTypes && ![self.acceptableContentTypes containsObject:[response MIMEType]]) {
NSLog(@"[response URL] %@", [response URL]);
if ([data length] > 0 && [response URL]) {
...}

最佳答案

您不需要使用 AFHTTPRequest 类。您的要求只是通过网络发送 base64Binary 数据,这是您的网络服务所说的。请点击以下链接,这会有所帮助。 http://iosdevelopertips.com/core-services/encode-decode-using-base64.html

关于objective-c - 使用 AFNetworking 使用 Web 服务发送音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31384005/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com