Web dympro with component

hi,
I have two web dymprO, WEB_start and WEB_flow .
Web_flow is a component of WEB_START.
In web_start we have a node "ITEM_SELEZIONATO" in the context of componetcontroller: It has one view, V_100.
The action button on this view , call a "SET_ITEM" method  (in componentcontroller of web_start) that value the attribute "ITEM" of node "ITEM_SELEZIONATO' , with a value 'FLOW1'.
Than this action call component WEB_FLOW.
In  modify method of web_flow  I call a method "get_flow" that is in componetcontroller of web_star.
This methos get value of attribute "ITEM", but it is empty instead "FLOW1'.
I SHOW THE CODE OF MY WEB DYMPRO  :
  SET ITEM METHOD :
o_node = wd_context->get_child_node( 'ITEM_SELEZIONATO' ).
Setta l'Item selezionato nell'albero
W_ITEM = "FLOW1"
  CALL METHOD o_node->set_attribute
    EXPORTING
      name  = 'ITEM'
      value = w_item.
wd_this->fire_op_to_w_flow_plg( ).  "CALL  COMPONENT Web_flow.
METHOD wddomodifyview .COMPONENT WEB_FLOW
  o_cmp_usage =   wd_this->wd_cpuse_WEB_FLOW( ).
  IF o_cmp_usage->has_active_component( ) IS INITIAL.
    o_cmp_usage->create_component( ).
  ENDIF.
  o_interfacecontroller =   wd_this->wd_cpifc_main( ).
