Hi, Even I am getting the same error 500. Currently I am using it over https. Prior to that this flex app was up on http server.
https / ssl: yes Just to confirm I generated the map key as follows. On generate map key Google page, I put my staging server address (https://comfortdev/stg) and used the generated key in my flex app. The world map is getting loaded but getting geocoding error 500. Let me know if there is any problem in my approach. thanks Sadu On Oct 27, 10:12 am, spacecomm <[email protected]> wrote: > Pamela, Brian, Hi, > > Is this issue closed here? > > I'm having the same problem. Answering question below for my > situation: client ID == no,SSL: yes. Is theSSLa problem to use the > geocoder service? > > Bye, BW. > > On Oct 21, 1:49 am, "pamela (Google Employee)" <[email protected]> > wrote: > > > > > Hi Bryan - > > I just tested the geocoding samples, and they are working fine. Is your app > > served from anSSLpage or using a client ID? (Any characteristic that would > > make it different from the samples I tried?) > > > - pamela > > > On Wed, Oct 21, 2009 at 4:12 AM, bryandunbar <[email protected]> wrote: > > > > Seems to be happening again now!!!! > > > > On Oct 15, 2:05 am, "Mike P." <[email protected]> wrote: > > > > It looks like it is fixed as of 1:00am CT. Thanks! > > > > > On Oct 14, 9:26 pm, "pamela (Google Employee)" <[email protected]> > > > > wrote: > > > > > > Thank you, Jonathan! > > > > > An update on the issue: We are working on pushing the fix and hope to > > > have > > > > > it out in the next few hours. > > > > > > On Thu, Oct 15, 2009 at 12:01 PM, Jonathan Wagner < > > > [email protected]>wrote: > > > > > > > Replace the key with yours and add the following javascript: > > > > > > > <script src="http://maps.google.com/maps? > > > > > > file=api&v=2.x&key=ABQIAAAA8CazDZ3tQvLQ7ZYmuvCagBTguBa8HE6- > > > > > > AVzKq29uE_fP2Aa9kBT_gp2SJUcxdpkct584fepjGYXrYg" type="text/ > > > > > > javascript"></script> > > > > > > <script type="text/javascript"> > > > > > > var geocoder = null; > > > > > > > function initialize() { > > > > > > if (GBrowserIsCompatible()) { > > > > > > geocoder = new GClientGeocoder(); > > > > > > > } > > > > > > } > > > > > > > function geocodeResponse(response) { > > > > > > FlashObject.geocodeFinished(response); > > > > > > } > > > > > > > function geoCode(address) { > > > > > > if(geocoder) { > > > > > > geocoder.getLocations(address, geocodeResponse); > > > > > > } > > > > > > } > > > > > > </script> > > > > > > > On your body tag add the following: > > > > > > <body onLoad="initialize()" onunload="GUnload()"> > > > > > > > If you are using flex rename FlashObject.geocodeFinished to > > > > > > YourApplicationName.geocodeFinished, if not set the name and id on > > > the > > > > > > embed to FlashObject > > > > > > > In Flash add the following code: > > > > > > ExternalInterface.addCallback("geocodeFinished", geocodeFinished); > > > > > > public function geocodeFinished(results:*):void { > > > > > > // handle results > > > > > > } > > > > > > > public function geocode(address:String):void { > > > > > > ExternalInterface.call("geoCode", address); > > > > > > } > > > > > > > On Oct 14, 8:14 pm, "pamela (Google Employee)" <[email protected]> > > > > > > wrote: > > > > > > > We are currently experiencing an issue where all geocoding > > > > > > > requests > > > are > > > > > > > being responded to with a 500. We have not yet resolved this > > > > > > > issue, > > > and > > > > > > will > > > > > > > post again when we have. > > > > > > > As a temporary workaround, you can use the HTTP Geocoder through a > > > proxy, > > > > > > or > > > > > > > use a JS API with an AS/JS bridge. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-maps-api-for-flash?hl=en -~----------~----~----~----~------~----~------~--~---
