cloud

Amazon VPC Availability

一世执手 提交于 2019-12-12 04:42:41
问题 We are trying to expand our reliability setup using VPC in us-west-1. The 'a' and 'b' AZs work fine, but when I try to create subnets on 'c' it just fails with the message: Value (us-west-1c) for parameter availabilityZone is invalid. Subnets can currently only be created in the following availability zones: us-west-1b, us-west-1a. Is this a transient failure or are there just only two VPC-enabled AZs in that region? If the latter, is there a list somewhere with how many AZs in each region

Using Cloud Functions for Firebase as my backend for implementing Stripe in iOS?

戏子无情 提交于 2019-12-12 04:38:40
问题 I currently have an iOS app that implements Firebase to authenticate users and store data references in its realtime database. I want to add a feature to the app where the logged in users can purchase a good and I want to use Stripe to process the payment. I know in order for Stripe to work, a backend server must be uses to help the transaction go through since Stripe only delivers a token and doesn't actually process the payment themselves. I was curious as it's possible to just use Cloud

PNRP - How does it work?

為{幸葍}努か 提交于 2019-12-12 04:07:02
问题 Sorry if this seems like a stupid question but im actually having a hard time finding a straight answer. I know PNRP is MS's technology for implementing peer-to-peer but how does it actually work - i mean im assuming when you register your address in the global cloud that it is actually contacting a Microsoft server to find a peer address then handing back the peer endpoint info. Im a little confused still as to how addresses are found in the cloud when say there are only 2 peers located

Microsoft Windows Azure storage: the remote server returned an error 404 not found

折月煮酒 提交于 2019-12-12 03:45:13
问题 I am constantly getting an error "404 not found". I have created cluster and storage account and container. Detailed error that I get is: Unhandled Exception: System.AggregateException: One or more errors occurred. --- Microsoft.WindowsAzure.Storage.StorageException: The remote server returned an error: (404) Not Found. System.Net.WebException: The remote server returned an error: (404) Not Found. This is my code: public static void ConnectToAzureCloudServer() { HadoopJobConfiguration

gae app moving to eu-datacenter or re-opening

假如想象 提交于 2019-12-12 03:36:32
问题 I had an php app in GAE that i made. At the point only usa was available. (no selection at all) now i have other app for the same sql-data in eu datacenter. I want to join the 2 apps in eu and using the same cloud-sql instance. Didn't found a way to move app from USA to EU so i deleted the app. 2 weeks have passed and i cannot create new app in eu region with the same id (same address) wtf? I need the same address that was with the old app! I don't mind that the end part of the url is

gsutil: Can't touch a file with brackets in the name

杀马特。学长 韩版系。学妹 提交于 2019-12-12 03:24:11
问题 $ gsutil du -sh gs://test123/ CommandException: Cloud folder gs://test123/testfile[1994]/ contains a wildcard; gsutil does not currently support objects with wildcards in their name. $ gsutil mv gs://test123/testfile[1994]/ gs://test123/testfile_1994/ CommandException: Cloud folder gs://test123/testfile[1994]/ contains a wildcard; gsutil does not currently support objects with wildcards in their name. $ gsutil mv "gs://test123/testfile\[1994\]/" gs://test123/testfile_1994/ CommandException:

No Basic/Standard/Premium options for SQL Azure database

北战南征 提交于 2019-12-12 02:47:17
问题 I am willing to switch to new Standard SQL Azure database tier, but there is just no such option in my Azure Portal. I have only the option between Web and Business. What is the problem? 回答1: Could it be because these services are still in Preview mode and you have not enabled this in your subscription. I'm also seeing the same behavior in my subscription. To enable this, please visit https://account.windowsazure.com/PreviewFeatures and click on try it now button next to New Service Tiers for

How do I deal with web role .aspx page running under a restricted user?

梦想的初衷 提交于 2019-12-12 02:15:48
问题 Turns out the web role .aspx page and web role code run in two separate processes with the default "Full IIS" mode. The problem for the application I'm to port is that .aspx handler needs access to the local filesystem and since it now runs under MachineName\\NETWORK SERVICE account it has no such access. AFAIK I could do one of the following. First, I could grant access to necessary subfolders to user MachineName\\NETWORK SERVICE while in an startup task. That will work, but looks insecure -

Generate Cloud Endpoints file in IntelliJ IDEA

爷,独闯天下 提交于 2019-12-12 01:46:29
问题 In Eclipse there's an easy way to generate Endpoints file from a Java class(right click on class -> google -> generate endpoints file), but I cannot find this feature in IntelliJ . How should I do this? Thanks 回答1: The plugin that supports Cloud Endpoints generation is currently available only in Android Studio, but not in IntelliJ IDEA. If you're using IntelliJ IDEA, you need to use the command line endpoints tool to generate the endpoints file. 来源: https://stackoverflow.com/questions

Update password field from Titanium application

☆樱花仙子☆ 提交于 2019-12-12 01:32:41
问题 I'm working on a Titanium based iOS application. In which I need to implement the password reset functionality within my app. I found this requestResetPassword method for doing this: Cloud.Users.requestResetPassword({ email: 'me@mycompany.com' }, function (e) { if (e.success) { alert('Success: Reset Request Sent'); } else { alert('Error:\\n' + ((e.error && e.message) || JSON.stringify(e))); } }); From docs it says that, it'll send a reset password option to user's mail account. But I don't