Autodiscover insecure redirection error

Hi
Please excuse me here, I am very basic with Exchange 2013 or any Exchange for that matter.
We have a SharePoint Server, which has Exchange Integration, and are experiencing some error when trying to sync calendar bits to Outlook. The error is as follows;
AutodiscoverLocalException: Autodiscover blocked a potentially insecure redirection to https://server.domain.local/autodiscover/autodiscover.xml. To allow Autodiscover to follow the redirection, use the AutodiscoverUrl(string, AutodiscoverRedirectionUrlValidationCallback)
overload.
I guess my question is, how do I make it allow the redirection? I don't know coding or APIs or anything too well, so any steps would be GREATLY recieved!

Hi,
Please try to explore the Autodiscover URL (https://server.domain.local/autodiscover/autodiscover.xml) via IE to check whether it returns code 600.
If not, please paste the detailed code and message without sensitive message for the further troubleshooting.
I noticed that you have self-signed certificates installed on your test environment. Please make sure all apps on your environment have installed the self-signed certificate. If you want to communicate externally/Internet, certificate issued from Public
CA is required. 
Please try to check whether you have configured redirection.
Also found an FAQ on Autodiscover for your reference:
https://social.technet.microsoft.com/Forums/office/en-US/54bc6b17-9b60-46a4-9dad-584836d15a02/troubleshooting-and-introduction-for-exchange-20072010-autodiscover-details-about-test-email?forum=exchangesvrgeneral 
Thanks

Similar Messages

  • Redirection error An error occurred while processing your request in provider-hosted app which is hosted in Windows Azure

    Hello,
    I developed one simple provider hosted app and I published it in my Azure website. I also published the SharePoint App of this solution in O365 site. I'm using Visual Studio 2013 Premium edition. I've followed all the steps to do this work e.g.
    generate the client ID and client secret through my O365 site and updated the AppManifest.xml as well as web.config etc. In my AppWeb project, I've TokenHelper.cs and SharePoint.cs classes.
    When I'm clicking the app from my O365 site, I get the following error "An error occurred while processing your request" which is due to the following code:
     protected void Page_PreInit(object sender, EventArgs e)
                Uri redirectUrl;
                switch (SharePointContextProvider.CheckRedirectionStatus(Context, out redirectUrl))
                    case RedirectionStatus.Ok:
                        return;
                    case RedirectionStatus.ShouldRedirect:
                        Response.Redirect(redirectUrl.AbsoluteUri, endResponse: true);
                        break;
                    case RedirectionStatus.CanNotRedirect:
                        Response.Write("An error occurred while processing your request.");
                        Response.End();
                        break;
    It's always executing the case RedirectionStatus.CanNotRedirect. Why?
    I've checked the method "CheckRedirectionStatus" of SharePointContext.cs class completely and I am not understanding why am I getting this error.
    When I browse my Azure website http://sitename.azurewebsites.net, even there I'm getting this error. I believe that error is because there is no query string parameter there e.g. SPHostURL etc.
    Please let me know why I'm having this redirection error.
    Thanks,
    Ashish

    Hi,
    For a better troubleshooting,
    I suggest you do as the following:
    Debug the code step by step to find the reason of the issue.
    For the remote debug your app from Windows Azure, you need to download Azure SDK:
    http://azure.microsoft.com/en-us/downloads/
    After installing the SDK, it will have “Attach Debugger” for Azure web site, you
    also need to set "Attach Debugger" to on in the Windows Azure Management Portal
    More detailed information about how to debug provider-hosted app:
    http://blogs.technet.com/b/speschka/archive/2013/11/25/debugging-sharepoint-apps-that-are-hosted-in-windows-azure-web-sites.aspx
    Best regards,
    ZhengyuGuo
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if
    they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Netcfg-wpa_actiond ambiguous redirect error

    I've recently switched from networkmanager to netcfg and now wish I had taken the time to look into it earlier, as I love the speed and simplicity of netcfg!
    I do run into a peculiar problem however when trying to use net-auto-wireless. I have installed netcfg, ifplugd, wpa_actiond and wpa_supplicant, as well as netcfgGUI (I like to see that I'm connected and to which network).
    During the boot procedure I get the message "/usr/bin/netcfg-wpa_actiond: line 64: $WPA_CONF: ambiguous redirect"
    In rc.conf I have the relevant lines:
    # NETWORKING
    #eth0="dhcp"
    #wlan0="dhcp"
    #INTERFACES=(!eth0 !wlan0)
    WIRELESS_INTERFACE=(wlan0)
    WIRED_INTERFACE=(eth0)
    DAEMONS=(syslog-ng hal net-auto-wireless net-auto-wired !network !networkmanager ...
    The computer is an Eee PC 901, using the rt2860sta module. The rt2800pci and rt2x00pci modules are blacklisted.
    netcfg itself works just fine when trying to connect manually via the command line or netcfgGUI, but for completeness sake here's a copy of one of my profiles (all profiles are the same, except for the ESSID):
    CONNECTION='wireless'
    DESCRIPTION='A simple WPA encrypted wireless connection'
    INTERFACE='wlan0'
    IP='dhcp'
    ESSID='USR'
    SECURITY='wpa'
    KEY='secret wpa passphrase'
    The strange thing is that on my girlfriend's Eee PC (also a 901), net-auto-wireless works just fine. It's configured exactly the same, the only difference being that she runs KDE 4.4 whereas I run Openbox 3.4
    What am I missing?
    EDIT: corrected error message
    Last edited by MrE (2010-04-18 20:40:00)

    Re configsection, see this thread: http://bbs.archlinux.org/viewtopic.php?id=91439
    I'm using configsection with no issues. Incidentally, I'm also using a 901.
    The ambiguous redirect message is on a line of code that redirects output to $WPA_CONF which should be (in mine and your case) should be
    /tmp/wpa.wlan0/wpa.conf
    The redirect error normally occurs when a wildcard is used or spaces exist in the filename and it hasn't been surrounded by quotes. I note that the line involved doesn't wrap $WPA_CONF so if it has spaces it might cause an issue. You should check the contents of the /tmp/wpa-wlan0 folder and see whether a spurious characters are in there. The function that creates it should remove spaces, but there's a comment in it pointing out that quotes should still be used.
    You could insert a line into /usr/bin/netcfg-wpa_actiond (back it up first) to echo $WPA_CONF to a file:
    echo "$WPA_CONF" > /tmp/wpafilepath
    And see if there's an obvious error there.
    If there's nothing obvious, you could try three things:
    1) Edit /usr/bin/netcfg-wpa_actiond (back it up first) and change line 64 from:
    echo -e "network={ \n$config \nid_str=\"$profile\" \n}" >> $WPA_CONF
    to
    echo -e "network={ \n$config \nid_str=\"$profile\" \n}" >> "$WPA_CONF"
    If that works, report it as a bug and submit the suggested fix.
    2) Try config section.
    3) Try wpa-config which involves using wpa_suplicant.conf. This will avoid that line of code altogether.
    It might be worth reporting it as a bug as netcfg set-up the file, so it should be able to write to it.
    Have to rush off, so unable to proof-read the above. Apologies there are any errors.
    Last edited by skanky (2010-04-23 10:56:25)

  • Error opening link to file from email message - Redirect Error

    Here is on example of this problem:
    I get an e-mail message with text with some links, when a click the text the browser opens and displays this message: Redirect Error
    On the PlayBook, I copied the hyper link from the text on the e-mail message and pasted it on a word document and this was the result:
    http://click.herbalifemail.com/?ju�2a16767364067b7c1575&ls�f911767765007b77157977&m�fa1676716306&l�9915787567057475&s�fe16707266027474157377&jb�cf14&t=
    Reading the same e-mail massage on my desktop PC I did the same thing and this was the result:
    http://click.herbalifemail.com/?ju=fe2a16767364067b7c1575&ls=fdf911767765007b77157977&m=fefa16767163...=
    On my desktop there is no problem and I’m redirected to the file but something is happening when a click that same link from de Playbook native mail.
    Thank you for your help.

    They appear to be different links. But I was able to open the pdf file. I was not able to understand it because it is not my native language but it was from herbalist.
    Be a Shepard and not an iSheep.

  • Terminal error - what is a redirection error?

    When I launch Terminal I get the following error:
    -bash: redirection error: cannot duplicate fd: Too many open files
    I can't find any info on this, any help appreciated.

    One of your bash dotfiles is corrupt. It was probably some open source 3rd party software that attempted to set something up for you.
    Create a new, admin account on your machine. Log in to that. Then run terminal on that account. From there, you can use sudo to go into the old account and fix the dot files. If it isn't obvious what the problem is, you can just copy your dotfiles from the new account to the old, changing permissions as appropriate.

  • Redirect errors, also JAR woes

    Hello,
    Two mysteries:
    1. How do you redirect runtime errors to a file instead of to the default output(the screen)?
    2. My JAR files executes, but none of the images are showing up. I see that the images are bound in the JAR file when I do the "jar tf" command. Also some of my functions are not operational. I used the Manifest with the line "Main-Class: MyProgramName.jar"
    It seems as though I may need to bind the java packages into the JAR too. The JAR is a small application for download from my site. What do I have to do to make the jar work? The online documentation is cryptic!
    Thank you

    Fixing Main-Class: MyProgramName did not fix the
    problem. If the native api is included in the JVM,
    what would make everything in the image/* directory
    not show up? It's in the relative directory under the
    main dir. IE:That depends. It depends on whether that directory is in the jar file or outside it, and it depends on how your code is trying to read it. And what do you mean by "the native api is included in the JVM"?
    Also when I click on a component a jdialog is supposed
    to open. This is not happening with my jar app.Probably because it isn't starting at all -- but again, that's just a guess.
    How do I redirect errors from standard output to a
    file?
    System.setErr(new PrintStream(new FileOutputStream(...)));

  • Microsoft-Windows-Folder Redirection Error 502. CSC database locked by another user

    Dear all,
    We are finalizing our Windows 7 migration where we migrated 500+ clients. In our enterprise concept we implemented RUP (Roaming User Profiles) and Redirected Folders for all
    users. The Redirected Folders have been by enabled by a single GPO which redirects all folders from
    AppData to
    Searches \\servername.domain.name\documents$\%username%.
    Problem:
    The RUP and Redirected folders solution works fine until a new user wants to logon. This new user has been migrated to RUP and Redirected on another system and
    he just wants to work on another workplace or gets a temporary pc. What happens is that redirected folders do not work. The user gets a message that the folder is not reachable and desktop is empty.
    Troubleshooting:
    Soon I found out that something was being locked. If we used a user account which had working Redirect Folders than this
    worked for that user. An event of 10 was logged in OfflineFiles area of EventViewer to reconnect the path which was configured in the GPO.
    This is example screenshot. It says "Error on Open Folder. \\server.domain.name\documents$\%username%\Desktop refers to a location that is unavailable. It could be on a hard disk
    on this computer, or a on a network. Check to make sure that the disk is properly inserted, or that you are connected to the Internet or your network, and then try again. If it still cannot be located, the information might have been moved to a different location."
    These symptoms happen randomly and not on all workstations. The pain here is when it happens on a portable computer. For desktop we disabled the "Disable Offline Files' in "Manage
    Offline Files" control panel and then reboot. After the reboot the folders are directed
    and it works without these errors... On portable computer we can't use this work around as they need to work offline.
    If I connect to the share without the FQDN like \\servername\documents$\%username%\Desktop than this works fine and user can access all folders. When I try the FQDN path which is
    configured in the GPO to redirect user to like \\servername.domain.name\documents$\%username%\Desktop than it fails with this message. I personally think because the C:\Windows\CSC database is locked by the previous user who has been logged on this system.
    An example of the event generated in the Applications Event viewer part (I removed some username and server path):
    Log Name:      Application
    Source:        Microsoft-Windows-Folder Redirection
    Date:          1-2-2011 17:40:11
    Event ID:      502
    Task Category: None
    Level:         Error
    Keywords:     
    User:          domain\ivan
    Computer:      computer.domain.name
    Description:
    Failed to apply policy and redirect folder "Videos" to "\\servername.domain.name\documents$\ivan\Documents\My Videos".
     Redirection options=0x1001.
     The following error occurred: "Can not create folder "\\\servername.domain.name\documents$\ivan\Documents\My Videos"".
     Error details: "Access is denied.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Folder Redirection" Guid="{7D7B0C39-93F6-4100-BD96-4DDA859652C5}" />
        <EventID>502</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2011-02-01T16:40:11.486983400Z" />
        <EventRecordID>2754</EventRecordID>
        <Correlation ActivityID="{3211E6FB-2801-456D-BE6E-66AAE150A4DC}" />
        <Execution ProcessID="968" ThreadID="5856" />
        <Channel>Application</Channel>
        <Computer>computer.domain.name</Computer>
        <Security UserID="S-1-5-21-3705223304-2632712944-1292073641-26755" />
      </System>
      <EventData Name="EVENT_FDEPLOY_FailedToApplyPolicy">
        <Data Name="FromFolder">Videos</Data>
        <Data Name="ToFolder">\\servername.domain.name\documents$\ivan\Documents\My Videos</Data>
        <Data Name="Options">0x1001</Data>
        <Data Name="Error">Can not create folder "\\servername.domain.name\documents$\ivan\Documents\My Videos"</Data>
        <Data Name="ErrorDetails">Access is denied.
    </Data>
      </EventData>
    </Event> 
    Something like this I see in the Application Eventviewer:
    Environment:
    Windows 7 Enterprise client with patches until 1-Nov-2010
    Windows Server 2008 R2 for the Documents$ share
    Windows Server 2003 R2 as the domain controller
    I have tried all different option even to rebuild the CSC database but this also was not helping. I hope we are not dealing with a bug.
    Any help is much appreciated.
    Best regards, Ivan Versluis http://www.networknet.nl

    Ivan and SteveDIG - Thanks for taking the time to post detailed information about what you have found.  I have found the same things over the past few months and have been working with Microsoft to resolve this.  Like Ivan, I have been told by
    MS that this is a design problem in Windows 7, but they did admit it is a bug and did not charge me for the case.  That was the good news.  The bad news was that the problem is so 'deep' in Windows 7 that it will not be fixed until Windows 8 and
    the CSC engineering team in Redmond has rejected several requests to fix this issue in Windows 7 from several customers.  I personally feel we should have hauled our TAM in over this, but that wasn't my call so we haven't attempted to get an attitude
    change from MS.
    <RANT> I find this completely outrageous.  Windows is supposed to be a multi-user operating system suitable for deployment to mobile workforces spread around the world and often using slow VPN links.  Offline folders, folder redirection,
    slow link detection, etc. are all great on paper and as I did the design work for the W7 solution I've just built I sold these advantages heavily.  I now have serious egg on my face and am not happy.  Like others here I missed this in testing as
    multiple users are a fringe for us, but still important, I unfortunately didn't think to specifically test for multiple users, though I tested the features thoroughly and was happy with the results when used on single user machines.</RANT>
    As identified above, this issue manifests when more than one user uses a machine and their Offline folders (all redirected folders are configured this way by default) are in an offline state when the first user logs off.  The second user cannot access
    this 'offline' share so folder redirection fails.  We get burnt as we have latency=0 configured for slow link detection with Offline folders so users always work offline.  This is partly because of WAN optimisers in the network that lie to Windows
    so the online/offline transition doesn't work on slow links (not MS's fault), and partly because it made sense for other reasons.
    The workaround Microsoft and I came up with for our environment was to use individual file shares for each user.  We had been using a common file share with each user folder under that file share.  Changing to an individual share for each users
    means the share is not locked by the previous user.
    Examples
    This would cause a problem if John then Emma logged on to the same machine. Folder redirection would fail for Emma:
    \\FileServer1\Users$\john
    \\FileServer1\Users$\emma
    So would this if DFS was used
    \\my.domain\users\john            (points to \\FileServer1\Users$\John)
    \\my.domain\users\emma          (points to \\FileServer1\Users$\Emma)
    This would fix the problem:
    \\FileServer1\John$
    \\FileServer1\Emma$
    Unfortunately we then figured we could move these shares behind DFS like so:
    \\my.domain\homes\john             (points to \\FileServer1\John$)
    \\my.domain\homes\emma          (points to \\FileServer1\emma$)
    This was wrong.  The problem returned.  I assume the share that is being locked is now the DFS root and not the user share.
    The operations team here is very reluctant to go with direct access to the file servers and not use DFS as that will create issues for them in the future when they need to make file server changes.  I sympathise with them but can't see an alternative
    at the moment as we are deploying W7 and can't stop.  If I'd picked this up earlier a third party product might have been the solution (MS actually suggested this when I opened my case).
    I hope the information about individual shares above is helpful to someone.  Otherwise I don't really have more to add but I needed the rant :-)
    <RANT>BTW.  Has anyone tested changing a user’s home directory path once it is cached?  Try it. Test a scenario where you move the user from one file server to another.  You will not enjoy the results.  I'll say no more
    than this as it is off topic, but it shows the lack of investment in the CSC feature in Windows.  Very disappointing</RANT>

  • AS2:Seeburger Proxy redirect error?

    Hi Guys,
    We are getting the following error when trying to post the file to the AS2 server.
    Message could not be forwarded to the JCA adapter. Reason: Fatal exception: javax.resource.ResourceException: SEEBURGER AS2: 307 Proxy Redirect # , SEEBURGER AS2: 307 Proxy Redirect #
    My AS2  receiver adapter is configured with the below parameters
    Server: FQHN
    Port: 80
    URL Path: /as2receiver.aspx
    HTTP Timeout: 120
    Sign: MD5
    Encrypt: 3DES
    MDN Mode: No MDN
    Content Type: application/octet-stream
    Payload Mode: MainDocument
    unchecked: Dynamic attributes
    any help or suggestions would be appreciated
    Thanks,
    Srini

    Hi Srinivas,
    Thanks for your quick reply. We are not using any proxy server. I have tried with the port 6263 and i am getting the error as below
    Message entered AF MP exit bean and will be passed to the JCA adapter now
    SEEBURGER/AS2: Received order from system.
    Message could not be forwarded to the JCA adapter. Reason: Fatal exception: javax.resource.ResourceException: SEEBURGER AS2: java.net.ConnectException: Connection timed out: connect # , SEEBURGER AS2: java.net.ConnectException: Connection timed out: connect #
    what are the port numbers that are generally used for the AS2 communication?  any help would be appreciated
    Thanks,
    Srini

  • Help!! Circular Redirect error when submitting to iTunes

    Howdo folks
    I'm really hoping someone can help me here, because I've totally run out of ideas trying to figure this out.
    I'm trying to submit my new podcast to iTunes, but when I type in the Feed URL (http://www.mifidpodcast.com/rss/feed.rss), I get the following error message:
    We had difficulty reading this feed. Circular redirect to 'http://www.mifidpodcast.com:80/rss/feed.rss'
    The feed validates fine at feedvalidator.org, so I've got no idea what is causing the problem with the iTunes submission.
    Also, I have no problem subscribing directly when I use the "Subscribe to Podcast" option on iTunes and type in the feed URL. It's just the podcast submission option that comes up with the error.
    Can anyone help? Please?
    Thanks in advance
    Mike
    PC   Windows XP Pro  

    Hmmm, my first thought was that your server had a redirect set up, looping back to post 80. But it doesn't look like that's happening when I read your site's headers.
    I validated your feed and noticed that your server is returning the file as if it were a text file: http://www.feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.mifidpodcast.com%2Fr ss%2Ffeed.rss
    Looking through your source code, it looks like you have an old version of PodPress. Your source says 6.0, the PodPress site says they have 6.8. Double check you have the newest version of the software.
    I hope that helps, nothing else is jumping at me. Mike

  • Shorewall/Iptables REDIRECT error

    Hello to all,
    I have a Shorewall Machine installed with 2 nics...
    But i cant use REDIRECT on /etc/shorewall/rules nor i can use mac address ( ex. loc:~00-A0-C9-15-39-78 ) .. it gaves me an error .....
    $uname -a
    Linux Pride 3.2.8-1-ARCH #1 SMP PREEMPT Mon Feb 27 22:13:59 UTC 2012 i686 Intel(R) Celeron(R) CPU 2.66GHz GenuineIntel GNU/Linux
    $shorewall version -a
    shorewall-core: 4.5.1.1
    shorewall: 4.5.1.1
    $Shorewall debug restart
    Processing /etc/shorewall/init ...
    Processing /etc/shorewall/tcclear ...
    Setting up Route Filtering...
    Setting up Martian Logging...
    Setting up Proxy ARP...
    Setting up Traffic Control...
    Preparing iptables-restore input...
    Running debug_restore_input...
    iptables: No chain/target/match by that name.
    ERROR: Command "/usr/sbin/iptables -A loc_dnat -p 6 --dport 80 -j REDIRECT --to-port 3128" Failed
    Processing /etc/shorewall/stop ...
    Processing /etc/shorewall/tcclear ...
    Running /usr/sbin/iptables-restore...
    IPv4 Forwarding Enabled
    Processing /etc/shorewall/stopped ...
    /usr/share/shorewall/lib.common: line 112: 11336 Terminated $SHOREWALL_SHELL $script $options $@
    $shorewall show capabilities
    Shorewall has detected the following iptables/netfilter capabilities:
    NAT: Available
    Packet Mangling: Available
    Multi-port Match: Available
    Extended Multi-port Match: Available
    Connection Tracking Match: Available
    Extended Connection Tracking Match Support: Available
    Packet Type Match: Not available
    Policy Match: Not available
    Physdev Match: Not available
    Physdev-is-bridged Support: Not available
    Packet length Match: Available
    IP range Match: Not available
    Recent Match: Not available
    Owner Match: Not available
    CONNMARK Target: Not available
    Connmark Match: Not available
    Raw Table: Available
    Rawpost Table: Not available
    IPP2P Match: Not available
    CLASSIFY Target: Not available
    Extended REJECT: Available
    Repeat match: Not available
    MARK Target: Available
    Extended MARK Target: Available
    Extended MARK Target 2: Available
    Mangle FORWARD Chain: Available
    Comments: Available
    Address Type Match: Available
    TCPMSS Match: Not available
    Hashlimit Match: Not available
    NFQUEUE Target: Not available
    Realm Match: Not available
    Helper Match: Not available
    Connlimit Match: Not available
    Time Match: Not available
    Goto Support: Available
    LOGMARK Target: Not available
    IPMARK Target: Not available
    LOG Target: Available
    ULOG Target: Available
    NFLOG Target: Not available
    Persistent SNAT: Available
    TPROXY Target: Not available
    FLOW Classifier: Available
    fwmark route mask: Available
    Mark in any table: Available
    Header Match: Not available
    ACCOUNT Target: Not available
    AUDIT Target: Not available
    ipset V5: Not available
    Condition Match: Not available
    Statistic Match: Not available
    IMQ Target: Not available
    DSCP Match: Not available
    DSCP Target: Not available
    iptables -S: Available
    Basic Filter: Available
    CT Target: Not available
    Ty for ur time even readin this, waitin for ur help I m sure i mmissing smth on kernel...
    John
    Last edited by CoMfUcIoS (2012-03-28 14:58:41)

    http://forums.sun.com/thread.jspa?threadID=5392079&messageID=10739096#10739096

  • Redirect Error Problem - Code 11156

    I would appreciate some help please. When I try to log into some website, im being redirected to the members only page (e.g. dashboard, main account, etc) but instead of successfully landing there as I have always done in the past, 100% blank page occurs with nothing, and i mean absolutelly nothing, being shown but complete white screen of firefox page. After the classical (normal) part of starting URL, this URL gets the following addition at the end: .../Error-COL.html?ErrorCode=11156 So the error code is 11156. Here is the list of subjects I have done so far but did NOT help:
    - updated firefox to the most recent version
    - tried different internet browsers (same problem)
    - contacted technical IT customer support and everything fine on their website
    - cleaned cookies
    - cleaned Flash cookies
    - cleaned registry
    - made sure there is no proxy involved in firefox's settings
    - DOUBLE checked that firewall wouldn't stop anything - i don't have firewall at all
    - scanned system for any potential malware/worms with 3 different such programs
    - scanned completely with Avast also
    - rebooted pc

    ''tried different internet browsers (same problem)''
    Sounds like the web site itself is the problem.
    Can you post the link (nothing else) for us to look at?

  • Paypal redirect error - redirect ok for checkout but not for pay later invoices

    Has anyone had success in people paying paypal after an order?
    We have paypal set up perfectly for checkout. Customer pay then they come back to our website and see they have paid.
    But if the customer gets an order and then logs in online to pay it (e.g http://bit.ly/Uc85R5), Paypal will take them to their payment page, take the payment but when it takes them back to our site an error message comes up:
    ERROR: An unknown error occurred. This is most likely due to the merchant profile not being set up correctly. Please contact your system administrator for help.
    The payment works though, it's just the redirect page confirming their payment. I think the reason for the error is something to do with the code.
    https://ourwebsite.worldsecuresystems.com/PaymentProcess.aspx?paypal=success&tx=2D355607H4466902T&st=Completed&amt=0.02&cc=AUD&cm=13031601|ff02efc9-0d0 8-47f6-8465-da202fadf4f5|eedcf84b-ce7e-4ea6-a8d1-8ed23da22f35|10%2f17%2f2012%2003%3a35%3a4 9&item_number=1817147
    All paypal settings are fine and as per business catalyst knowledge base.
    - The only thing I can think to do is create an item called "Payment" and send the customers the Payment link to pay for their order - ie adding the payment item to a new cart and checking out like that. Any advice?
    Best,
    DD

    Back to initial enquiry, it would be great for us if  BC development team give us just rough information on new features being implemented.
    Say "Paypal standard on standalone webform" is at  considered as "to be implemeneted" then you can at least let us know it's "being considered" because at this stage we don't know whether each request is being considered or disregarded.
    In addition to Simon's word, small business or individuals like us try to stick to one platform (BC here) and some time it's hard to manage jobs. We dropped quite few BC websites and chose other eCommerce platform for because of BC's lack of basic function (I still think BC is a great platform and that's why we stick to it but some time it still doesn't make sense to be honest)
    For instance, a customer wanted forum functionality on BC for their staff communication & project sharing. It's there but it's not usable. It's too out dated, reply function doesn't make sense and forum editor is hopeless. I've contacted BC support over few months and every time I get told that "it's been added to feature request." Now I have no word to tell my client other than "Impossible" so we planning to move the entire BC website to some other. It's quite big loss for us, the client and BC as well. I hope the "wishlist" comes back (not as anybody can add them but somehow as a "feature request" status board ?)
    Anyway, these days a lot of people come to us requesting modern & simple purchasing style but it cannot be done via the shop layout so I guess this might need to be answered soon. Otherwise we need to move (in Australia) to Payflow. Set up fee is $300 and there's $45 monthly fee as well, why so different from US free PayFlow account? this is Australia   then we will need to cancel current payment gateway plan and maybe existing merchant account as well, what a pain it could be !

  • Please help!..redirecting error messages

    I'm developing an application and I wish to redirect all error messages to a separate .txt file. Is this possible??
    This is very urgent, if anyone can help!
    Thanks.

    String sSysLog = "MySystemLogFile.txt";
    PrintStream stream = new PrintStream(new FileOutputStream(sSysLog, true), true);
    System.setErr(stream);     // Set System.err to output to specified log file.

  • Safari - Too Many redirects error

    This error is quite specific to any FarmVille links within Safari. I have raised the issue with Zynga, but I have since realised that this issue has occurred since upgrading to iOS 4.3.1. and Zynga aren't currently reporting any known issues like this. Anyone else having a similar problem? If I click/touch and FarmVille links within Safari I get the following error "Cannot open page. Safari cannot open the page because too many redirects occurred."
    I have yet to test on Safari on my iMac to see if the issue is specific to the iPad.

    You can avoid re directs using Open DNS.
    Tap Settings / Wi Fi then select DHCP.
    Where you see:  DNS
    Type in these numbers exactly as you see them here.
    208.67.222.222
    Restart your iPad. Open DNS is free, adds security and includes anti phishing filters.
    The information at this link is for DNS for a computer but the information should help.
    Topic : Manually provided DNS server addresses are higher priority than DHCP's

  • Safari and Redirect Error

    I have a web app that uses a 302 redirect to download a file off of Amazon S3. The download works fine in IE6, IE7, Firefox on Mac and PC, and Opera for Mac. But it fails in Safari with a signature error from Amazon.
    If I print the URL as produced by my app and paste it into Safari it works, but if I try to redirect to it, it does not work. Here is my redirect:
    $r->method('GET');
    $r->headers_in->unset('Content-length');
    $r->content_type('application/octet-stream');
    $r->headers_out->{'Location'} = $url;
    $m->abort(302);
    I'm using Apache 1.3.37 and mod_perl 1.30.
    When I ran this process through Wireshark, I discovered two very strange things: Safari's destination IP address for the GET request is different from that of other browsers. In fact, it does not resolve to anything at all, whereas the other browsers have a destination IP address that does resolve to Amazon, if I use a reverse DNS lookup tool.
    Also, Safari seems to be ignoring my content-type header, and it makes its own: Content type application/x-www-form-urlencoded. This is incorrect for GET requests, I think.
    Safari is the only browser that causes this problem. Does anyone have any idea how to fix this?
    Amiri

    Also, this only happens in Safari 3 on Leopard. Not on Tiger.

Maybe you are looking for

  • PGI reversal VL09 not happening

    hi user has done following cycle 1.ME21N-PO document type UB and Item cat I. 2.VL10B- Outbound delivery 3.VL06G-goods issue using automatic MVT 647 and 101) 4.VF01-Performa Invoice(billing Type JEX) 5.J1IIN- Excise invoice. In billing base price is m

  • Why won't my Samsung Stratosphere Charge??

    I've had a Samsung Stratosphere since late July of 2012. For the most part it hasn't given me any problems. However for the past 3 days the phone has had problems charging. Last night it finally died while I was sleeping, I tried to charge it again,

  • My blackberry z10 wont install any downloaded apps

    My z10 since the latest os upgrade cannot install apps from anywhere even blackberry world I have 10.2.1.3062 os How can I sort this out

  • Application Load Balancing In EBS R12

    Hi, I want to implement 2 node Load balancing in EBS 12.0.6 instance means i want run all application services in both the node. Please tell us how can i achieve this without any hardware load balancer?

  • Setting CLASSPATH question

    Hi,           I'm evaluating Weblogic 5.1. My evaluation requires me to write an           Enterprise Java Bean that uses Container Managed Persistence, place it on a           server, and have an HTML page call into the EJB through a servlet. The