How to publish a 3rd party webservice ?

Hi Guys,
I have a wsdl file of the 3rd party webservice and now i need to consume this service in ABAP on ECC 6.0.
I am following the video presentation by Thomas Jung
/people/thomas.jung/blog/2007/12/17/consuming-services-with-abap
while doing so the service already exists in SOAMANAGER under services so that it will be aviable for consuming. How can i make my 3rd party WSDL to be available there. Do i need to publish my service ?
any suggestions or ideas would be appreciated
Thanks,
Raj

Hi Rajeev,
I have consumed the the 3rd party WSDL and created the consumer proxy object with out publishing the service.
I have tried to define the Logical Port for this proxy in the SOAMANAGER and when i have provided all the details of the URL and Login details for the WSDL access settings with the option HTTP access.
I am getting the errros as below
SRT Framework Exception: Error in WSDL access: Exception occured in communication Framework:
Error in HTTP Framework:
I have tried the same URL in the browser with the login details and i am able to access the WSDL but from different server.
I am tryinng all these by logging into ECC 6.0 from the webgui on a different server. Do you think the actual ECC 6.0 server from where the request goes the might be blocked?
any help or suggestions would be appreciated
Thanks,
Raj

Similar Messages

  • Receiver Axis Adapter to 3rd party webservice

    Hi,
    My scenario is ABAP Proxy --> PI --> 3rd party webservice using Soap Adapter with Axis protocal.
    I'm getting the following error when attempting to post to the 3rd party web service:
    nested exception is: java.net.SocketException: Connection timed out:could be due to invalid address
    We do have to go through a proxy server to go outside the firewall.  I'm not sure if this may be the issue, but I don't even see where you can set this in the AXIS adapter.
    Can anyone shed some light on the topic?
    Thanks and regards,
    Duke

    Configured as stated below, and the issue was resolved.
    How can I call some service over an HTTP proxy server?
    The Axis's standard and adapter's HTTPSender and CommonsHTTPSender handlers recognize the java's standard network properties (http.proxyHost, http.proxyPort, http.nonProxyHosts) for HTTP proxy setting. Please check that these System properties are correctly set at the J2EE server's System properties page. For more information on how to set Java System properties, please refer to the J2EE server's documentation (SAP Note 710146 How to change J2EE Engine JVM Settings).
    Thanks and regards,
    Duke
    Edited by: Duke on Aug 5, 2010 5:37 PM

  • IDOC XML to 3rd Party WebService

    Hello,
    I am new to XI.  I want to now the possiblity and effort involved in using XI to receive an IDOC from an R/3 system and forward that IDOC as IDOC-XML to a WebService on a target 3rd Party application.  The 3rd Party WebService would have as oe of its input the IDOC-XML and will return a status of success or failure of RECEIPT.
    Is this a complex map in XI?
    Thanks in advance for any information here.

    Hi,
    >>>>>Is this a complex map in XI?
    the mapping itself - depends how many values you
    need to change (materials, partners ) and how
    lookup etc.
    the process - if you want to use the web service
    in a sync way (to know the status) you will need
    to use a BPM:
    IDOC - BPM - sync WS
    if the mapping will be easy (or non at all - just IDOC-XML) then the dev should take 1 day
    + tests etc...
    Regards,
    michal

  • Reframing my Question for RESTful 3rd Party WebService

    My last posted question did not produce any feedback for what I was looking for, so I'm trying this again.
    I have a Driver entity, and an gpsVehicleData entity. Drivers can have one gpsVehicleData (relationship)
    In a grid screen I use; for THE most basic understanding I can get, I have one field I need updated from my 3rd party webservice. We'll call it gpsVehicleData.MotionStatus, and I need to use Driver.DriverID in the service to find his MotionStatus.
    This is the example connection snippet I was given by the vendor.
    Dim responseData As String = ""
    Dim uri As String = "http://ws.samplegps.com/DriverWebService.svc/drivers/"
    Dim request As System.Net.HttpWebRequest = Net.HttpWebRequest.Create(uri)
    request.Method = "GET"
    Dim companyLoginId As String = "12345"
    Dim username As String = "John"
    Dim password As String = "Doe4321"
    Dim auth As String = companyLoginId + "|" + username + ":" + password
    Dim authHeader As String = Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(auth))
    request.Headers("Authorization") = authHeader
    Try
    Dim httpWebResponse As System.Net.HttpWebResponse = request.GetResponse()
    If httpWebResponse.StatusCode = Net.HttpStatusCode.OK Then
    Dim responseStream As IO.StreamReader = New IO.StreamReader(httpWebResponse.GetResponseStream())
    responseData = responseStream.ReadToEnd()
    Console.WriteLine(responseData)
    Console.ReadKey()
    End If
    Catch ex As Exception
    responseData = "An error occured: " & ex.Message
    Console.WriteLine(responseData)
    Console.ReadKey()
    Great. So this works when I run in it's own solution, and it pops up a console window and shows all data for each of my drivers. My problem is, I cannot find an example I can follow to update the Motion property in EACH ROW (each driver of my Screen with
    this snippet.
    (A button function seems appropriate instead of Validate method, but honestly as long as it works I don't care.
    This is the closest I have found but I'm not using Soap.
    LightSwitch - Consuming Web Services
    This is too, but much different than the first example!
    Calling Web Services to Validate Data in Visual Studio LightSwitch
    One example has something and not the other, and the other example has this but not that. Very frustrating for a new person!
    I do not need to dive into RIA right now which has been suggested before.
    I know I am not very knowledgeable in VB, but I need to use something applicable to my environment I can make more sense of. Thanks in advance

    This is the closest I have found but I'm not using Soap.
    LightSwitch - Consuming Web Services
    From your description, you can consider using method above, as I know, this way is available/convenient for your situation.

  • Problems connecting 3rd party webservices from workerrole

    Hello,
    I have the problem that since 2015.01.28 ~22:00, my service deployed as a workerrole in an Azure instance cannot reach 3rd party webservices. This was a sudden issue as it worked for half a year without any changes.
    The 3rd party webservices work fine, I can reach them from my development environment without any trouble, the provider of these webservices also could assure me that it works fine for others.
    The call that fails is a simple WebClient call (with credentials) to a URL in order to read a (tiny) file and take followup actions.
    The call fails with the following error:
    System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond
    after a period of time, or established connection failed because connected host has failed to respond <ip:port>
    The question: have there been any changes recently, either in the Azure services environment or networking that could explain this?
    If i connect remotely to the instance and attempt to make the calls manually via IE, they succeed, but very slowly.
    I have deployed the service to another datacenter as a test, so right now I have one running in East US and Western Europe, but both face the same issues. The service is running on Azure SDK 2.1, the instance is running on windows server 2012R2.
    The service works fine when I run it on my development environment via compute emulator. No connection issues.
    Any help is welcome, thanks ahead.

    Looks like a timeout issue. Try to increase timeout of your call to see if you get any success. If OK, then for sure it is timeout problem. Then check if it is DNS problem. Use IP address to call instead of hostname. You mention it is slow in IE. Where
    is IE located? You can also try to call using IP address instead of hostname to see if it speeds up. Is it slow only the first call?
    Frank

  • How can i get 3rd party plugins for logic such as massive or nexus?

    how can i get 3rd party plugins for logic such as massive or nexus?

    Buy the 64bit AU versions from their respective online stores...
    Massive can be found at;
    http://www.native-instruments.com/en/products/komplete/synths-samplers/massive/p ricing/?content=2115
    Nexus 2 (as Nexus 1 will not work with Logic Pro X) from;
    http://refx.com/products/nexus/summary/
    However, I suspect, based on the fact you could have simply searched on Google.. that buying them wasn't what you had in mind.................

  • How to use a 3rd party source control tool with RoboHelp?

    Hello,
    I would like to set our RoboHelp users up with source control.  They are using RoboHelp HTML 8.0.
    Our software developers are using the AccuRev scm system; I'd like the doc team to use AccuRev, too.
    Can someone direct me to RoboHelp documentation that explains how to set up and use a 3rd party scm system with RoboHelp?
    Thank you,
    Marilyn

    It appears that RoboHelp 7 only sees the first SCC provider listed in the Windows Registry and ignores the rest. I was able to get RoboHelp to display the File | Version Control menu for SourceGear Vault by setting the following two Registry keys and removing keys for other SCC providers (SourceSafe, Surround SCM, and others I am evaluating).
    HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider
         ProviderRegKey = \Software\SourceGear\Vault Client
    HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\InstalledSCCProviders
         SourceGear Vault VS2003 Compatible Client = SOFTWARE\SourceGear\Vault Client
    If I create a new RoboHelp project, save it, then select File | Version Control | Add to Version Control, RoboHelp does the following:
         - pops up the Select Version Control Provider dialog and displays SourceGear Vault Classic Client.
         - I select that, check "Make this my default selection" checkbox, and click OK.
         - RoboHelp crashes.
    I'm using SourceGear Vault 5.02 under Windows 7 Ultimate 32-bit. A search of the SourceGear Vault knowledge base reveals that they do not support RoboHelp because of its incorrect behavior and instability. It's so sad that RoboHelp can't work properly with industry standard SCC providers. Vault is by far the best SourceSafe replacement out there, and very affordable.

  • How do I get 3rd party photo software to work when logged in as myself?

    As someone who works with expensively in photography, Aperture is one of my main software programs for processing photos, Now, with Apple apparently no longer supporting Aperture in the near future, I need to find a replacement. I have spent years avoiding anything made by Adobe except Reader, but bit the bullet and purchased an out of the box (not monthly rental) version of Lightroom, When I opened it after downloading, it didn't work. I kept getting an error message about the modules not changing properly.  After searching for an extended period of time for how to contact Adobe tech support by phone, I was left to attempt to find a fix through their support community similar to this one. I received a couple of emails that attempted to help, but none of them worked, or allowed me to use the program at all, until it was suggested I log out and then log back in as another user to see if that works.  So I did that and redownloaded the software as the new user and it worked perfectly.
    But when I logged back out and then back in as myself, I was back to the same issue as before and I still can't use it as myself. This is highly problematic, given the number of photos I have access to when logged in as myself. Besides, I want to be me, not a different person.
    Is there anyone out there that can give me a "For Dummies" explanation of how to get the stupid software to work as myself instead as someone else? I already tried several times to uninstall and then redownload the program, but that didn't help. (God, I hate Adobe software!)
    Thanks for any assistance you can give.

    Frank:
    You make good points. Please allow me to make a couple myself:
    1. I am a serious photographer. And the first place I go with my RAW files is Aperture. I love Aperture. I also understand that it's not going away, so I will continue to use it. But if all the articles appearing in photography-related publications are correct, it eventually will be far behind newer versions of other photography software. It would be similar to something like if all my friends were using Mavericks OS, but I continued to use Panther OS. They would be far ahead of me in ability to do terrific stuff. Should the prognosticators prove correct about Aperture, then I will eventually need a replacement to stay current. In reading a plethora of articles, many of which were comparative from one photo app to another, I reluctantly decided to go with Lightroom. I dislike Adobe, hence, my reluctance. But it seemed the best of a series of poor replacements for Aperture. I didn't want to pay Adobe an annual fee equal to the cost of a single out of the box Lightroom product, so I did go out of the box in this instance. And my thought is that while I will continue to use Aperture for the near future, it might behoove me to practice on Lightroom so I am familiar with it if I eventually abandon Aperture.
    2. Your second point is that this is an Apple forum, not an Adobe forum. Point taken. I have always gotten terrific assistance when I come here for help. I went to the similar community in Adobe and the responses I got there were not as functionally helpful as what I usually get here. And since it seemed that it was eventually found to be a user issue, rather than a software issue, it would seem that a community of Apple users would be of more assistance than a community of 3rd party software users. So I came here. And what do you know? It seems that the information I received here was far superior/helpful to what I got over there. It turns out my faith in the Apple community was well-placed.
    When I get back home from work this evening, I'm going to take the info I received from Leonie and yourself and attempt to resolve my user issue. I'm keeping my fingers crossed.

  • How to do a 3rd party sales process

    How to do 3rd party sales process.....
       plz reply me with the full configuration.....

    THIRD PARTY SCENARIO
    in third-party order processing, your company does not deliver the items requested by a customer. Instead, you pass the order along to a third-party vendor who then ships the goods directly to the customer and bills you. A sales order may consist partly or wholly of third-party items. Occasionally, you may need to let a vendor deliver items you would normally deliver yourself.
    Process Flow
    the processing of third-party orders is controlled via material types. Material types define whether a material is produced only internally can be ordered only from third-party vendors, or whether both are possible. For example, a material that is defined as a trading good can only be ordered from a third-party vendor. However, if you manufacture your own finished products, you may also want, from time to time, to be able to order the same type of product from other vendors.
    Processing Third-Party Orders in Sales
    Third-party items can be created automatically by the system, depending on how your system is set. However, you can also change a standard item to a third-party item during sales processing manually.
    Automatic third-party order processing:-
    if a material is always delivered from one or more third-party vendors, you can specify in the material master that the material is a third-party item. During subsequent sales order processing, the system automatically determines the appropriate item category for a third-party item: TAS. To specify a material as a third-party item, enter BANS in the Item category group field in the Sales 2 screen of the material master record.
    Manual third-party order processing
    In the case of a material that you normally deliver yourself but occasionally need to order from a third-party vendor, you can overwrite the item category during sales order processing. For a material that you normally deliver yourself, you specify the item category group NORM in the material master.
    If, as an exception, you use a third-party material, change the entry TAN to TAS in the ItCa field when processing the sales document. The item is then processed as third-party item.
    If address data for the ship-to party is changed in the sales order in third-party business transactions, the changed data will automatically be passed on to purchase requisition and also to the purchase order ,if one already exists. In the purchase order, you can display the address data for the ship-to party in the attributes for the item.
    You can only change the address data for the ship-to party in the sales order for third-party business transactions, and not in the purchase order.
    Processing Third-Party Orders in Purchasing
    when you save a sales order that contains one or more third-party items, the system automatically creates a purchase requisition in Purchasing. Each third-party item in a sales order automatically generates a corresponding purchase requisition item. During creation of the requisition, the system automatically determines a vendor for each requisition item. If a sales order item has more than one schedule line, the system creates a purchase requisition item for each schedule line.
    Purchase orders are created from purchase requisitions in the usual way. For more information about creating purchase orders, see the Purchasing documentation. During creation of the purchase order, the system automatically copies the delivery address of your customer from the corresponding sales order. In a sales order, you can enter purchase order texts for each third-party item. When you create the corresponding purchase order, the texts are automatically copied into the purchase order. The number of the purchase order appears in the document flow information of the sales order.
    All changes made in the purchase order are automatically made in the sales order as well. For example, if the vendor confirms quantities and delivery dates different from those you request and enters them in the purchase order, the revised data is automatically copied into the sales order
    you process third-party items by creating a normal sales order. In overview for the order, you can then overwrite the default item category (TAN in the standard system) with the special item category for third-party items: TAS
    Billing Third-Party Orders
    If relevance for billing indicator for the item category has been set to B (relevant for order-related billing on the basis of the order quantity) in Customizing, the system includes the order in the billing due list immediately. If, however, the indicator has been set to F (relevant to order-related billing on the basis of the invoice quantity), the system does not include the order in the billing due list until an invoice from the vendor has been received and processed by the purchasing department. In the standard system, item category TAS (third-party order processing) has been given billing-relevance indicator F.
    In the first case, the third-party order is considered to be completely billed only when the invoiced quantity equals the order quantity of the sales order item. In the second case, each time a vendor invoice is received, a customer invoice is created for the quantity in the vendor invoice and the order is considered to be fully invoiced until the next vendor invoice is received.
    If you have activated billing-relevance indicator F for item categories in Customizing, billing can refer to the goods receipt quantity instead of the incoming invoice quantity.
    You can control whether the invoice receipt quantity or the quantity of goods received is relevant for billing in Customizing for copying control for billing at item level.
    FOR YOUR PROCESS Individual Purchase Orders WELL GIVE THE RIGHT SOLUTION
    Individual purchase orders are used when your customer orders goods from you that are not in stock and must be ordered from one or more external vendors.
    Process Flow
    During sales order entry, the system automatically creates a purchase requisition item. The purchasing department creates a purchase order based on the requisition and the vendor ships the goods directly to you (unlike third party order processing, where the vendor ships directly to your customer). You then ship the goods to your customer. While the goods are part of your inventory, you manage them as part of the sales order stock. Sales order stock consists of stock that is assigned to specific sales orders and cannot be used for other purposes.
    Process Flow for 3rd Party Sales
    Customize the third party sales in summary:
    Prerequisites for 3rd party sales,
    Purchasing org,
    purchasing group,
    assign the Purchase org to company code
    assign Purchase org to plant,
    should not maintain the stock in material, it should be trading goods,
    1. Create Vendor XK01
    2. Create Material – Material Type as "Trading Goods". Item category group as "BANS".
    3. Assign Item Category TAS to Order type that you are going to use.
    4. A sale order is created and when saved a PR is generated at the background
    5. With reference to SO a PO is created (ME21N). The company raises PO to the vendor.
    6. Vendor delivers the goods and raises bill to company. MM receives the invoice MIRO
    7. Goods receipt MIGO
    8. Goods issue
    9. The item cat TAS or Schedule line cat CS is not relevant for delivery which is evident from the config and, therefore, there is no delivery process attached in the whole process of Third party sales.
    10. Billing *--
    SD - 3rd party sales order Create Sales Order
    VA01
    Order Type
    Sales org, distr chnl, div
    Enter
    Sold to
    PO #
    Material
    Quantity
    Enter
    Save
    SD - 3rd party sales order View the PR that is created with a third party sales order
    VA01
    Order Number
    Goto Item Overview
    Item ->Schedule Item
    SD - 3rd party sales order View the PR that is created
    ME52N
    Key in the PR number
    Save
    SD - 3rd party sales order Assign the PR to the vendor and create PO
    ME57
    Key in the PR number
    Toggle the "Assigned Purchase Requisition"
    Execute
    Check the box next to the material
    Assign Automatically button
    Click on "Assignments" button
    Click on "Process assignment"
    The "Process Assignment Create PO" box , enter
    Drag the PR and drop in the shopping basket
    Save
    SD - 3rd party sales order Receive Goods
    MIGO_GR
    PO Number
    DN Number
    Batch tab , click on classification
    Serial Numbers tab
    Date of Production
    Flag Item OK
    Check, just in case
    Post
    Save
    SD - 3rd party sales order Create Invoice
    MIRO
    Invoice Date
    Look for the PO , state the vendor and the Material
    Check the box
    Click on "Copy"
    Purchase Order Number (bottom half of the screen)
    Amount
    State the baseline date
    Simulate & Post
    Invoice Number
    *Invoice blocked due to date variance
    SD - 3rd party sales order Create a delivery order
    VL01N
    In the order screen , go to the menu Sales Document , select "Deliver"
    Go to "picking" tab
    State the qty and save
    SD - 3rd party sales order Create a billing document
    VF01
    Ensure that the delivery document is correct in the
    Enter
    Go to edit -> Log
    Save

  • I am working with Acrobat  9 Extended Pro. How do you edit 3rd party pdf files?? Some do not allow.

    I've been attempting to modify a 3rd party, original form purchase agreement -- so I may complete it with answers and save in my system for future submital or more editing. The form I'm attempting to complete with my laptop .. turns blue (converts to photo storage?) and makes it impossible for me to edit.
    How do I edit under Acrobat 9 Extended Pro software  -- Please advise ASAP.
    Paul Johnson

    You could add form fields or comment annotations. If you want to modify the text directly you may need to OCR the pdf and convert it to a text or Word document, edit the text, then make a new PDF.

  • How can I include 3rd party jar files with my custom extention?

    I'm writing an extension that is dependent upon some 3rd party jars. How can I include/package these with my extension?
    we're using the 11g tech preview
    thanks,
    Dylan

    Do you mean that you need these files to appear in JDeveloper as a library available for the developers who build a project and use your extension?
    You can create a library in JDeveloper with JAR files by simply adding the following to your extension.xml file:
    <jdeveloper-hook xmlns="http://xmlns.oracle.com/jdeveloper/1013/extension">
    - <libraries xmlns="http://xmlns.oracle.com/jdeveloper/1013/jdev-libraries">
    <library name="My Extension Library">
    <classpath> ${ide.extension.install.home}/lib/some.jar</classpath>
    </library>
    </jdeveloper-hook>

  • Securing 3rd party webservice

    I would like some advice please.
    We are building a flex application which is consuming a 3rd
    party web-service. We want to make sure that only the flex
    application we made can have access to this 3rd party web-service.
    The flex application will be publicly available, so there is no way
    of putting in some authentication here. How should I configure the
    proxy-config.xml to prevent other consumers (other than our flex
    app) from using the web-service available through the flex proxy.

    Hi,
    There are ways to secure destinations. Please visit the URL
    below for details on how to secure destinations.
    http://livedocs.adobe.com/blazeds/1/blazeds_devguide/services_config_3.html
    Hope this helps.

  • How will FCPX implement 3rd Party Plug-ins?

    From a Professional standpoint, the current version of FCPX is unusable on so many levels due to the absence of basic features that made FCP series the juggernaut it was until yesterday.
    Here's my prediction of HOW Apple plans to distribute Plug-ins and Add-ons:
    Apple is pushing towards a single, universal OS -- most likely a glorified iOS. And they're forcing FCPX users to upgrade to Lion so they have Appstore on their machines just to buy FCPX. Matter of fact, theyi're seeing more profit from Appstore/iTunes than their own computers! Ever since the success of the Appstore -- Apple/Jobs has been pushing to create products and services that will bring even more profit to the Appstore/iTunes business model.
    Hence the release of the iPad and the development of iPad apps -- and the move to with OSX Lion.
    The reason for this is so that Apple can take their flagship software like FCP --- and monetize all 3rd-party plug-ins and add-ons.
    SO, once Apple has a consumer using FCPX, if they want Multi-cam or Import/Export features -- you will have to buy it as an add-on and sell all FCPX plug-ins and add-ons THROUGH THE APPSTORE.
    Furthermore -- Apple will most likely force all 3rd-party developers to build plug-ins for FCPX as an APP -- and sell it THROUGH THE APPSTORE -- where Apple gets 30% commission -- stealing that money away from the developers, who in the past with FCP7, you were able to purchase directly from the developer.
    SO -- FCPX isn't a revolution in editing....
    FCPX is a revolution in MONETIZING FINAL CUT PRO PLUG-INS through the APPSTORE!

    Apple is pushing towards a single, universal OS -- most likely a glorified iOS.
    No they are not. OS X is a far more developed, powerful and mature OS than iOS. There is no sign that it is being some reduced in power in any way.There's a whole lot of fokks claiming it is simply because a few interface features from iOS are being added  - note added - to OS X.
    And they're forcing FCPX users to upgrade to Lion so they have Appstore on their machines just to buy FCPX.
    Well I hate the argue but that's factually untrue as well. No FCPX users are not forced to upgrade to Lion. Snow Leopard users can buy FCPX today, long before Lion is introduced.
    Regards
    TD

  • How do you install 3rd party plug-in in Photoshop CC

    Our fine customer service/tech support wouldn't help me with my question/problem because 3rd party plug-ins are not an Adobe product.... Silly, isn't it since all I want to know is how do you install "any" plug-ins into Adobe Photoshop CC. Can anyone with any sanity here offer a solution?
    Thanks.

    It could be complex depending on your OS and user ID permissions.    Adobe Photoshop CC Mac version only supports new Mac with Intel 64bit processors, Photoshop CC windows supports  both 64 bit systems and 32 bit systems.  If you have a 64 bit system both the 32 bit and 64 bit version of Photoshop are installed so windows has both a 32 bit Plug-in Folder and a 64 Bit Plug-in Folder.  Prior to CC Photoshop Preference let you add you own Plug-in folder tree to Photoshop Plug-in folder tree.   I still install Plug-in that way however I have to add the link manually for adobe removed that option from its Preferences UI in Photoshop CC.  I always have more the one versions of Photoshop and all installed versions use the same Plug-in, Actions and Scripts that I add to Photoshop.   There is One exception.  The Way the Image Processor Pro plug-in script is coded expects it and it default XML file to be installed into Adobe's folder so I made and exception for it.   You user ID need to have permission to modify and add files to system folders if you want to install plug-ins into the folders that Adobe created for third party plug-ins to be installed into.
    Adobe Photoshop CC installer creates a folder in  Photoshop version   ...\Plug-ins\... so on my Window 7 64 bit system there are two folders
    "C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\" and
    "C:\Program Files (x86)\Adobe\Adobe Photoshop CC\Plug-ins\"
    All I add to these are the Adobe ScriptListener.8li Plug-in and a link to my  Plug-ins folder.

  • How can i authorise 3rd party products

    I want to include a couple of 3rd party features on my BC site. Each requires a user to login, if I already have my visitor logged into a secure zone, how can I pass that authorisation on to the 3rd party modules so my visitors don't have to login separately to BC and the 3rd party modules.

    There are a wide range of 3rd party modules, well beyond what BC provides, most i can use unless login is required by the user (i wantvto avoid the user having to sign separately into multiple services). but the two specific ones I want to use now are
    Discourse
    https://meta.discourse.org/t/configuring-google-oauth2-login-for-discourse/15858
    https://meta.discourse.org/t/official-single-sign-on-for-discourse/13045
    Even BC's own forum module requires the user to create a separate login just for the forum
    And App42
    http://api.shephertz.com/tutorial/Securing-Your-App/index=security-acl
    I'm a long time user of BC but need to extend it beyond its current feature set.
    The alternative is to use the login of one of the 3rd party services and use that to login to the BC secure zone (can that be done).

Maybe you are looking for

  • Strange problem: ORA-01403: no data found when report has a sort

    Hi, I have a report which behaves very strangely but only for one particular user. The report runs fine when no columns are set as sort-by in the report attributes. As soon as I try and set a column to sort (any column, it doesn't matter) this user g

  • How do I get photos from iphone5 to Mac book pro

    I am trying to get photos taken with my iphone5 transferred to iPhoto on my mac book pro

  • Activate Integrated Planning for Cost Line Items posting

    Hi all, Based on this SAP Help link, there are two ways to create plan line items: 1) By adding the business transaction "Plan line items" to the user status of the WBS Element. 2) By activating Planning Integration a.k.a. Integrated Planning for ver

  • Robohelp issues (folders & files are missing)

    Hi there, We're running Robohelp 7 HTML. We have 3 users using this product. All client PCs are running Windows XP (fully patched). They access their Robohelp project/documentation on a Windows 2003 dev server (also fully patched). Robohelp was worki

  • Problem in SAP-Script Conditional Block

    Hi All, I am creating one report form using SAP Script, which uses standard driver program. There is a control statement like, { Consider W=1, X=0 , Y=0 & Z=0 } /: IF ((X==0 AND Y==0) OR (Z==0 OR W==0)  OR ...) { lot of OR & AND stament used in this