CALL METHOD IN WEB_START.
    o_interfacecontroller->get_item(
        IMPORTING
          w_flusso = v_flusso
!!!!!error  V_FLUSSO IS EMPTY !!!!!!!!!!!
METHOD get_item .
Dichiarazione oggetto
  DATA: o_node TYPE REF TO if_wd_context_node.
  o_node = wd_context->get_child_node( 'ITEM_SELEZIONATO' ).
  o_node->get_attribute(
    EXPORTING
      name  = 'ITEM'
    IMPORTING
      value = V_flusso ).
wHERE IS THE ERROR?
thanks .

Hi,
You want to pass the data from Web Start to Web Flo rght?
You can  pass the data while firing the plugs.
See the code which I added.
I SHOW THE CODE OF MY WEB DYMPRO :
SET ITEM METHOD :
o_node = wd_context->get_child_node( 'ITEM_SELEZIONATO' ).
Setta l'Item selezionato nell'albero
W_ITEM = "FLOW1"
CALL METHOD o_node->set_attribute
EXPORTING
name = 'ITEM'
value = w_item.
wd_this->fire_op_to_w_flow_plg( g_item = w_item ). "CALL COMPONENT Web_flow."here while firing the plug pass the pararmeter.
                                                                       For this  to be done in the outbound plugs add the paramater say g_item of type w_item*******************************
METHOD wddomodifyview .COMPONENT WEB_FLOW
o_cmp_usage = wd_this->wd_cpuse_WEB_FLOW( ).
IF o_cmp_usage->has_active_component( ) IS INITIAL.
o_cmp_usage->create_component( ).
ENDIF.
o_interfacecontroller = wd_this->wd_cpifc_main( ).
CALL METHOD IN WEB_START.
In the event handler of the inbound plug you can  get the paramter g_item with value "FLOW1"
Pass the variable g_item where ever you want.
o_interfacecontroller->get_item(
IMPORTING
w_flusso = v_flusso
!!!!!error V_FLUSSO IS EMPTY !!!!!!!!!!!
METHOD get_item .
Dichiarazione oggetto
DATA: o_node TYPE REF TO if_wd_context_node.
o_node = wd_context->get_child_node( 'ITEM_SELEZIONATO' ).
o_node->get_attribute(
EXPORTING
name = 'ITEM'
IMPORTING
value = V_flusso ).
wHERE IS THE ERROR?
Please let me know if this is the one you wanted.
Regards,
Priya

Similar Messages

  • Problem connectivity of Web Dympro with SAP Netweaver

    Hi guys,
    I've a problem connectivity of Web Dympro with SAP Netweaver
    I installed Sap NW in a machine on the local network with IP 192.168.x.y, and I can connect to it without problems; I can use the portal and implement jobs in Visual Composer.  
    After installing Sap Developer Studio, I connected it successfully to the NW through the menu "Preferences->SAP j2EE engine" selecting the option "SAP J2EE is installed on remote hosts" and inserting IP address of the machine with NW (192.168.x.y) and port 3900.
    Using these parameters the logon works, in fact I can see the tab "J2EE engine".  
    The problem is that when I try to make the deploy, Web Dynpro asks me the SDM password  (that I'm sure I've inserted correctly) but it returns the following error to me:
    Deployment aborted
    Settings
    SDM host : SVR-NW
    SDM port : 50118
    URL to deploy : file:/C:/DOCUME1/Michele/IMPOST1/Temp/temp59548Welcome.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/Michele/IMPOST1/Temp/temp59548Welcome.ear
    Aborted: development component 'Welcome'/'local'/'LOKAL'/'0.2010.09.01.07.31.29':
    Caught exception while checking the login credentials for SAP J2EE Engine. Check whether the SAP J2EE Engine is up and running.
    com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [svr-nw] with user name: [Administrator]                     Check your login information.                     Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.]
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
    Deployment exception : The deployment of at least one item aborted
    I want to add that  I use Win XP Prof, and I set the same credentials (user "Administrator" and the correct password) I used on the machine where SAP NW is installed.

    Hi Michele,
    There were 2 cases I explained, and the second was the one in case your SDM was blocked. Did you try the first one?
    Anyways, here is something more that you can try to get it working. In case the SDM password is valid, did you log into the portal as the Administrator? If yes, then you must have been asked to change the password. If you did change the password there, login to the remoteGUI using the Master password (abcd1234) and change the password there also to the same password you use for Administrator on the Portal. Now try again.
    In case the above doesnt work, start the configtool.bat from \usr\sap\J2E\JC01\j2ee\configtool and go to secure store. Here define the J2E passwords again (the same new password you gave for the Administrator in the portal), save and restart the server. I think it would work then
    Hope that helps you out!
    Bye,
    Sameer
    P.S - the main thing is that the error you got was Authentication failure using the Administrator username. Thats why you have to make sure that the password for the SDM is the same as what you gave for the Administrator login in the portal. So after you login into the remoteGUI, CHANGE the password to what you have for the Administrator(just like the one in the portal).
    Message was edited by: Sameer Jagirdar

  • How can I build a Web App with Component Combination

    I learned OpenUI 5 for a while, since it's open source version release. It's really a great web front-end framework!
    Now I'm working on a little web app. I design it start from a root module. And I wanna make any other view modules as a stand-alone package. (e.g. Something like Widgets can be make as a Component, and I can instance it anywhere I want). From learning of OpenUI, I think Component should be a good choice for my web app module.
    But there is some trouble. When I make two Component with a parent-child relationship.Once the child Compont's router execute navTo method, the hash will be replace but not append. And the parent Component will be changed too.
    The question is : how to design the route pattern can make the parent-child Components works both fine? Andreas Kunz

    Hi Siqi,
    currently there is no Child/parent relationship build in the framework, but you could do it.
    All your child component need is the first part of the pattern from the parent component, you have to pass this one to the child component, and then create the routes dynamically:
    parentPattern + "/myChildComponent"
    Then the parent and the child will both react correctly on a hashchange.
    Best Regards,
    Tobias

  • Sample code to call web dympro from event

    Hi.
    I have a web dympro form. I want to call this form with dynamic url to which I want to pass parameter transaction_id. For example url http://www.zzz.com&transaction_id=7712
    I created new button and event in component from which i want to make a call. Now i want to know if someone has a sample code which would from event call this dynamic url.
    Thanks in advance.

    hi,
    see below thread ,  may be it helps.
    Re: Start dynamic URL from CRM Opportunity

  • How do I use Edge Web Fonts with Muse?

    How do I use Edge Web Fonts with Muse - is it an update to load, a stand alone, how does it interface with Muse? I've updated to CC but have no info on this.

    Hello,
    Is there a reason why you want to use Edge Web Fonts with Adobe Muse?
    Assuming you wish to improve typography of your web pages, you should know that Muse is fully integrated with Typekit. This allows you to access and apply over 500 web fonts from within Muse. Here's how you do it:
    Select a text component within Muse, and click the Text drop-down.
    Select Add Web Fonts option, to pop-open the Add Web Fonts dialog.
    Browse and apply fonts per your design needs.
    Muse also allows you to create paragraph styles that you can save and apply to chunks of text, a la InDesign. Watch this video for more information: http://tv.adobe.com/watch/muse-feature-tour/using-typekit-with-adobe-muse/
    Also take a look at these help files to see if they help you:
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-1.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-2.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-3.html
    Hope this helps!
    Regards,
    Suhas Yogin

  • Web service in Web Dynpro development Component

    Hi All,
    I have created a web service in SAP GUI and I have saved the WSDL file on my local PC.
    Now when I create a web service model in a simple web dynpro project it works perfectly.
    But when I do the same in a web dynpro development component; as soon as the web service model instance is associated with the activity in the DTR my application get hanged. I have to quit my NWDS. When I reopen NWDS my application shows following errors:
    <i>Kind     Status     Priority     Description     Resource     In Folder     Location
    Error               <b>XMLTokenWriter cannot be resolved</b> (or is not a valid type) for the argument writer of the method serialize     Char1.java     JD2_ADBESP6_Dtestwebservicesap.com/src/packages/com/adobe/mo_web1/proxies/types     line 57
    Kind     Status     Priority     Description     Resource     In Folder     Location
    Error               <b>typeRegistry cannot be resolved or is not a field</b>     Z_WS_GETEMPINFO_FULLSoapBindingStub.java     JD2_ADBESP6_Dtestwebservicesap.com/src/packages/com/adobe/mo_web1/proxies     line 29
    Kind     Status     Priority     Description     Resource     In Folder     Location
    Error               <b>transportBinding cannot be resolved or is not a field</b>     Z_WS_GETEMPINFO_FULLSoapBindingStub.java     JD2_ADBESP6_Dtestwebservicesap.com/src/packages/com/adobe/mo_web1/proxies     line 22
    Kind     Status     Priority     Description     Resource     In Folder     Location
    Error               <b>SOAPSerializationContext cannot be resolved</b> (or is not a valid type) for the argument context of the method serialize     Char1.java     JD2_ADBESP6_Dtestwebservicesap.com/src/packages/com/adobe/mo_web1/proxies/types     line 50
    Kind     Status     Priority     Description     Resource     In Folder     Location
    Error               <b>SOAPDeserializationContext cannot be resolved</b> (or is not a valid type) for the argument context of the method deserialize     Char1.java     JD2_ADBESP6_Dtestwebservicesap.com/src/packages/com/adobe/mo_web1/proxies/types     line 26</i>
    Regards
    sid

    Hi Sidharth,
    Which version of NWDS you are using. I was facing the same problem with SP16 sometime back.
    I did find a workaround to do that. See, whenever you will create the WS Model in Web Dynpro DC, it will ask you to add some file in DTR..right!!........ do one thing press "Cancel" or "No" there. Then studio will ask one more time to add the files, in different dialog box though. Add the files from the second dialog box rather than the first one.
    Regards,
    Mausam

  • SAP Web Dynpro With Java

    Hi Guys
    A situation at work has forced me to learn web dynpro    with java. I already have some experience with the ABAP    web dynpro   . Now the question is how much "java" do i need to learn to learn sap WebDynpro    based on java. Should I first try and get a fair 'hands on' on core java and then shoot for web dynpro    or should I take the other approach, that is just learn as much java as is required for web dynpro   . Any suggestions?
    thanks
    sameer

    Hi Sameer,
    I believe you need not thoroughly know Core Java to begin for Web Dynpro Java but yes, you should have a fair idea about object, class and exceptions that i believe you would already have after working in ABAP. The UI elements can be just inserted into the component by drag and drop and codes correspondly would be auto generated. Only for customization of some functionalities, you will have to write code in Java using APIs.
    Just go through the following tutorials recommended by SAP to start over Web Dynpro Java on NWDS.
    http://help.sap.com/saphelp_nw70/helpdata/en/16/c0d93f5e0f9015e10000000a155106/frameset.htm
    Regards,
    Tushar Sinha,
    Infosys,
    Hyderabad

  • How to create document/literal web services with WLS7

    How do you create document/literal web services with WLS7 ( not workshop)
    - Is it possible with servicegen and stateless EJBs as the backend component?
    The default is RPC/Soap-encoded is there anyway to craft the web-services.xml
    to make it document/literal
    - Is it possible with the JMS-implemented web services - have not tried this yet
    - Is there another mechanism?

    That would be the <web-service> element in the web-services.xml file, of course.
    "Michael Wooten" <[email protected]> wrote:
    >
    Hi Rich,
    Try adding a style="document" attribute to the starting <web-service>
    element.
    The might be a way to get <servicegen> to do this for you, but I haven't
    found
    it yet :-)
    Regards,
    Mike Wooten
    "Rich Muth" <[email protected]> wrote:
    How do you create document/literal web services with WLS7 ( not workshop)
    - Is it possible with servicegen and stateless EJBs as the backend component?
    The default is RPC/Soap-encoded is there anyway to craft the web-services.xml
    to make it document/literal
    - Is it possible with the JMS-implemented web services - have not tried
    this yet
    - Is there another mechanism?

  • Accessing IRM Web Services with Coldfsuion

    We are looking to use the IRM web services with Coldfusion. Coldfusion abstracts Web Services calls through Java calls to the point of just setting up structures and calling the functions.
    My question is about the process for building the correct parameters for the IRM services. I have the JDeveloper examples working but I can't make enough sense of what is goin on through all the calls to build the proper information.
    What I don't understand yet are things like where do I get the server key and at what point do I authenticate? Do I need to do separate calls for these things.
    I've captured a soap transaction for the update user example in JDeveloper and see there is a serverKey but no other authentication. Is this all I need?
    The web services documentation mentions authentication needs to be basic authentication. Other than that there is not more info. Is there any other source of info?

    Hi
    Sorry, things are a bit confused when it comes to Web Services (WS) documentation. At the moment (in 10g), it's mixed up with the older stuff in the Component API Help file. Also, apart from a few snippets and the JDeveloper examples, there is no WS sample code. We hope to address this in 11g.
    The web services required HTTP basic authentication details to be set before the call is invoked. This will be the username and password of the sealing user, so that user will need to be configured to use Standard Auth, rather than NT Auth. How to set this depends on the web service stack used on the client, but with JAX-RPC there are APIs that allow the user name and password to be specified. e.g.
    +// User name for authentication purposes+
    contextServices._setProperty(javax.xml.rpc.Stub.USERNAME_PROPERTY,args[1]);
    +// Password for authentication purposes+
    contextServices._setProperty(javax.xml.rpc.Stub.PASSWORD_PROPERTY,args[2]);
    This snippet is in the Help file under the header "Authentication", or directly via:
    mk:@MSITStore:C:\Program%20Files\SealedMedia\Enterprise%20APIs%20SDK\Components%20SDK\Docs\smcomponents.chm::/ws_documentation_authentication.htm
    As for the Server Key, each IRM Server has a unique UUID value. The easiest way to get this is to call the following web service method on the “ServerServices” web service port.
    LicenseServer_ref reference = serverServices.getLicenseServerReference();
    System.out.println(reference.getServerKey());
    One you’ve obtained this it will never change (for the server you are using) and can be cached or stored for all future web service calls.
    I think you need to have the auth properties set, and the Server Key handy, for most WS methods to work, but I don't think it matters in which order you get them.
    Hope this helps,
    David

  • Closing web browser from a Web Dynpro (ABAP) component in it

    Hi,
    I am opening a Web Dynpro component in IE.
    I have a requirement to close the Internet Explorer window on click of a "Close" Button in Web Dynpro (ABAP) component. I am using EXIT Outbound plug of the Main Window to perform the same.
    In the EXIT plug I am setting "CLOSE_WINDOW" parameter to ABAP_TRUE.
    On click of the "Close" button a pop-up dialog box (with "Yes" and "No" buttons) appears asking me whether I really want to close the IE window.
    If I click on "Yes" button of the dialog box, the IE window gets closed without any issues.
    But when I click on "No" button, the IE window shows up a blank screen. I want the control to come back to the calling Web Dynpro component's screen.
    Appreciate any help/guidance in the above issue.
    Thanks,
    Prasanna

    create an action 'YES','NO', 'CANCEL' in required view.
    copy and paste below code in YES action
    method ONACTIONYES .
      data : l_view_cntr type ref to if_wd_view_controller,
    l_win_cntr type ref to if_wd_window_controller,
    l_window type ref to if_wd_window,
    l_parameter_list type wdr_event_parameter_list,
    l_parameter type wdr_event_parameter,
    l_val type ref to data.
    field-symbols <fs> type any.
    l_view_cntr = wd_this->wd_get_api( ).
    l_win_cntr = l_view_cntr->get_embedding_window_ctlr( ).
    l_parameter-name = 'CLOSE_WINDOW'."'CLOSE_WINDOW'.
    create data l_val type c.
    assign l_val->* to <fs>.
    <fs> = 'X'.
    l_parameter-value = l_val.
    insert l_parameter into table l_parameter_list.
    l_win_cntr->if_wd_view_controller~fire_plug(
    exporting plug_name = 'EXIT_PLUG'
    parameters = l_parameter_list ).
    endmethod.
    goto your window
    create plug EXIT in Window of type EXIT and chect interface checkbox
    create a button - for example - "PUSH BUTTON"
    in pushbutton action
    copy and paste this code
    method ONACTIONEXIT_PLG .
    DATA: API TYPE REF TO IF_WD_COMPONENT,
          WINMAN TYPE REF TO IF_WD_WINDOW_MANAGER,
          WIN TYPE REF TO IF_WD_WINDOW,
          TEXT1 TYPE STRING_TABLE,
          ls_text type string,
          V_API TYPE REF TO IF_WD_VIEW_CONTROLLER.
    API = WD_COMP_CONTROLLER->WD_GET_API( ).
    WINMAN = API->GET_WINDOW_MANAGER( ).
    LS_TEXT = 'Do You Want To Close the Window'.
    INSERT LS_tEXT into table text1.
    win = winman->create_popup_to_confirm(
                                           window_title = 'CONFIRM'
                                           text = text1
                                           button_kind = if_wd_window=>co_buttons_yesnocancel
                                           message_type = if_wd_window=>co_msg_type_question
                                           window_position = if_wd_window=>co_center ).
    V_API = WD_THIS->WD_GET_API( ).
    WIN->SUBSCRIBE_TO_BUTTON_EVENT(
            BUTTON = IF_WD_WINDOW=>CO_BUTTON_YES
            ACTION_NAME = 'YES'
            ACTION_VIEW = V_API
            IS_DEFAULT_BUTTON = ABAP_TRUE ).
    WIN->SUBSCRIBE_TO_BUTTON_EVENT(
            BUTTON = IF_WD_WINDOW=>CO_BUTTON_NO
            ACTION_NAME = 'NO'
            ACTION_VIEW = V_API
            IS_DEFAULT_BUTTON = ABAP_FALSE ).
    WIN->SUBSCRIBE_TO_BUTTON_EVENT(
            BUTTON = IF_WD_WINDOW=>CO_BUTTON_CANCEL
            ACTION_NAME = 'CANCEL'
            ACTION_VIEW = V_API
            IS_DEFAULT_BUTTON = ABAP_FALSE ).
    WIN->OPEN( ).
    endmethod.

  • Excessive use of CPU using WEB Dympro

    We are testing of stress and the use of awaited CPU was of 40% and we are having values of 80%. This can be by the use of WEB Dympro? It can be that it has not been considered in sizing?

    Hi and Welcome to the Community!
    As a user-to-user community, no one here can answer your question with any level of authority whatsoever. No one here can look "behind the scenes" to see what may be going on. If you wish a formal investigation, you must start with your mobile service provider (Cosmote) as ALL contracts, finances, and services are between you and them. They have the power to escalate cases into RIM that require such.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Web interaction with client application

    Hi all,
    I have self taught myself Java over the last 4 years on and off.
    I am in the mid stages of developing an MRPII application with various modules. These modules are effectively JTabbedPanes within JInternalFrames. The JInternalPanes are within a JDesktopPane which also has JTabbedPanes.
    This enables me to have departmental tabs at the top of my app and module functions at the left hand side, dependant of which departmental tab is selected.
    I have created a class that connects to MySql and can do various functions which I then can derive specific MRPII classes.
    I have a desktop PC which I have MySql configured as a server and a laptop which is configured as a client. Both machines run WindowsXP and my router is a linksys.
    With this setup both machines can check inventory, take orders, produce purchase orders, create customers & vendors etc....
    My next step is to try and incorporate a web component into this.
    My ideal goal is to have a database that is set up and hosted on the web and works in the same way as my home network. This would enable me to deploy this application and configure the ODBC data source to point to an IP address. Is this possible and if so how would I go about it.
    The other option is to create web pages with forms that interact with my local server. If this is the better option, I am unsure whether I should learn about servlets or possibly XML, as all I have learned so far is about applications.
    Your guidance would be greatly appreciated.
    thanks
    Jim.

    I wouldn't let client applications connect to a database directly. What if you make a change to the database in order to fix a bug for example, that would mean rebuilding the clients and redistributing them and in the mean time any old client is most likely broken.
    I would let the server communicatie with the database locally and expose either an XML-RPC or a SOAP connection to clients. This makes your framework extendible and abstract, all you do is implement SOAP methods on the server that your clients will invoke. As long as the response of such a call never changes you do not need to change your clients. And who knows, you may even use additional data sources (other databases for example) on your server, your clients will never have to know about it.
    If you want to learn about SOAP, check out Apache axis.
    http://ws.apache.org/axis/index.html

  • Creating Room Instance from Web Dynpro Development Component

    Hi Experts,
    I would like to instantiate a Room Instance based on a pre-created Room Template from within a Web Dynpro Development Component. I had a look at the <i>Collaboration Rooms API Cookbook</i>, which provides all the code examples I need, but which asks that I import the following classes:
    import com.sap.ip.collaboration.room.api.IRooms;
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    Problem is I don't have and can't find those libraries. I am developing in a track on the DTR and all solutions that I have found to the problems thus far require me to import a local jar file. Surely I should rather import a Software Component with the required library into my project? Does anyone know what the name of this Software Component is or what the correct way is to do this?
    Also, a somewhat related problem. If I want to create a Room Instance from an Application Service, how would I go about doing this. Unlike with a Web Dynpro project, I can't setup the build path or Used DCs, so how will I gain access to that library?
    Thank you,
    JP

    Beevin, thanks for the reply.
    I am aware that adding the jars manually to the build path is a possibility, but isn't this a local only solution? What I mean is, lets say I do this and check the code into the DTR - surely the code won't compile on my co-workers' machines as the paths to the jar files are different for them? Unless you mean to somehow add the jar file from the server, in which case could you please elaborate on how to do this?
    This still doesn't solve the application service problem, does it? How can I access those library from the CAF DC?
    Thanks

  • How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    You've probably found an answer to this by now, but I think this has been addressed in another forum -- The link below suggested using a button and adding the tooltip to the button. 
    https://forums.adobe.com/thread/304974?start=0&tstart=0
    Sounds like it would work but I haven't actually tried it. 
    Good luck~!

  • How do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA certfificate i can't open web pages with this, how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC CA certfificate i can't open web pages with this

    how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA ?

    Hi
    I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
    Especially the section Don't which says -
    DON'T
    Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
    PZ
    www.pziecina.com

Maybe you are looking for

  • Error loading from database

    I have a .wft file and two databases: Deploy and Production. If I save the .wft file to Production it works fine but if I save it to Deploy I get when Uploading from database: 1300: Could not load. 1114: Could not load from database. 1115: Could not

  • Error when creating a FDM application on SQL Server 2005

    Hi, we are getting this error when creating a FDM application on SQL Server 2005 Error: EPMCSS-07003: Failed to validate identity. Invalid identity . Check identity.[SET_ROLES_LIST] We are using Windows System Integration although we have also tested

  • Best Advanced Director Forum ???

    Hi guys, I'm new to Director, but not new to programming at all. I seem to have A LOT of difficulty finding forums where "heavy" programming work in Director is discussed. Examples are extensive use of Buddy API, controlling hardware through ports, i

  • Getting roles in encrypted format

    Hi, I am trying to read all the roles present in WAS through a EJB. Somehow the return values for roles (the ones created by a user) I am fetching are in encrypted format (here the roles which were created at the time of installation can be seen prop

  • Disappearing Canvas and Timeline

    I have a project that when opened, only shows the browser and viewer, no canvas or timeline. If I open FCE without any projects open, all the windows are there. If I open another project, all the windows are there. If I open this project with all the