webservices/idwsfplugin/group/senidwsfplugin.mmp
changeset 0 62f9d29f7211
child 22 56092bff76ba
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:        ID-WSF Service Invocation ECOM plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "../../inc/webservices.hrh"
       
    20 
       
    21 SMPSAFE
       
    22 
       
    23 #ifdef SYMBIAN_SECURE_ECOM 
       
    24 TARGETTYPE PLUGIN
       
    25 #else
       
    26 TARGETTYPE ECOMIIC
       
    27 #endif
       
    28 
       
    29 // ECom Dll recognition UID followed by the unique UID for this dll
       
    30 #ifndef RD_SEN_COMPILE_SIS_PACKAGE_FILES
       
    31 TARGET SenIDWSFplugin.dll
       
    32 UID 0x10009D8D 0x101F96F8
       
    33 #else
       
    34 TARGET wsIDWSFplugin.dll
       
    35 UID 0x10009D8D 0x101F972F
       
    36 #endif
       
    37 
       
    38 paged
       
    39 //For enabling bytepair compression for code paging
       
    40 
       
    41 #ifdef EKA2
       
    42     #if !defined ( VID_DEFAULT ) 
       
    43 VENDORID 0x101FB657
       
    44     #else
       
    45 VENDORID VID_DEFAULT
       
    46     #endif 
       
    47   
       
    48     #if !defined ( CAP_ECOM_PLUGIN )
       
    49 CAPABILITY ALL -TCB
       
    50     #else
       
    51 CAPABILITY CAP_ECOM_PLUGIN
       
    52     #endif
       
    53 #endif
       
    54 
       
    55 SOURCEPATH          ../src
       
    56 SOURCE          senidwsfpluginmain.cpp
       
    57 SOURCE          senidwsfpluginproxy.cpp
       
    58 SOURCE          senidwsfplugin.cpp
       
    59 SOURCE          idwsfsaslmessage.cpp
       
    60 SOURCE          idwsfresourceoffering.cpp
       
    61 SOURCE          idwsfdsqueryresponse.cpp
       
    62 SOURCE          idwsfsiuheader.cpp
       
    63 SOURCE          idwsfcorrelationheader.cpp
       
    64 SOURCE          idwsfmessage.cpp
       
    65 SOURCE          idwsfserviceprovider.cpp
       
    66 SOURCE          idwsfsessionconsumer.cpp
       
    67 SOURCE          idwsfserviceinstance.cpp
       
    68 SOURCE          idwsfcoreserviceconsumer.cpp
       
    69 SOURCE          idwsfservicesession.cpp
       
    70 SOURCE          idwsfauthenticationserviceclient.cpp
       
    71 SOURCE          idwsfdiscoveryserviceclient.cpp
       
    72 
       
    73 SOURCE          idwsfsecurityheader.cpp
       
    74 SOURCE          idwsfsoapmessage.cpp
       
    75                 
       
    76 SOURCEPATH      ../data
       
    77 #ifndef RD_SEN_COMPILE_SIS_PACKAGE_FILES
       
    78 START RESOURCE  101f96f8.rss
       
    79 #ifdef SYMBIAN_SECURE_ECOM 
       
    80    TARGET SenIDWSFplugin.rsc
       
    81 #endif 
       
    82 
       
    83 #else
       
    84 START RESOURCE  101F972F.RSS
       
    85 #ifdef SYMBIAN_SECURE_ECOM 
       
    86    TARGET wsIDWSFplugin.rsc
       
    87 #endif 
       
    88 
       
    89 #endif
       
    90 END
       
    91 
       
    92 USERINCLUDE         ../inc
       
    93 USERINCLUDE     ../../wscore/inc
       
    94 USERINCLUDE     ../../wsframework/inc     // internal headers
       
    95 USERINCLUDE     ../../wsutils/inc                 // SenDebug.h
       
    96 USERINCLUDE     ../../wsidentitymanager/inc
       
    97 USERINCLUDE     ../../wscredentialmanager/inc   // SenInternalCredential.h
       
    98 USERINCLUDE     ../../wslogger/inc 
       
    99 
       
   100 MW_LAYER_SYSTEMINCLUDE
       
   101 SYSTEMINCLUDE   ../../inc
       
   102 SYSTEMINCLUDE   /epoc32/include/libc
       
   103 
       
   104 // System libs
       
   105 LIBRARY ecom.lib
       
   106 LIBRARY euser.lib 
       
   107 LIBRARY estor.lib 
       
   108 LIBRARY bafl.lib    // CDesC8Array
       
   109 LIBRARY flogger.lib // RFileLogger
       
   110 
       
   111 #ifndef RD_SEN_COMPILE_SIS_PACKAGE_FILES
       
   112 // Web Service libs
       
   113 LIBRARY senlogger.lib   // for TLS based logging
       
   114 LIBRARY SenFramework.lib
       
   115 LIBRARY SenServDesc.lib
       
   116 LIBRARY SenXml.lib
       
   117 LIBRARY SenUtils.lib
       
   118 LIBRARY SenCredentialManager.lib
       
   119 #else
       
   120 LIBRARY wslogger.lib   // for TLS based logging
       
   121 LIBRARY wsFramework.lib
       
   122 LIBRARY wsServDesc.lib
       
   123 LIBRARY wsXml.lib
       
   124 LIBRARY wsUtils.lib
       
   125 LIBRARY wsCredentialManager.lib
       
   126 #endif