How to SSO through NAM with an application

I have an iPhone application that talks to GroupWise WebAccess -
screenscrape style. That works fine. A few people have NAM 3.1
protecting the website. How do I make an http request to allow the app
to get through to talk to GroupWise?
If I post something like...
Ecom_User_ID=John&Ecom_Password=foobar&target=http s://mail.site.com/gw/webacc
is that possible? I can't find any documentation on how to do this
sort of thing. Perhaps because I do not know where to look?
Suggestions?
danielseos
danielseos's Profile: http://forums.novell.com/member.php?userid=48744
View this thread: http://forums.novell.com/showthread.php?t=405292

Edward van der Maas wrote:
> danielseos wrote:
>
> >
> > I have an iPhone application that talks to GroupWise WebAccess -
> > screenscrape style. That works fine. A few people have NAM 3.1
> > protecting the website. How do I make an http request to allow the
> > app to get through to talk to GroupWise?
> >
> > If I post something like...
> >
> > Ecom_User_ID=John&Ecom_Password=foobar&target=http s://mail.site.com/
> > gw /webacc
> >
> > is that possible? I can't find any documentation on how to do this
> > sort of thing. Perhaps because I do not know where to look?
>
> Its still in the 3.0 doco.
>
> http://www.novell.com/documentation/...adminguide/?pa
> ge =/documentation/novellaccessmanager/adminguide/data/b5gxim5.html
>
> That should still work
Also, if you want to use a specific contract add:
<input type="hidden" name="id" value="ContractID">
ContractID is the value of the ID field on the second tab when you edit
a contract (i forgot what the exact option is called)
Cheers,
Edward

Similar Messages

  • How to find index name with primarykey and column on a table?

    Hi,
    how to find index name with primarykey and column on a table?
    please help me.
    Thankyou.

      1  select ac.table_name, ac.index_name, aic.column_name
      2  from user_constraints ac, user_ind_columns aic
      3  where ac.constraint_type = 'P'
      4   and  ac.index_name = aic.index_name
      5* order by 1,2,3
    SQL> /
    TABLE_NAME                 INDEX_NAME                COLUMN_NAME
    ACTION_TABLE                 SYS_C0011033                NESTED_TABLE_ID
    ACTION_TABLE                 SYS_C0011033                SYS_NC_ARRAY_INDEX$
    CATEGORIES_TAB                 SYS_C0011038                CATEGORY_ID
    CUSTOMERS                 CUSTOMERS_PK                CUSTOMER_ID
    INVENTORIES                 INVENTORY_IX                PRODUCT_ID
    INVENTORIES                 INVENTORY_IX                WAREHOUSE_ID
    LINEITEM_TABLE                 SYS_C0011034                NESTED_TABLE_ID
    LINEITEM_TABLE                 SYS_C0011034                SYS_NC_ARRAY_INDEX$
    ORDERS                      ORDER_PK                 ORDER_ID
    ORDER_ITEMS                 ORDER_ITEMS_PK                LINE_ITEM_ID
    ORDER_ITEMS                 ORDER_ITEMS_PK                ORDER_ID
    PRODUCT_DESCRIPTIONS            PRD_DESC_PK                LANGUAGE_ID
    PRODUCT_DESCRIPTIONS            PRD_DESC_PK                PRODUCT_ID
    PRODUCT_INFORMATION            PRODUCT_INFORMATION_PK           PRODUCT_ID
    PROMOTIONS                 PROMO_ID_PK                PROMO_ID
    WAREHOUSES                 WAREHOUSES_PK                WAREHOUSE_ID
    16 rows selected.

  • How to place file names with thumbnails?

    I have several thousand images that need to go online but I cannot for the life of me figure out how to add file names to the thubnails. Every bit of documentation I've read talks about adding it to the larger images only. I figured that part out but can't I have file names for the thumbnails too?

    Bummer. I was hoping for a secret key to take me there. I have too 
    many images that can be scanned via thumbnails and for the detail 
    shots they can go larger. There is no way I can use this as it is with 
    9000+ images that need to be gone through quickly. Thanks for the 
    answer.
    Mark

  • How to use a proxy with java applications?

    I have a nokia 6300 type s40v3
    hello,
    I would like to know if it is possible to use a proxy of any and how ? kind with java applications.
    thank you

    Well, it works well when, into my applet, i do somethig like this:
    URL url = new URL(host);
    URLConnection connexion = url.openConnection();My applet uses proxy setting from IE6 but only if i use Java 1.4.2_08.
    With IE6 and Java 1.5.04, it doesn't work (my applet doesn't use proxy settings)
    With Firefox and Java 1.5.04, it's ok
    Have you already seen a problem like this with Java 1.5.04 ?

  • How to get cluster name with c++ API?

    Hi everyone,
    I want to get cluster name with c++ API, do you know how to do that?
    Thanks very much!!!
    Guangyin

    937347 wrote:
    Hi Robert,
    For Java, we can get the cluster name like this:
    cache.getCacheService.getCluster().getClusterName(),
    for c++, just as you said, do you mean that i can try to get cluster name like this:
    Sting::View name = cache->getCacheService()->getInfo()->getServiceName();
    InvocationService::handle invocation = cast<InvocationService::handle>(CacheFactory::getService(name));
    String clusterName = invocation->getInfo()->getServiceName();
    But i can not get the right result.
    I know little about how to use InvocationService, could you give me example?
    Thanks very much!!!
    GuangyinHi Guangyin,
    I do not know the C++ API, I never used it, but what you wrote definitely does not look right.
    InvocationService is a way to send arbitrary Java logic (you need to write both the Java logic and a C++ counterpart class, the C++ class will serialize itself with POF and the Java class will deserialize the same data appropriately) as a command to the cluster via the TCP*Extend connection and the command would execute on the proxy node and thus it would have access to the cluster itself.
    You probably should start with the documentation of the Coherence*Extend C++ API documentation for samples.
    http://docs.oracle.com/cd/E24290_01/coh.371/e22839/toc.htm
    http://docs.oracle.com/cd/E24290_01/coh.371/e22839/cpp_part.htm#CHDHCIEJ
    Best regards,
    Robert

  • Chart View( How to Stick a Name with Value)?

    Hi,
    How can we Stick a name with value in chart view.Please share with me if anybody have an idea.
    Thanks
    VVR
    Edited by: 806756 on Jun 10, 2011 7:24 AM

    Please help me on this.

  • How to retrive table names with Java?

    Hello!
    If I connect to my Oracle Database 10g Express Edition Instance with some Java code and I run the following code:
                   ResultSet resultSet = databaseMetaData.getTables(null, null, "%", types);
                   while( resultSet.next() )
                        String tableName = resultSet.getString(3);
                        System.out.println(tableName);
    I get loads of different names of tables beside those that belongs to my user like:
    DR$NUMBER_SEQUENCE
    DR$OBJECT_ATTRIBUTE
    DR$POLICY_TAB
    ARTICLES
    BIN$tQZXQ0iGufbgQAB/AQELFg==$0
    BIN$tQZXQ0iLufbgQAB/AQELFg==$0
    But when I log in to http://127.0.0.1:9090/apex I get a perfect list of the tables belonging to the user:
    ARTICLES
    CUSTOMERS
    DATATYPES
    ORDERROWS
    ORDERS
    REQUESTROWS
    REQUESTS
    SUPPLIERROWS
    SUPPLIERS
    Does any one understand how to access just these table names that is created with my user?
    Best regards
    Fredrik

    Hello Adrian!
    Yes you are right I now understand that this is the wrong forum.
    So I posted the "same question" at:
    How to retrive table names belonging only to a user?
    How ever I seems to have problem with the schema name parameter any way.
    Best regards
    Fredrik

  • How to include another msi with LV application builder?

    I can use LV application builder to create an installer for my application. But my application relies on a 3rd part msi, which should be run after my application is installed.  So how to include this msi with LV app builder? Thanks in advance.

    I would recommend executing a batch file that launches your other installers after your LabVIEW executable finishes installing. The process of doing this (in addition to other suggestions about including 3rd party installers) can be found in the Knowledgebase linked here.
    Kind Regards,
    E. Sulzer
    Applications Engineer
    National Instruments

  • How to print Field name with value of a Class object?

    hi, In C#, I need to print a class field or property name with value without using reflection or string.join method.
    For eg.
    protected void Button1_Click(object sender, EventArgs e)
    List<EmployeeInfo> obj = new List<EmployeeInfo>();
    obj.Add(new EmployeeInfo { eid = 123 });
    obj.Add(new EmployeeInfo { ename = "abc" });
    Response.Write(obj.ToString()); // output must be => ename ="abc" , eid = 123
    public class EmployeeInfo
    public string ename;
    public int eid;
    It need to be resulted as follows automatically with property name and value :
    ename ="abc" , eid = 123
    It need to be resulted with good performance and simple way.

    You could override ToString method in EmployeeInfo class:
    public class EmployeeInfo
    public string ename;
    public int eid;
    public override string ToString()
    return string.Format("ename =\"{0}\" , eid = \"{1}\"", ename, eid);
    protected void Button1_Click(object sender, EventArgs e)
    EmployeeInfo obj = new EmployeeInfo() { eid = 111, ename = "aaa" };
    Response.Write(obj.ToString());

  • How to Integrate OIM API with the Application in NetBeans

    Hi All,
    I'm Facing problems to Integrate OIM API with the Application. I'm using Netbeans IDE. Can anyone please let me know the steps to do so?? any documents will also help me.
    Thanks

    Hey,
    Helpful links for you:
    1- http://www.youtube.com/watch?v=Yccl0HqfA3o
    2- http://www.youtube.com/watch?v=ZdMTLRF7P_4
    Let me know if it helps you. I hope so.
    Thiago Leoncio Guimaraes

  • How make a domain name with BC

    I want to make my website with another domain name. (not http://blablabla.businesscatalyst.com but > www.namewhatiwant.com )
    How do this change ?
    It's possible ?
    I don't want redirection...
    Because google adwords doesn't want redirection, and doesn't want long name url...
    Help me please.
    Fabien.

    Hi Fabien.
    The first domain you listed is not a real domain. It is your development URL. You do not make a domain with BC for your actual domain.
    You need to purchase a domain with a domain hosting company in your country, one that you like or is recomended to you.
    Then you need to set up the Domain in the hosting company as you want it if you want to use emails etc and just set what is called an A-Record to BC for the web traffic or if you want it all through BC you point everything to it.
    Guides on "Going Live" Are found on these forums (do search or look here - http://forums.adobe.com/community/business_catalyst/going_live_users_emails_domains ) and the online BC documentation such as the one here: http://kb.worldsecuresystems.com/846/cpsid_84622.html

  • How to Deploy Mysql database with JSF Application

    hi,
    I have developed web application using JSF which uses a MySQL as Database.The server is localhost, database name is database_123(or watever!), so everything works fine...now this web application is something which i need to run on other computers as well....so do i have to install mySQL server to the computer from which the war file is deployed? if i don't want to install mysql at any computer, then how can i do?
    Plz help me! and if possible please tell me or post a article.
    Thanx in advance
    jsfgeeks

    This is what I am trying to figure out what is the best way. I am not worrying about making the SQL Server part of my install, we are going to leave that up to the client. I already have the script to create the DB, I am just trying to find the best way to deliver the data to the SQL Server. Like I said I have T-SQL scripts with insert statements but they end up being huge. I am looking at maybe using ApexSQL Script, as it can make an .exe file that creates the DB and installs the data, but it give me an out of memory error because we have so much data.

  • How to use java output with other application

    hi ,
    I am using acme.crypto to encrypt data. this is completely written in java. i need to pass input to this using VB6 and return the output to VB6
    how can i achieve the same, is there any readily available dll that can be used in vb?
    I am rigorously searching solution, which i am not finding.
    I need to know how should i place the java code so that it could be used with VB, as i am new to java world. Do i need to create component using java bean or how?
    The code i refered above is nothing but encryption algorithm. I need to pass the input string from vb to java, which will process me the output which inturn should be passed to vb6.
    Kindly guide me through this.

    Why not create a Java ServerSocket in your Java program.
    Connect the VB program to this ServerSocket.
    Send the input to the Java Program over this socket and have the Java Program encrypt the information and pass it back on the same socket.
    Don't know how hard Sockets are in VB6 but a Server Socket in Java is simple.
    No need for new DLLs, JNI, etc.

  • How to design a GP with webdynpro application? Kindly help!

    Hi Experts,
            I have a requirement to design guided procedure for stock reconciliation.
            The starting page for this is a webdynpro(ABAP) report. This report has a table with 4 columns namely, Material_Num, Customer_stock, Org_Stock, Delta.
    Material_Num | Customer_stock I Org_Stock I Delta |
    TRN001          | 100                   | 65             | 35     |
    TRN002          | 200                   | 160            | 40    |
    User will select any row and then can click on 'Reconcile' button below.
    On clicking the 'Reconcile' button it should open a HTML page with details on selected data for reconciliation based on the selected row. This page should have a 'Send for approval' button.
    On clicking 'Send for approval' button, it should open another page for selecting the manager from a list. User can select the right manager and press 'Send' button.
    Once 'send' button is clicked, a status HTML page should open showing status of managerial approval.
    The manager should receive a worklist entry in the portal universal work list. He should be able to approve it.
    The GP flow is like this:
    Stock Report -
    > Send for approval   -
    > Select Manager -
    > Status.
    Can somebody guide me with steps to follow to design this in GP?
    How to pass selected row data from the webdynpro report to the 'Send for approval' page?
    Thanks
    Gopal
    Message was edited by:
            gopalkrishna baliga

    Hi Gopal,
    I would rather recommend you to use Java Web Dypro to have all the advantages of a better integration (parameters mapping, eventing on completion, etc.). You can use ABAP Web Dynpro Application but this is, from a GP Perspective, strictly limited to open the Application. Nothing else happens.
    To reach a better integration in ABAP, you might use the BSP Callable Object.
    Best regards,
    David

  • HT2404 in incoming calls how to display company name with name

    Hello
    How we can get display of company name along with name while receiving incoming calls in iphone 4.
    Thanks

    actually according to this, t-mobile became the first carrier to offer the paid feature in 2011
    http://www.geek.com/mobile/t-mobile-becomes-first-major-us-carrier-to-add-caller -id-feature-1402597/
    i don't know if anything changed with verizon after 2011, but i don't see any such feature on their website. I know you can set/remove your own name that is displayed to others, with verizon. but i cant' specifically find this incoming name feature.

Maybe you are looking for

  • Browser showing Compressor as Apple ProRes 422.

    I am working with HD clips from a Canon using AVCHD codec so I am wondering why my Browser, Compressor column shows Apple ProRes 422. Keep trying to find something in the manual or online video tutorial but no luck. Does this have something to do wit

  • IPhoto Won't Open

    I was attempting to create a new a new album in IWeb by first creating the album in IPhoto. Once I had created the album in IPhoto I tried to do a drag and drop from IPhoto to IWeb. Unfortunately the operation did not work and I wound up deleting the

  • IPad - Unable to restore

    Hello, I had to restore my iPad and while that does happen, I then get locked into a sync that stops at importing photos. The sync bar is moving but never resolves. So I am unable to restore. These are the steps. 1) Change Find My iPad to off 2) Pres

  • Lumia 620 issue

    In nokia Lumia 620 the ringer volume is affected when you reduce the song playing volume thru volume rocker. The ringer volume should be un affected. Can this be rectified.

  • Dreamweaver 2014.1 crashes every time I save a file

    Since upgrading to the latest version of Dreamweaver it now crashes every time I save a file. I have tried doing a save as using Dreamweaver CC instead which works fine. Is there something I can do to give it a lobotomy without losing all of my prefe